Spaces:
Running
Running
updates
Browse files
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
nltk==3.8.1
|
2 |
-
spacy==3.
|
3 |
torch==2.1.0
|
4 |
scipy==1.10.0
|
5 |
gensim==4.3.2
|
@@ -7,12 +7,12 @@ pandas==2.2.0
|
|
7 |
catboost==1.2.2
|
8 |
supabase==2.4.0
|
9 |
requests==2.31.0
|
10 |
-
|
11 |
-
trycourier==
|
12 |
streamlit==1.32.2
|
13 |
argon2-cffi==21.1.0
|
14 |
cryptography==42.0.3
|
15 |
transformers==4.38.2
|
16 |
streamlit-extras==0.4.0
|
17 |
bert-extractive-summarizer==0.10.1
|
18 |
-
ru_core_news_lg @ https://github.com/explosion/spacy-models/releases/download/ru_core_news_lg-3.
|
|
|
1 |
nltk==3.8.1
|
2 |
+
spacy==3.8.2
|
3 |
torch==2.1.0
|
4 |
scipy==1.10.0
|
5 |
gensim==4.3.2
|
|
|
7 |
catboost==1.2.2
|
8 |
supabase==2.4.0
|
9 |
requests==2.31.0
|
10 |
+
pymorphy3==2.0.2
|
11 |
+
trycourier==6.2.0
|
12 |
streamlit==1.32.2
|
13 |
argon2-cffi==21.1.0
|
14 |
cryptography==42.0.3
|
15 |
transformers==4.38.2
|
16 |
streamlit-extras==0.4.0
|
17 |
bert-extractive-summarizer==0.10.1
|
18 |
+
ru_core_news_lg @ https://github.com/explosion/spacy-models/releases/download/ru_core_news_lg-3.8.0/ru_core_news_lg-3.8.0-py3-none-any.whl
|
utilities_database/user_database_utils.py
CHANGED
@@ -2,7 +2,7 @@ import pandas as pd
|
|
2 |
import streamlit as st
|
3 |
from json import loads
|
4 |
from re import search, compile
|
5 |
-
from
|
6 |
from secrets import token_urlsafe
|
7 |
from argon2 import PasswordHasher
|
8 |
from argon2.exceptions import VerifyMismatchError
|
|
|
2 |
import streamlit as st
|
3 |
from json import loads
|
4 |
from re import search, compile
|
5 |
+
from courier.client import Courier
|
6 |
from secrets import token_urlsafe
|
7 |
from argon2 import PasswordHasher
|
8 |
from argon2.exceptions import VerifyMismatchError
|
utilities_language_general/rus_constants.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import json
|
2 |
import spacy
|
3 |
import gensim
|
4 |
-
import
|
5 |
import streamlit as st
|
6 |
from pickle import load
|
7 |
from transformers import pipeline
|
@@ -12,7 +12,7 @@ device = device('cuda' if cuda.is_available else 'cpu')
|
|
12 |
|
13 |
@st.cache_resource
|
14 |
def load_morph():
|
15 |
-
_morph =
|
16 |
return _morph
|
17 |
|
18 |
|
|
|
1 |
import json
|
2 |
import spacy
|
3 |
import gensim
|
4 |
+
import pymorphy3
|
5 |
import streamlit as st
|
6 |
from pickle import load
|
7 |
from transformers import pipeline
|
|
|
12 |
|
13 |
@st.cache_resource
|
14 |
def load_morph():
|
15 |
+
_morph = pymorphy3.MorphAnalyzer(lang='ru')
|
16 |
return _morph
|
17 |
|
18 |
|