Text Generation
Transformers
PyTorch
English
llama
unsloth
trl
conversational
text-generation-inference
Instructions to use lwef/llm-bench-upload-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lwef/llm-bench-upload-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="lwef/llm-bench-upload-1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("lwef/llm-bench-upload-1") model = AutoModelForCausalLM.from_pretrained("lwef/llm-bench-upload-1") 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 lwef/llm-bench-upload-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "lwef/llm-bench-upload-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "lwef/llm-bench-upload-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/lwef/llm-bench-upload-1
- SGLang
How to use lwef/llm-bench-upload-1 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 "lwef/llm-bench-upload-1" \ --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": "lwef/llm-bench-upload-1", "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 "lwef/llm-bench-upload-1" \ --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": "lwef/llm-bench-upload-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use lwef/llm-bench-upload-1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for lwef/llm-bench-upload-1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for lwef/llm-bench-upload-1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lwef/llm-bench-upload-1 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="lwef/llm-bench-upload-1", max_seq_length=2048, ) - Docker Model Runner
How to use lwef/llm-bench-upload-1 with Docker Model Runner:
docker model run hf.co/lwef/llm-bench-upload-1
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,11 +10,53 @@ tags:
|
|
| 10 |
- trl
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# korean dialogue summary fine-tuned model
|
| 14 |
- **Developed by:** lwef
|
| 15 |
- **License:** apache-2.0
|
| 16 |
- **Finetuned from model :** beomi/Llama-3-Open-Ko-8B
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 19 |
|
| 20 |
-
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
| 10 |
- trl
|
| 11 |
---
|
| 12 |
|
|
|
|
| 13 |
- **Developed by:** lwef
|
| 14 |
- **License:** apache-2.0
|
| 15 |
- **Finetuned from model :** beomi/Llama-3-Open-Ko-8B
|
| 16 |
|
| 17 |
+
# korean dialogue summary fine-tuned model
|
| 18 |
+
# how to use
|
| 19 |
+
```python
|
| 20 |
+
prompt_template = '''
|
| 21 |
+
μλ λνλ₯Ό μμ½ν΄ μ£ΌμΈμ. λν νμμ '#λν μ°Έμ¬μ#: λν λ΄μ©'μ
λλ€.
|
| 22 |
+
### λν >>>{dialogue}
|
| 23 |
+
|
| 24 |
+
### μμ½ >>>'''
|
| 25 |
+
|
| 26 |
+
if True:
|
| 27 |
+
from unsloth import FastLanguageModel
|
| 28 |
+
model, tokenizer = FastLanguageModel.from_pretrained(
|
| 29 |
+
model_name = "lwef/llm-bench-upload-1", # YOUR MODEL YOU USED FOR TRAINING
|
| 30 |
+
max_seq_length = 2048,
|
| 31 |
+
dtype = None,
|
| 32 |
+
load_in_4bit = True,
|
| 33 |
+
)
|
| 34 |
+
FastLanguageModel.for_inference(model) # Enable native 2x faster inference
|
| 35 |
+
dialogue = '''#P01#: μ νμΆ κ³Όμ λ무 μ΄λ €μ... 5μͺ½ μΈκ² μλλ° γ
‘γ
‘ #P02#: λͺ¬λλͺ¬λλκ°λμμ¨ γ
γ
#P01#: 5μͺ½ λμΆ© μμμ νλ¦λλ‘ μ μ¨μΌμ§..μ΄μ 1μͺ½μ ;; 5μͺ½ μλ λ€μ€λ§ μ μ΄μΌμ§ #P02#: μλ... λκ°λΆλμ€μν κ±°κ°μ κ±°μκ½μ±μμμ°μ
#P01#: λͺ»μ¨ μΈλ§μ
μ¨ #P02#: μ΄κ±°μ€κ°λ체μ¬?? #P01#: γ΄γ΄ κ·Έλ₯ κ³Όμ μ κ·Έλμ λ μ§μ¦λ¨'''
|
| 36 |
+
|
| 37 |
+
formatted_prompt = prompt_template.format(dialogue=dialogue)
|
| 38 |
+
|
| 39 |
+
# ν ν¬λμ΄μ§
|
| 40 |
+
inputs = tokenizer(
|
| 41 |
+
formatted_prompt,
|
| 42 |
+
return_tensors="pt"
|
| 43 |
+
).to("cuda")
|
| 44 |
+
|
| 45 |
+
outputs = model.generate(
|
| 46 |
+
**inputs,
|
| 47 |
+
max_new_tokens = 128,
|
| 48 |
+
eos_token_id=tokenizer.eos_token_id, # EOS ν ν°μ μ¬μ©νμ¬ λͺ
μμ μΌλ‘ μΆλ ₯μ λμ μ§μ .
|
| 49 |
+
use_cache = True
|
| 50 |
+
)
|
| 51 |
+
decoded_outputs = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
| 52 |
+
result = decoded_outputs[0]
|
| 53 |
+
|
| 54 |
+
print(result)
|
| 55 |
+
result = result.split('### μμ½ >>>')[-1].strip()
|
| 56 |
+
print(result)
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 60 |
|
| 61 |
+
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
| 62 |
+
I highly recommend checking the Unsloth notebook.
|