Fix version 1.0.0

This commit is contained in:
Patrick Jentsch
2021-02-25 11:26:11 +01:00
parent 2ced38504c
commit d620c29f27
5 changed files with 102 additions and 74 deletions

View File

@ -9,14 +9,20 @@ import os
import spacy
import textwrap
SPACY_MODELS = {'de': 'de_core_news_md',
SPACY_MODELS = {'da': 'da_core_news_md',
'de': 'de_core_news_md',
'el': 'el_core_news_md',
'en': 'en_core_web_md',
'es': 'es_core_news_md',
'fr': 'fr_core_news_md',
'it': 'it_core_news_md',
'nl': 'nl_core_news_md',
'pt': 'pt_core_news_md'}
'pt': 'pt_core_news_md',
'ru': 'ru_core_news_md',
'zh': 'zh_core_web_md'}
SPACY_MODELS_VERSION = os.environ.get('SPACY_MODELS_VERSION')
SPACY_VERSION = os.environ.get('SPACY_VERSION')