Spaces:
Sleeping
Sleeping
Commit
Β·
91d285a
1
Parent(s):
5a99b6a
formatter
Browse files- README.md +18 -7
- requirements.txt +7 -11
README.md
CHANGED
@@ -1,10 +1,21 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
-
sdk_version: "5.11.0"
|
8 |
-
app_file:
|
9 |
-
pinned:
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Syllabus Formatter
|
3 |
+
emoji: π
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: blue
|
6 |
sdk: gradio
|
7 |
+
sdk_version: "5.11.0"
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
---
|
11 |
+
|
12 |
+
# Syllabus Formatter
|
13 |
+
|
14 |
+
This Hugging Face Space helps you format your syllabus content using Microsoft's Phi-3 model. It makes your syllabus:
|
15 |
+
|
16 |
+
- More readable and organized
|
17 |
+
- Better structured with clear sections
|
18 |
+
- Easy to scan and understand
|
19 |
+
- Professional looking
|
20 |
+
|
21 |
+
Simply upload your JSON syllabus file and get a beautifully formatted version back!
|
requirements.txt
CHANGED
@@ -1,11 +1,7 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
safetensors
|
9 |
-
huggingface-hub
|
10 |
-
beautifulsoup4
|
11 |
-
fastapi
|
|
|
1 |
+
gradio>=5.11.0
|
2 |
+
torch>=2.0.0
|
3 |
+
transformers>=4.38.0
|
4 |
+
accelerate>=0.27.0
|
5 |
+
bitsandbytes>=0.45.0
|
6 |
+
safetensors>=0.4.2
|
7 |
+
huggingface-hub>=0.20.0
|
|
|
|
|
|
|
|