Spaces:
Sleeping
Sleeping
Ari
commited on
Update requirements.txt
Browse files- requirements.txt +12 -6
requirements.txt
CHANGED
@@ -1,7 +1,13 @@
|
|
1 |
-
gradio==4.29.0 #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
python-docx==0.8.11 # For handling .docx files
|
3 |
-
gTTS==2.2.3 # For converting text to speech
|
4 |
-
fpdf==1.7.2 # For generating PDFs in Python
|
5 |
-
transformers==4.44.3 # Hugging Face Transformers library for NLP models
|
6 |
-
pdfminer.six==20221105 # For PDF text extraction if you still need it
|
7 |
-
nltk==3.8.1 # For tokenization and other NLP features
|
|
|
1 |
+
gradio==4.29.0 # For the Gradio interface
|
2 |
+
gTTS==2.2.3 # For text-to-speech
|
3 |
+
fpdf==1.7.2 # For PDF generation
|
4 |
+
pdfminer.six==20221105 # For extracting text from PDFs
|
5 |
+
pdf2image==1.16.3 # For converting PDF pages to images
|
6 |
+
bert-extractive-summarizer==0.10.1 # For extractive text summarization
|
7 |
+
sacremoses==0.0.53 # For tokenizer in the transformers library
|
8 |
+
nltk==3.8.1 # For natural language processing (tokenization, etc.)
|
9 |
+
yake==0.4.8 # For keyword extraction
|
10 |
+
pytesseract==0.3.8 # For OCR, but note that tesseract binary is required!
|
11 |
+
transformers==4.44.3 # For Hugging Face models
|
12 |
+
torch==2.0.0 # PyTorch for deep learning models
|
13 |
python-docx==0.8.11 # For handling .docx files
|
|
|
|
|
|
|
|
|
|