Spaces:
Running
Running
Joshua Lochner
commited on
Commit
•
5f40236
1
Parent(s):
bd2850c
Add requirements file and make command
Browse files- Makefile +5 -0
- requirements.txt +9 -0
Makefile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
PIP := pip3
|
3 |
+
|
4 |
+
install:
|
5 |
+
$(PIP) install -r requirements.txt
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers
|
2 |
+
datasets
|
3 |
+
youtube_transcript_api
|
4 |
+
torch
|
5 |
+
pandas
|
6 |
+
numpy
|
7 |
+
rouge-score
|
8 |
+
sentencepiece
|
9 |
+
|