brightly-ai / mapping_template.py
beweinreich's picture
some updates to algo
1c28270
raw
history blame
No virus
500 Bytes
def empty_template(input_word):
return {
'input_word': None,
'cleaned_word': None,
'similarity_score': None,
'confidence_score': None,
'similar_words': None,
'is_food': False,
'food_nonfood_score': None,
'matching_word': None,
'dictionary_word': None,
'sr_legacy_food_category': None,
'wweia_category': None,
'dry_matter_content': None,
'water_content': None,
'leakage': None,
}