Training in progress, step 100
Browse files- README.md +8 -8
- adapter_config.json +3 -3
- adapter_model.safetensors +1 -1
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
---
|
| 2 |
-
base_model: unsloth/Llama-3.
|
| 3 |
library_name: transformers
|
| 4 |
-
model_name:
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
-
- unsloth
|
| 8 |
-
- sft
|
| 9 |
- trl
|
|
|
|
|
|
|
| 10 |
licence: license
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# Model Card for
|
| 14 |
|
| 15 |
-
This model is a fine-tuned version of [unsloth/Llama-3.
|
| 16 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 17 |
|
| 18 |
## Quick start
|
|
@@ -21,14 +21,14 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
|
|
| 21 |
from transformers import pipeline
|
| 22 |
|
| 23 |
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 24 |
-
generator = pipeline("text-generation", model="deeponh/
|
| 25 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 26 |
print(output["generated_text"])
|
| 27 |
```
|
| 28 |
|
| 29 |
## Training procedure
|
| 30 |
|
| 31 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/cneuralnets-ai4bharat/Nepali-
|
| 32 |
|
| 33 |
|
| 34 |
This model was trained with SFT.
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: unsloth/Llama-3.1-8B
|
| 3 |
library_name: transformers
|
| 4 |
+
model_name: Nepali_8b_8b_D1
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
|
|
|
|
|
|
| 7 |
- trl
|
| 8 |
+
- sft
|
| 9 |
+
- unsloth
|
| 10 |
licence: license
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Model Card for Nepali_8b_8b_D1
|
| 14 |
|
| 15 |
+
This model is a fine-tuned version of [unsloth/Llama-3.1-8B](https://huggingface.co/unsloth/Llama-3.1-8B).
|
| 16 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 17 |
|
| 18 |
## Quick start
|
|
|
|
| 21 |
from transformers import pipeline
|
| 22 |
|
| 23 |
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 24 |
+
generator = pipeline("text-generation", model="deeponh/Nepali_8b_8b_D1", device="cuda")
|
| 25 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 26 |
print(output["generated_text"])
|
| 27 |
```
|
| 28 |
|
| 29 |
## Training procedure
|
| 30 |
|
| 31 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/cneuralnets-ai4bharat/Nepali-distillation_1/runs/lbj2zyuq)
|
| 32 |
|
| 33 |
|
| 34 |
This model was trained with SFT.
|
adapter_config.json
CHANGED
|
@@ -25,12 +25,12 @@
|
|
| 25 |
"rank_pattern": {},
|
| 26 |
"revision": null,
|
| 27 |
"target_modules": [
|
|
|
|
|
|
|
| 28 |
"o_proj",
|
|
|
|
| 29 |
"k_proj",
|
| 30 |
"down_proj",
|
| 31 |
-
"up_proj",
|
| 32 |
-
"v_proj",
|
| 33 |
-
"gate_proj",
|
| 34 |
"q_proj"
|
| 35 |
],
|
| 36 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 25 |
"rank_pattern": {},
|
| 26 |
"revision": null,
|
| 27 |
"target_modules": [
|
| 28 |
+
"v_proj",
|
| 29 |
+
"gate_proj",
|
| 30 |
"o_proj",
|
| 31 |
+
"up_proj",
|
| 32 |
"k_proj",
|
| 33 |
"down_proj",
|
|
|
|
|
|
|
|
|
|
| 34 |
"q_proj"
|
| 35 |
],
|
| 36 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 12208024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17f378cf3d0e44b791409cd86f571ab373196c5cd37212497eca62aa188a89ac
|
| 3 |
size 12208024
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5713
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:517866de4c9bd0486d4e502b4c2e320b90f83297aa36d9f313324940226b61e9
|
| 3 |
size 5713
|