docs: update model with new name
Browse files
README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
---
|
2 |
license: other
|
|
|
|
|
3 |
pipeline_tag: text-generation
|
4 |
language:
|
5 |
- en
|
@@ -10,10 +12,10 @@ tags:
|
|
10 |
- qwen2
|
11 |
---
|
12 |
|
13 |
-
#
|
14 |
|
15 |
## Model Description
|
16 |
-
|
17 |
|
18 |
## Features
|
19 |
- 72 billion parameters
|
@@ -44,15 +46,14 @@ Custom script utilizing safetensors library.
|
|
44 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
45 |
import torch
|
46 |
|
47 |
-
model = AutoModelForCausalLM.from_pretrained("leafspark/
|
48 |
device_map="auto",
|
49 |
torch_dtype=torch.float16)
|
50 |
-
tokenizer = AutoTokenizer.from_pretrained("leafspark/
|
51 |
```
|
52 |
### GGUFs
|
53 |
|
54 |
-
Find them here: [leafspark/
|
55 |
-
|
56 |
|
57 |
### Hardware Requirements
|
58 |
- Minimum ~140GB of storage
|
|
|
1 |
---
|
2 |
license: other
|
3 |
+
license_name: tongyi-qianwen
|
4 |
+
license_link: https://huggingface.co/Qwen/Qwen2-72B-Instruct/blob/main/LICENSE
|
5 |
pipeline_tag: text-generation
|
6 |
language:
|
7 |
- en
|
|
|
12 |
- qwen2
|
13 |
---
|
14 |
|
15 |
+
# Iridium-72B-v0.1
|
16 |
|
17 |
## Model Description
|
18 |
+
Iridium is a 72B parameter language model created through a merge of Qwen2-72B-Instruct, calme2.1-72b, and magnum-72b-v1 using `model_stock`.
|
19 |
|
20 |
## Features
|
21 |
- 72 billion parameters
|
|
|
46 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
47 |
import torch
|
48 |
|
49 |
+
model = AutoModelForCausalLM.from_pretrained("leafspark/Iridium-72B-v0.1",
|
50 |
device_map="auto",
|
51 |
torch_dtype=torch.float16)
|
52 |
+
tokenizer = AutoTokenizer.from_pretrained("leafspark/Iridium-72B-v0.1")
|
53 |
```
|
54 |
### GGUFs
|
55 |
|
56 |
+
Find them here: [leafspark/Iridium-72B-v0.1-GGUF](https://huggingface.co/leafspark/Iridium-72B-v0.1-GGUF)
|
|
|
57 |
|
58 |
### Hardware Requirements
|
59 |
- Minimum ~140GB of storage
|