Skip to content
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

Fixed error for deployment #55

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed error for deployment
  • Loading branch information
srbhr committed Jul 17, 2023
commit f1164c3ff993ef2e16cdb000c0622fa7cefaacb5
1 change: 0 additions & 1 deletion scripts/TextCleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from nltk.tokenize import word_tokenize
from nltk.stem import WordNetLemmatizer
import string
nltk.download('punkt')


class TextCleaner:
Expand Down
1 change: 1 addition & 0 deletions streamlit_second.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from streamlit_extras import add_vertical_space as avs
from annotated_text import annotated_text, parameters
import nltk
nltk.download('punkt')

parameters.SHOW_LABEL_SEPARATOR = False
parameters.BORDER_RADIUS = 3
Expand Down