Update requirements.txt
Browse files- requirements.txt +39 -4
requirements.txt
CHANGED
|
@@ -1,18 +1,53 @@
|
|
|
|
|
| 1 |
transformers
|
|
|
|
|
|
|
| 2 |
streamlit
|
|
|
|
|
|
|
| 3 |
torch
|
|
|
|
|
|
|
| 4 |
diffusers
|
|
|
|
|
|
|
| 5 |
accelerate
|
|
|
|
|
|
|
| 6 |
huggingface_hub
|
|
|
|
|
|
|
| 7 |
Pillow
|
|
|
|
|
|
|
| 8 |
pydub
|
|
|
|
|
|
|
| 9 |
bs4
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
opencv-python
|
|
|
|
|
|
|
| 14 |
ipython
|
|
|
|
|
|
|
| 15 |
langchain
|
|
|
|
|
|
|
| 16 |
emoji
|
|
|
|
|
|
|
| 17 |
altair
|
| 18 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# Hugging Face Transformers library for natural language processing
|
| 2 |
transformers
|
| 3 |
+
|
| 4 |
+
# Streamlit library for creating web applications with Python
|
| 5 |
streamlit
|
| 6 |
+
|
| 7 |
+
# PyTorch deep learning framework
|
| 8 |
torch
|
| 9 |
+
|
| 10 |
+
# Diffusers library (Note: Assuming this is a specific library you're using)
|
| 11 |
diffusers
|
| 12 |
+
|
| 13 |
+
# accelerate library (Note: Assuming this is a specific library you're using)
|
| 14 |
accelerate
|
| 15 |
+
|
| 16 |
+
# Hugging Face Hub for sharing and versioning models
|
| 17 |
huggingface_hub
|
| 18 |
+
|
| 19 |
+
# Pillow library for image processing tasks
|
| 20 |
Pillow
|
| 21 |
+
|
| 22 |
+
# pydub library for audio processing tasks
|
| 23 |
pydub
|
| 24 |
+
|
| 25 |
+
# BeautifulSoup4 for web scraping
|
| 26 |
bs4
|
| 27 |
+
|
| 28 |
+
# Datasets library for working with datasets in PyTorch
|
| 29 |
+
datasets
|
| 30 |
+
|
| 31 |
+
# soundfile library for reading and writing sound files
|
| 32 |
+
soundfile
|
| 33 |
+
|
| 34 |
+
# SentencePiece library for text tokenization
|
| 35 |
+
sentencepiece
|
| 36 |
+
|
| 37 |
+
# OpenCV-Python library for computer vision tasks
|
| 38 |
opencv-python
|
| 39 |
+
|
| 40 |
+
# IPython library for interactive computing
|
| 41 |
ipython
|
| 42 |
+
|
| 43 |
+
# LangChain library (Note: Assuming this is a specific library you're using)
|
| 44 |
langchain
|
| 45 |
+
|
| 46 |
+
# Emoji library for working with emojis in Python
|
| 47 |
emoji
|
| 48 |
+
|
| 49 |
+
# Altair library for declarative data visualization in Python
|
| 50 |
altair
|
| 51 |
+
|
| 52 |
+
# pandas library for data manipulation and analysis
|
| 53 |
+
pandas
|