quantumaikr
commited on
Commit
โข
5c3e594
1
Parent(s):
219b02b
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- tiiuae/falcon-refinedweb
|
4 |
+
- pankajmathur/WizardLM_Orca
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
- de
|
8 |
+
- es
|
9 |
+
- fr
|
10 |
+
inference: false
|
11 |
+
---
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
# ๐ฐ๐ท quantumaikr/falcon-180B-WizardLM_Orca
|
18 |
+
|
19 |
+
**quantumaikr/falcon-180B-WizardLM_Orca is a 180B parameters causal decoder-only model built by [quantumaikr](https://www.quantumai.kr) based on [Falcon-180B-chat](https://huggingface.co/tiiuae/falcon-180B-chat)**
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
## How to Get Started with the Model
|
24 |
+
|
25 |
+
To run inference with the model in full `bfloat16` precision you need approximately 8xA100 80GB or equivalent.
|
26 |
+
|
27 |
+
|
28 |
+
```python
|
29 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
30 |
+
import transformers
|
31 |
+
import torch
|
32 |
+
|
33 |
+
model = "quantumaikr/falcon-180B-WizardLM_Orca"
|
34 |
+
|
35 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
36 |
+
pipeline = transformers.pipeline(
|
37 |
+
"text-generation",
|
38 |
+
model=model,
|
39 |
+
tokenizer=tokenizer,
|
40 |
+
torch_dtype=torch.bfloat16,
|
41 |
+
trust_remote_code=True,
|
42 |
+
device_map="auto",
|
43 |
+
)
|
44 |
+
sequences = pipeline(
|
45 |
+
"Girafatron is obsessed with giraffes, the most glorious animal on the face of this Earth. Giraftron believes all other animals are irrelevant when compared to the glorious majesty of the giraffe.\nDaniel: Hello, Girafatron!\nGirafatron:",
|
46 |
+
max_length=200,
|
47 |
+
do_sample=True,
|
48 |
+
top_k=10,
|
49 |
+
num_return_sequences=1,
|
50 |
+
eos_token_id=tokenizer.eos_token_id,
|
51 |
+
)
|
52 |
+
for seq in sequences:
|
53 |
+
print(f"Result: {seq['generated_text']}")
|
54 |
+
|
55 |
+
```
|
56 |
+
|
57 |
+
|
58 |
+
## Contact
|
59 |
+
|
60 |
+
๐ฐ๐ท www.quantumai.kr
|
61 |
+
|
62 |
+
๐ฐ๐ท hi@quantumai.kr [์ด๊ฑฐ๋์ธ์ด๋ชจ๋ธ ๊ธฐ์ ๋์
๋ฌธ์ํ์]
|