-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V3/feature/fix text max length and version update 3 0 8 #50
Merged
malakhovks
merged 2 commits into
v3/develop
from
v3/feature/fix-text-max-length-and-version-update-3-0-8
Apr 30, 2022
Merged
V3/feature/fix text max length and version update 3 0 8 #50
malakhovks
merged 2 commits into
v3/develop
from
v3/feature/fix-text-max-length-and-version-update-3-0-8
Apr 30, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update spaCy up to `3.0.8`;
Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000`
malakhovks
added a commit
that referenced
this pull request
May 1, 2022
## v3.3.2, 2021-05-01 ### 🔴 Виправлення помилок #### ENG🇬🇧 - виправлено помилку `nlp.max_length limit exceeded`: Text of length 1195652 exceeds maximum of 1000000. The parser and NER models require roughly 1GB of temporary memory per 100,000 characters in the input. This means long texts may cause memory allocation errors. If you're not using the parser or NER, it's probably safe to increase the nlp.max_length limit. The limit is in number of characters, so you can check whether your inputs are too long by checking len(text). Встановлено ліміт `NLP_EN.max_length = 5000000`; - виправлено помилку `ImportError: cannot import name 'escape' from 'jinja2'`: This happens because Jinja has removed those functions in a recent version — 3.1.0 — [released on March 24th, 2022](https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-0). > ``Markup`` and ``escape`` should be imported from MarkupSafe. You have two options form here: 1. either this error comes from one of your dependency. The first thing you should consider is to upgrade the said dependence(s). If this is not possible, what you can do, from here is to downgrade your Jinja version to a version that would still include `escape`, for example, adding it explicitly in your _requirements.txt_: ``` jinja2<3.1.0 ``` 2. or, your error is from code you wrote, so you can fix it by importing it from MarkupSafe, as suggested in the Jinja release notes. So, you should use ```python from markupsafe import escape ``` instead of ```python from jinja2 import escape ``` При використанні `Flask==1.1.2` треба зафікмувати наступні залежності: `jinja2<3.1.0`; `itsdangerous==2.0.1`, `Werkzeug<2.0.0`; - дрібні виправлення коду. ###⚠️ Зауваження #### ENG🇬🇧 - оновлено бібліотеку spaCy до версії `3.0.6`; - встановлено `keepalive_timeout 1050` для nginx; ----- * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2
malakhovks
added a commit
that referenced
this pull request
Oct 12, 2022
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua
malakhovks
added a commit
that referenced
this pull request
Mar 10, 2023
* V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE
malakhovks
added a commit
that referenced
this pull request
Mar 10, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability
malakhovks
added a commit
that referenced
this pull request
Mar 10, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability * add important note
malakhovks
added a commit
that referenced
this pull request
Oct 26, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability * add important note * Bug fixes of deployment process ### 🔴 Bug fixes - updated up to python:3.7.17-slim-bookworm base docker image; - fixes wine installation/setup on Debian 12 Bookworm. ### 👥 Contributors @malakhovks * Update project description ## v3.3.4: Update project description ### 📚 Docs - updated project description. * fix python dev fix python dev * fix version and info size fix version and info size
malakhovks
added a commit
that referenced
this pull request
Oct 26, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability * add important note * Bug fixes of deployment process ### 🔴 Bug fixes - updated up to python:3.7.17-slim-bookworm base docker image; - fixes wine installation/setup on Debian 12 Bookworm. ### 👥 Contributors @malakhovks * Update project description ## v3.3.4: Update project description ### 📚 Docs - updated project description. * fix python dev fix python dev * fix version and info size fix version and info size
malakhovks
added a commit
that referenced
this pull request
Oct 26, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability * add important note * Bug fixes of deployment process ### 🔴 Bug fixes - updated up to python:3.7.17-slim-bookworm base docker image; - fixes wine installation/setup on Debian 12 Bookworm. ### 👥 Contributors @malakhovks * Update project description ## v3.3.4: Update project description ### 📚 Docs - updated project description. * fix python dev fix python dev * fix version and info size fix version and info size * fix readme fix readme * fix readme fix readme
malakhovks
added a commit
that referenced
this pull request
Oct 26, 2023
* fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Add license 1 (#53) * V3/develop (#52) * fix fetch of parce.xml * update to v3.3.1 - update to v3.3.1 * update spaCy up to `3.0.6` update spaCy up to `3.0.6` * V3/feature/fix text max length and version update 3 0 8 (#50) * update spaCy up to `3.0.8`; update spaCy up to `3.0.8`; * Fix maximum Text of length of nlp Fix Text of length nlp exceeds maximum of 1000000. Set nlp up to `NLP_EN.max_length = 2000000` * cleanup * update and fix Flask fix `ImportError: cannot import name 'escape' from 'jinja2`: Jinja is a dependency of Flask and Flask V1.X.X uses the escape module from Jinja, however recently support for the escape module was dropped in newer versions of Jinja. To fix this issue, simply update to the newer version of Flask V2.X.X in your requirements.txt where Flask no longer uses the escape module from Jinja. Flask==2.1.2 * set spacy to 3.0.6 * revert spacy to 3.0.8 revert spacy to 3.0.8 * update spaCy up to `3.1.6` update spaCy up to `3.1.6` * Set Flask to 2.0.3 Set Flask to 2.0.3 * Set Flask==1.1.2 Set Flask==1.1.2 * Set jinja2<3.1.0 Set jinja2<3.1.0 * Set itsdangerous==2.0.1 Set itsdangerous==2.0.1 * Cleanup Cleanup * Set Werkzeug < 2.0.0 Set Werkzeug < 2.0.0 * Set spacy to 3.0.8 Set spacy to 3.0.8 * Set spacy to 3.0.6 Set spacy to 3.0.6 * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Set NLP_EN.max_length = 5000000 Set NLP_EN.max_length = 5000000 * Set keepalive_timeout 1550 Set keepalive_timeout 1550 * add big test file for en add big test file for en * Set keepalive_timeout 1050 Set keepalive_timeout 1050 * Update to v3.3.2 Update to v3.3.2 * Fix UkrVectōrēs app website address Fix UkrVectōrēs app website address to https://konspekt.ai-service.pp.ua * Create LICENSE * add important note about server avaliability * add important note * Bug fixes of deployment process ### 🔴 Bug fixes - updated up to python:3.7.17-slim-bookworm base docker image; - fixes wine installation/setup on Debian 12 Bookworm. ### 👥 Contributors @malakhovks * Update project description ## v3.3.4: Update project description ### 📚 Docs - updated project description. * fix python dev fix python dev * fix version and info size fix version and info size * fix readme fix readme * fix readme fix readme * Fix Readme Fix Readme
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.