Spaces:
Paused
Paused
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -16,6 +16,6 @@ Fine-tuned Qwen2.5-Coder-1.5B on Python code instructions.
|
|
| 16 |
**Model:** Qwen/Qwen2.5-Coder-1.5B-Instruct | **Fine-tune:** LoRA (r=8)
|
| 17 |
|
| 18 |
## Links
|
| 19 |
-
- **Trained model:** [arinbalyan/
|
| 20 |
- **Training notebook:** [Kaggle](https://www.kaggle.com/code/arinbalyan/fine-tune-starcoder2-1b-for-python-code)
|
| 21 |
- **HF Profile:** [arinbalyan](https://huggingface.co/arinbalyan)
|
|
|
|
| 16 |
**Model:** Qwen/Qwen2.5-Coder-1.5B-Instruct | **Fine-tune:** LoRA (r=8)
|
| 17 |
|
| 18 |
## Links
|
| 19 |
+
- **Trained model:** [arinbalyan/qwen-coder-python](https://huggingface.co/arinbalyan/qwen-coder-python)
|
| 20 |
- **Training notebook:** [Kaggle](https://www.kaggle.com/code/arinbalyan/fine-tune-starcoder2-1b-for-python-code)
|
| 21 |
- **HF Profile:** [arinbalyan](https://huggingface.co/arinbalyan)
|
app.py
CHANGED
|
@@ -2,7 +2,7 @@ import gradio as gr
|
|
| 2 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 3 |
import torch
|
| 4 |
|
| 5 |
-
MODEL_ID = "arinbalyan/
|
| 6 |
|
| 7 |
theme = (
|
| 8 |
gr.themes.Soft(primary_hue="indigo", neutral_hue="slate")
|
|
|
|
| 2 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 3 |
import torch
|
| 4 |
|
| 5 |
+
MODEL_ID = "arinbalyan/qwen-coder-python"
|
| 6 |
|
| 7 |
theme = (
|
| 8 |
gr.themes.Soft(primary_hue="indigo", neutral_hue="slate")
|