weaviate / contextionary

Weaviate's own language vectorizer, which allows for semantic context-based searches in Weaviate
https://weaviate.io/developers/weaviate/modules/retriever-vectorizer-modules/text2vec-contextionary
BSD 3-Clause "New" or "Revised" License
14 stars 2 forks source link

Bug: Vectorizer sometimes skipping words #19

Closed etiennedi closed 5 years ago

etiennedi commented 5 years ago

Input

{
  "action": "vectorize_corpus",
  "input": "wellbore field path wellbore purpose kind string description",
}

Expected Behavior

Actual Behavior

{
  "interpreted_as": "wellbore path purpose string",
}
etiennedi commented 5 years ago

Fixed in ...v0.4.2:

{
  "action": "vectorize_corpus",
  "input": "wellbore field path wellbore type kind string description",
  "interpreted_as": "wellbore field path wellbore type kind string description",
  "level": "debug",
  "msg": "",
  "time": "2019-12-05T10:26:28Z"
}