| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package classification |
|
|
| import ( |
| "fmt" |
|
|
| "github.com/weaviate/weaviate/entities/errorcompounder" |
| "github.com/weaviate/weaviate/entities/models" |
| "github.com/weaviate/weaviate/entities/schema" |
| ) |
|
|
| const ( |
| TypeKNN = "knn" |
| TypeContextual = "text2vec-contextionary-contextual" |
| TypeZeroShot = "zeroshot" |
| ) |
|
|
| type Validator struct { |
| authorizedGetClass func(string) (*models.Class, error) |
| errors *errorcompounder.SafeErrorCompounder |
| subject models.Classification |
| } |
|
|
| func NewValidator(authorizedGetClass func(string) (*models.Class, error), subject models.Classification) *Validator { |
| return &Validator{ |
| authorizedGetClass: authorizedGetClass, |
| errors: &errorcompounder.SafeErrorCompounder{}, |
| subject: subject, |
| } |
| } |
|
|
| func (v *Validator) Do() error { |
| v.validate() |
|
|
| err := v.errors.First() |
| if err != nil { |
| return fmt.Errorf("invalid classification: %w", err) |
| } |
|
|
| return nil |
| } |
|
|
| func (v *Validator) validate() { |
| if v.subject.Class == "" { |
| v.errors.Add(fmt.Errorf("class must be set")) |
| return |
| } |
|
|
| class, err := v.authorizedGetClass(v.subject.Class) |
| if err != nil { |
| v.errors.Add(err) |
| return |
| } |
| if class == nil { |
| v.errors.Addf("class '%s' not found in schema", v.subject.Class) |
| return |
| } |
|
|
| v.contextualTypeFeasibility() |
| v.knnTypeFeasibility() |
| v.basedOnProperties(class) |
| v.classifyProperties(class) |
| } |
|
|
| func (v *Validator) contextualTypeFeasibility() { |
| if !v.typeText2vecContextionaryContextual() { |
| return |
| } |
|
|
| if v.subject.Filters != nil && v.subject.Filters.TrainingSetWhere != nil { |
| v.errors.Addf("type is 'text2vec-contextionary-contextual', but 'trainingSetWhere' filter is set, for 'text2vec-contextionary-contextual' there is no training data, instead limit possible target data directly through setting 'targetWhere'") |
| } |
| } |
|
|
| func (v *Validator) knnTypeFeasibility() { |
| if !v.typeKNN() { |
| return |
| } |
|
|
| if v.subject.Filters != nil && v.subject.Filters.TargetWhere != nil { |
| v.errors.Addf("type is 'knn', but 'targetWhere' filter is set, for 'knn' you cannot limit target data directly, instead limit training data through setting 'trainingSetWhere'") |
| } |
| } |
|
|
| func (v *Validator) basedOnProperties(class *models.Class) { |
| if len(v.subject.BasedOnProperties) == 0 { |
| v.errors.Addf("basedOnProperties must have at least one property") |
| return |
| } |
|
|
| if len(v.subject.BasedOnProperties) > 1 { |
| v.errors.Addf("only a single property in basedOnProperties supported at the moment, got %v", |
| v.subject.BasedOnProperties) |
| return |
| } |
|
|
| for _, prop := range v.subject.BasedOnProperties { |
| v.basedOnProperty(class, prop) |
| } |
| } |
|
|
| func (v *Validator) basedOnProperty(class *models.Class, propName string) { |
| prop, ok := v.propertyByName(class, propName) |
| if !ok { |
| v.errors.Addf("basedOnProperties: property '%s' does not exist", propName) |
| return |
| } |
|
|
| dt, err := schema.FindPropertyDataTypeWithRefsAndAuth(v.authorizedGetClass, prop.DataType, false, "") |
| if err != nil { |
| v.errors.Addf("basedOnProperties: %v", err) |
| return |
| } |
|
|
| if !dt.IsPrimitive() { |
| v.errors.Addf("basedOnProperties: property '%s' must be of type 'text'", propName) |
| return |
| } |
|
|
| if dt.AsPrimitive() != schema.DataTypeText { |
| v.errors.Addf("basedOnProperties: property '%s' must be of type 'text'", propName) |
| return |
| } |
| } |
|
|
| func (v *Validator) classifyProperties(class *models.Class) { |
| if len(v.subject.ClassifyProperties) == 0 { |
| v.errors.Addf("classifyProperties must have at least one property") |
| return |
| } |
|
|
| for _, prop := range v.subject.ClassifyProperties { |
| v.classifyProperty(class, prop) |
| } |
| } |
|
|
| func (v *Validator) classifyProperty(class *models.Class, propName string) { |
| prop, ok := v.propertyByName(class, propName) |
| if !ok { |
| v.errors.Addf("classifyProperties: property '%s' does not exist", propName) |
| return |
| } |
|
|
| dt, err := schema.FindPropertyDataTypeWithRefsAndAuth(v.authorizedGetClass, prop.DataType, false, "") |
| if err != nil { |
| v.errors.Addf("classifyProperties: %w", err) |
| return |
| } |
|
|
| if !dt.IsReference() { |
| v.errors.Addf("classifyProperties: property '%s' must be of reference type (cref)", propName) |
| return |
| } |
|
|
| if v.typeText2vecContextionaryContextual() { |
| if len(dt.Classes()) > 1 { |
| v.errors.Addf("classifyProperties: property '%s'"+ |
| " has more than one target class, classification of type 'text2vec-contextionary-contextual' requires exactly one target class", propName) |
| return |
| } |
| } |
| } |
|
|
| func (v *Validator) propertyByName(class *models.Class, propName string) (*models.Property, bool) { |
| for _, prop := range class.Properties { |
| if prop.Name == propName { |
| return prop, true |
| } |
| } |
|
|
| return nil, false |
| } |
|
|
| func (v *Validator) typeText2vecContextionaryContextual() bool { |
| if v.subject.Type == "" { |
| return false |
| } |
|
|
| return v.subject.Type == TypeContextual |
| } |
|
|
| func (v *Validator) typeKNN() bool { |
| if v.subject.Type == "" { |
| return true |
| } |
|
|
| return v.subject.Type == TypeKNN |
| } |
|
|