Kuberwastaken commited on
Commit
91d285a
Β·
1 Parent(s): 5a99b6a
Files changed (2) hide show
  1. README.md +18 -7
  2. requirements.txt +7 -11
README.md CHANGED
@@ -1,10 +1,21 @@
1
  ---
2
- title: TREAT-R1
3
- emoji: 🍩
4
- colorFrom: gray
5
- colorTo: gray
6
  sdk: gradio
7
- sdk_version: "5.11.0" # Replace with the correct version if different
8
- app_file: gradio_app.py
9
- pinned: true
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
- flask
2
- flask_cors
3
- torch
4
- bitsandbytes
5
- gradio
6
- transformers
7
- accelerate
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