Skip to content

Commit

Permalink
Fix incorrect JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcombessie authored Jun 14, 2021
1 parent 5b76946 commit 18b1aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom-recipes/nlp-preparation-cleaning/recipe.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,15 +383,15 @@
"description": "Simplify words to their lemma form e.g., going → go, mice → mouse",
"type": "BOOLEAN",
"defaultValue": true,
"visibilityCondition": "model.language != 'language_column' && ['es','nb','fr','de','ru','pl','ca','cs','da','hr','hu','id','it','lb','lt','pt','ro','sr','tl','tr','ur','en','mk','nl','sv','bn','el','fa'].includes(model.language)",
"visibilityCondition": "model.language != 'language_column' && ['es','nb','fr','de','ru','pl','ca','cs','da','hr','hu','id','it','lb','lt','pt','ro','sr','tl','tr','ur','en','mk','nl','sv','bn','el','fa'].includes(model.language)"
},
{
"name": "lemmatization_multilingual",
"label": "Lemmatize",
"description": "Simplify words to their lemma form e.g., going → go, mice → mouse. Available for 28 out of 59 languages.",
"type": "BOOLEAN",
"defaultValue": true,
"visibilityCondition": "model.language == 'language_column'",
"visibilityCondition": "model.language == 'language_column'"
},
{
"name": "lowercase",
Expand Down

0 comments on commit 18b1aa8

Please sign in to comment.