Argilla · Schema
VectorSettings
data annotationLLMNLPRLHFmachine learningdatasetsopen sourcehuman feedbackfine-tuningHugging Face
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| title | string | |
| dimensions | integer | |
| dataset_id | string | |
| inserted_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://argilla.io/schemas/vectorsettings.json",
"title": "VectorSettings",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"title": "Id"
},
"name": {
"type": "string",
"title": "Name"
},
"title": {
"type": "string",
"title": "Title"
},
"dimensions": {
"type": "integer",
"title": "Dimensions"
},
"dataset_id": {
"type": "string",
"format": "uuid",
"title": "Dataset Id"
},
"inserted_at": {
"type": "string",
"format": "date-time",
"title": "Inserted At"
},
"updated_at": {
"type": "string",
"format": "date-time",
"title": "Updated At"
}
},
"type": "object",
"required": [
"id",
"name",
"title",
"dimensions",
"dataset_id",
"inserted_at",
"updated_at"
]
}