Commit
·
f6d5f5d
1
Parent(s):
e329e0d
README and requirements.txt
Browse files- README.md +12 -1
- requirements.txt +3 -0
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Speculative Decoding
|
| 2 |
|
| 3 |
-
A project implementing speculative decoding techniques.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Speculative Decoding Demo
|
| 3 |
+
emoji: 🚀
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "4.44.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
# Speculative Decoding
|
| 13 |
|
| 14 |
+
A project implementing speculative decoding techniques.
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
transformers>=4.57.3,<5.0.0
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
gradio>=6.1.0,<7.0.0
|