Text Generation
Transformers
TensorBoard
Safetensors
llama
trl
sft
Generated from Trainer
conversational
text-generation-inference
Instructions to use not-lain/Finetuned_TinyLlama with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use not-lain/Finetuned_TinyLlama with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="not-lain/Finetuned_TinyLlama") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("not-lain/Finetuned_TinyLlama") model = AutoModelForCausalLM.from_pretrained("not-lain/Finetuned_TinyLlama") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use not-lain/Finetuned_TinyLlama with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "not-lain/Finetuned_TinyLlama" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "not-lain/Finetuned_TinyLlama", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/not-lain/Finetuned_TinyLlama
- SGLang
How to use not-lain/Finetuned_TinyLlama with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "not-lain/Finetuned_TinyLlama" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "not-lain/Finetuned_TinyLlama", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "not-lain/Finetuned_TinyLlama" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "not-lain/Finetuned_TinyLlama", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use not-lain/Finetuned_TinyLlama with Docker Model Runner:
docker model run hf.co/not-lain/Finetuned_TinyLlama
Update README.md
#2
by nroggendorff - opened
README.md
CHANGED
|
@@ -9,27 +9,18 @@ model-index:
|
|
| 9 |
- name: Finetuned_TineyLlama
|
| 10 |
results: []
|
| 11 |
---
|
| 12 |
-
|
| 13 |
-
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 14 |
-
should probably proofread and complete it, then remove this comment. -->
|
| 15 |
-
|
| 16 |
-
# Finetuned_TineyLlama
|
| 17 |
|
| 18 |
This model is a fine-tuned version of [TinyLlama/TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) on an unknown dataset.
|
| 19 |
|
| 20 |
## Model description
|
| 21 |
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
## Intended uses & limitations
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
More information needed
|
| 31 |
-
|
| 32 |
-
## Training procedure
|
| 33 |
|
| 34 |
### Training hyperparameters
|
| 35 |
|
|
@@ -44,11 +35,11 @@ The following hyperparameters were used during training:
|
|
| 44 |
|
| 45 |
### Training results
|
| 46 |
|
| 47 |
-
|
| 48 |
|
| 49 |
### Framework versions
|
| 50 |
|
| 51 |
- Transformers 4.41.1
|
| 52 |
- Pytorch 2.3.0+cu121
|
| 53 |
- Datasets 2.19.1
|
| 54 |
-
- Tokenizers 0.19.1
|
|
|
|
| 9 |
- name: Finetuned_TineyLlama
|
| 10 |
results: []
|
| 11 |
---
|
| 12 |
+
# Finetuned_TinyLlama
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
This model is a fine-tuned version of [TinyLlama/TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) on an unknown dataset.
|
| 15 |
|
| 16 |
## Model description
|
| 17 |
|
| 18 |
+
This model was made with [this tutorial by Noa](https://huggingface.co/blog/nroggendorff/finetune-tinyllama), you can find a more complete model and demo at [nroggendorff/mayo](https://huggingface.co/spaces/nroggendorff/mayo)
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
## Limitations
|
| 21 |
|
| 22 |
+
- The model is easily gaslit
|
| 23 |
+
- It is uncensored, and there are no safety features.
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
### Training hyperparameters
|
| 26 |
|
|
|
|
| 35 |
|
| 36 |
### Training results
|
| 37 |
|
| 38 |
+
- training_loss=2.0859998975481306
|
| 39 |
|
| 40 |
### Framework versions
|
| 41 |
|
| 42 |
- Transformers 4.41.1
|
| 43 |
- Pytorch 2.3.0+cu121
|
| 44 |
- Datasets 2.19.1
|
| 45 |
+
- Tokenizers 0.19.1
|