Update README.md
Browse files
README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
license: other
|
| 3 |
license_name: hyperclovax-seed
|
| 4 |
license_link: LICENSE
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
|
|
@@ -65,5 +69,4 @@ chat = [
|
|
| 65 |
inputs = tokenizer.apply_chat_template(chat, add_generation_prompt=True, return_dict=True, return_tensors="pt")
|
| 66 |
output_ids = model.generate(**inputs, max_length=1024, stop_strings=["<|endofturn|>", "<|stop|>"], tokenizer=tokenizer)
|
| 67 |
print(tokenizer.batch_decode(output_ids))
|
| 68 |
-
```
|
| 69 |
-
|
|
|
|
| 2 |
license: other
|
| 3 |
license_name: hyperclovax-seed
|
| 4 |
license_link: LICENSE
|
| 5 |
+
base_model:
|
| 6 |
+
- naver-hyperclovax/HyperCLOVAX-SEED-Text-Instruct-0.5B
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
library_name: transformers
|
| 9 |
---
|
| 10 |
|
| 11 |
|
|
|
|
| 69 |
inputs = tokenizer.apply_chat_template(chat, add_generation_prompt=True, return_dict=True, return_tensors="pt")
|
| 70 |
output_ids = model.generate(**inputs, max_length=1024, stop_strings=["<|endofturn|>", "<|stop|>"], tokenizer=tokenizer)
|
| 71 |
print(tokenizer.batch_decode(output_ids))
|
| 72 |
+
```
|
|
|