Spaces:
Runtime error
Runtime error
Added huggingface spaces stuff
Browse files
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# 🦙 Simple LLaMA Finetuner
|
| 2 |
|
| 3 |
[](https://colab.research.google.com/github/lxe/simple-llama-finetuner/blob/master/Simple_LLaMA_FineTuner.ipynb)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Simple LLaMA Finetuner
|
| 3 |
+
emoji: 🦙
|
| 4 |
+
colorFrom: yellow
|
| 5 |
+
colorTo: orange
|
| 6 |
+
sdk: gradio
|
| 7 |
+
app_file: main.py
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
# 🦙 Simple LLaMA Finetuner
|
| 12 |
|
| 13 |
[](https://colab.research.google.com/github/lxe/simple-llama-finetuner/blob/master/Simple_LLaMA_FineTuner.ipynb)
|
main.py
CHANGED
|
@@ -433,6 +433,7 @@ def inference_tab():
|
|
| 433 |
with gr.Blocks(
|
| 434 |
css="#refresh-button { max-width: 32px }",
|
| 435 |
title="Simple LLaMA Finetuner") as demo:
|
|
|
|
| 436 |
training_tab()
|
| 437 |
inference_tab()
|
| 438 |
|
|
|
|
| 433 |
with gr.Blocks(
|
| 434 |
css="#refresh-button { max-width: 32px }",
|
| 435 |
title="Simple LLaMA Finetuner") as demo:
|
| 436 |
+
gr.HTML("<div style=\"display: flex; align-items: center; justify-content: center;\"><h3 style=\"margin: 0\"><a target=\"_blank\" href=https://github.com/lxe/simple-llama-finetuner>Simple LLaMA Finetuner</a></h3></div>")
|
| 437 |
training_tab()
|
| 438 |
inference_tab()
|
| 439 |
|