Spaces:
Sleeping
Sleeping
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,12 +1,26 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
|
|
|
|
|
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
|
|
10 |
---
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Simple LLM Text Generator
|
3 |
+
emoji: 📝
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: blue
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.20.0
|
8 |
+
# Adjust sdk_version if your local gradio version is very different,
|
9 |
+
# or let Spaces try to infer it. Usually, it's best to match your
|
10 |
+
# gradio version in requirements.txt as closely as possible.
|
11 |
+
# For gradio 5.x, this might need to be higher e.g. 5.0.0
|
12 |
app_file: app.py
|
13 |
pinned: false
|
14 |
+
license: mit
|
15 |
---
|
16 |
|
17 |
+
# Simple LLM Text Generator Demo
|
18 |
+
|
19 |
+
This is a very basic Gradio application that uses the `distilgpt2` model to generate text continuations from a given prompt.
|
20 |
+
|
21 |
+
**How to use:**
|
22 |
+
1. Enter your starting text in the "Enter your prompt" box.
|
23 |
+
2. Click "Submit".
|
24 |
+
3. See the LLM's attempt to continue your text!
|
25 |
+
|
26 |
+
Built with Gradio and Hugging Face Transformers.
|