File size: 2,718 Bytes
3d7a6ed 025a76d 3d7a6ed 025a76d aaad939 3d7a6ed 025a76d 3d7a6ed f4aa6ed 7561ccf f4aa6ed 7561ccf f4aa6ed 7561ccf f4aa6ed 3d7a6ed 025a76d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
---
language:
- ja
license: other
tags:
- text-generation-inference
- transformers
- unsloth
- trl
- deepseek
datasets:
- kunishou/amenokaku-code-instruct
license_name: deepseek
base_model: deepseek-ai/deepseek-coder-7b-instruct-v1.5
---
# Uploaded model
- **Developed by:** taoki
- **License:** deepseek
- **Finetuned from model :** deepseek-ai/deepseek-coder-7b-instruct-v1.5
# Usage
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
tokenizer = AutoTokenizer.from_pretrained(
"taoki/deepseek-coder-7b-instruct-v1.5-qlora-amenokaku-code"
)
model = AutoModelForCausalLM.from_pretrained(
"taoki/deepseek-coder-7b-instruct-v1.5-qlora-amenokaku-code"
)
if torch.cuda.is_available():
model = model.to("cuda")
prompt="""You are an AI programming assistant, utilizing the DeepSeek Coder model, developed by DeepSeek Company, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer.
### Instruction:
OpenCVを用いて定点カメラから画像を保存するコードを示してください。
### Response:
"""
input_ids = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(
**input_ids,
max_new_tokens=256,
do_sample=True,
top_p=0.9,
temperature=0.2,
repetition_penalty=1.1,
)
print(tokenizer.decode(outputs[0]))
```
# Output
````
<|begin▁of▁sentence|>You are an AI programming assistant, utilizing the DeepSeek Coder model, developed by DeepSeek Company, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer.
### Instruction:
OpenCVを用いて定点カメラから画像を保存するコードを示してください。
### Response:
```python
import cv2
cap = cv2.VideoCapture(0) # カメラの設定
fourcc = cv2.VideoWriter_fourcc(*'XVID') # 動画の形式
out = cv2.VideoWriter('output.avi', fourcc, 20.0, (640, 480)) # 出力先、fps、解像度
while True:
ret, frame = cap.read() # 映像読み込み
if not ret: break
out.write(frame) # 書き込み
cv2.imshow('Frame', frame) # 表示
if cv2.waitKey(1) & 0xFF == ord('q'): # qで終了
break
cap.release()
cv2.destroyAllWindows()
```
<|EOT|>
````
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) |