|
--- |
|
base_model: llm-jp/llm-jp-3-13b |
|
tags: |
|
- text-generation-inference |
|
- transformers |
|
- unsloth |
|
- llama |
|
- trl |
|
license: apache-2.0 |
|
language: |
|
- ja |
|
datasets: |
|
- kinokokoro/ichikara-instruction-003 |
|
--- |
|
|
|
# Uploaded model |
|
|
|
- **Developed by:** nishimura999 |
|
- **License:** apache-2.0 |
|
- **Finetuned from model :** llm-jp/llm-jp-3-13b |
|
|
|
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library. |
|
|
|
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth) |
|
|
|
|
|
|
|
```python |
|
# 例: Pythonコード |
|
from transformers import AutoModelForCausalLM, AutoTokenizer |
|
|
|
# モデルのロード |
|
model = AutoModelForCausalLM.from_pretrained("model_name") |
|
tokenizer = AutoTokenizer.from_pretrained("model_name") |
|
|
|
# テキスト生成 |
|
input_text = "こんにちは、世界!" |
|
inputs = tokenizer(input_text, return_tensors="pt") |
|
outputs = model.generate(**inputs) |
|
print(tokenizer.decode(outputs[0])) |
|
|
|
|
|
|