Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<p align="center">
|
2 |
<img src="https://huggingface.co/HyperbeeAI/Tulpar-7b-v0/resolve/main/tulpar.png" width="360" height="360" >
|
3 |
</p>
|
@@ -19,13 +27,13 @@ You can run inference with both of the following prompts:
|
|
19 |
```python
|
20 |
prompt = f"### User: {input_text}\n\n### Assistant:\n"
|
21 |
inputs = tokenizer(prompt, return_tensors="pt")
|
22 |
-
output = model.generate(**inputs,
|
23 |
```
|
24 |
|
25 |
```python
|
26 |
prompt = f"Question: {input_text}\n\nAnswer:"
|
27 |
inputs = tokenizer(prompt, return_tensors="pt")
|
28 |
-
output = model.generate(**inputs,
|
29 |
```
|
30 |
|
31 |
|
@@ -81,5 +89,4 @@ BigBenchHard results:
|
|
81 |
|**Average**| |0.3754
|
82 |
|
83 |
# Ethical Considerations and Limitations
|
84 |
-
Tulpar is a technology with potential risks and limitations. This model is finetuned only in English and all language-related scenarios are not covered. As Hyperbee.ai, we neither guarantee ethical, accurate, unbiased, objective responses nor endorse its outputs. Before deploying this model, you are advised to make safety tests for your use case.
|
85 |
-
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
library_name: transformers
|
6 |
+
thumbnail: "https://huggingface.co/HyperbeeAI/Tulpar-7b-v0/resolve/main/tulpar.png"
|
7 |
+
---
|
8 |
+
|
9 |
<p align="center">
|
10 |
<img src="https://huggingface.co/HyperbeeAI/Tulpar-7b-v0/resolve/main/tulpar.png" width="360" height="360" >
|
11 |
</p>
|
|
|
27 |
```python
|
28 |
prompt = f"### User: {input_text}\n\n### Assistant:\n"
|
29 |
inputs = tokenizer(prompt, return_tensors="pt")
|
30 |
+
output = model.generate(**inputs, do_sample=True, top_p=0.95, top_k=0, max_new_tokens=512)
|
31 |
```
|
32 |
|
33 |
```python
|
34 |
prompt = f"Question: {input_text}\n\nAnswer:"
|
35 |
inputs = tokenizer(prompt, return_tensors="pt")
|
36 |
+
output = model.generate(**inputs, do_sample=True, top_p=0.95, top_k=0, max_new_tokens=512)
|
37 |
```
|
38 |
|
39 |
|
|
|
89 |
|**Average**| |0.3754
|
90 |
|
91 |
# Ethical Considerations and Limitations
|
92 |
+
Tulpar is a technology with potential risks and limitations. This model is finetuned only in English and all language-related scenarios are not covered. As Hyperbee.ai, we neither guarantee ethical, accurate, unbiased, objective responses nor endorse its outputs. Before deploying this model, you are advised to make safety tests for your use case.
|
|