Instructions to use sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0") model = AutoModelForMultimodalLM.from_pretrained("sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0
- SGLang
How to use sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0 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 "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0 with Docker Model Runner:
docker model run hf.co/sreeramajay/TinyLlama-1.1B-step-1431k-orca-dpo-v1.0
Commit ·
62ff58f
1
Parent(s): b773950
model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- Intel/orca_dpo_pairs
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- accuracy
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
Applied DPO to TinyLlama-1.1B-intermediate-step-1431k-3T using orca_dpo_pairs dataset
|
| 13 |
+
|
| 14 |
+
This is only experimental Model, Created by following instruction from the nice Blog [Fine-tune a Mistral-7b model with Direct Preference Optimization
|
| 15 |
+
](https://towardsdatascience.com/fine-tune-a-mistral-7b-model-with-direct-preference-optimization-708042745aac)
|
| 16 |
+
|
| 17 |
+
You can run this model using the following code:
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
# Format prompt
|
| 21 |
+
message = [
|
| 22 |
+
{"role": "system", "content": "You are a helpful assistant chatbot."},
|
| 23 |
+
{"role": "user", "content": "What is a Large Language Model?"}
|
| 24 |
+
]
|
| 25 |
+
tokenizer = AutoTokenizer.from_pretrained(new_model)
|
| 26 |
+
prompt = tokenizer.apply_chat_template(message, add_generation_prompt=True, tokenize=False)
|
| 27 |
+
|
| 28 |
+
# Create pipeline
|
| 29 |
+
pipeline = transformers.pipeline(
|
| 30 |
+
"text-generation",
|
| 31 |
+
model=new_model,
|
| 32 |
+
tokenizer=tokenizer
|
| 33 |
+
)
|
| 34 |
+
|
| 35 |
+
# Generate text
|
| 36 |
+
sequences = pipeline(
|
| 37 |
+
prompt,
|
| 38 |
+
do_sample=True,
|
| 39 |
+
temperature=0.7,
|
| 40 |
+
top_p=0.9,
|
| 41 |
+
num_return_sequences=1,
|
| 42 |
+
max_length=200,
|
| 43 |
+
)
|
| 44 |
+
print(sequences[0]['generated_text'])
|
| 45 |
+
|
| 46 |
+
# <s>[INST] <<SYS>>
|
| 47 |
+
# You are a helpful assistant chatbot.
|
| 48 |
+
# <</SYS>>
|
| 49 |
+
#
|
| 50 |
+
# What is a Large Language Model? [/INST]
|
| 51 |
+
# <LANG-LMT>
|
| 52 |
+
# Largely, it is a machine learning model that is trained on a large dataset and is capable of generating large amounts of text with a certain degree of accuracy.
|
| 53 |
+
#
|
| 54 |
+
# A: If you are talking about a computer program that can generate texts, you can look at the topic of Natural Language Generation (NLG) for a more precise definition.
|
| 55 |
+
# The main difference between NLG and machine learning is that NLG is a subfield of AI and is used to generate text from an input, while machine learning is used to analyze data, make predictions and classify it.
|
| 56 |
+
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
Results on GPT4ALL benchmark:
|
| 60 |
+
|
| 61 |
+
| Tasks | Metric |Value | |Stderr|
|
| 62 |
+
|-------------|--------|-----:|---|-----:|
|
| 63 |
+
|arc_challenge|acc |0.2807|± |0.0131|
|
| 64 |
+
| |acc_norm|0.3106|± |0.0135|
|
| 65 |
+
|arc_easy |acc |0.6107|± |0.0100|
|
| 66 |
+
| |acc_norm|0.5547|± |0.0102|
|
| 67 |
+
|boolq |acc |0.5865|± |0.0086|
|
| 68 |
+
|hellaswag |acc |0.4478|± |0.0050|
|
| 69 |
+
| |acc_norm|0.5924|± |0.0049|
|
| 70 |
+
|openbookqa |acc |0.2160|± |0.0184|
|
| 71 |
+
| |acc_norm|0.3600|± |0.0215|
|
| 72 |
+
|piqa |acc |0.7280|± |0.0104|
|
| 73 |
+
| |acc_norm|0.7301|± |0.0104|
|
| 74 |
+
|winogrande |acc |0.5856|± |0.0138|
|