Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,13 @@ title = """
|
|
10 |
Join us : 🌟TeamTonic🌟 is always making cool demos! Join our active builder's 🛠️community 👻 [](https://discord.gg/GWpVpekp) On 🤗Huggingface:[MultiTransformer](https://huggingface.co/MultiTransformer) Math 🔍 [introspector](https://huggingface.co/introspector) On 🌐Github: [Tonic-AI](https://github.com/tonic-ai) & contribute to🌟 [Torchon](https://github.com/Tonic-AI/Torchon)🤗Big thanks to Yuvi Sharma and all the folks at huggingface for the community grant 🤗
|
11 |
"""
|
12 |
|
13 |
-
bnb_config = BitsAndBytesConfig(
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
model_id = "CohereForAI/c4ai-command-r-v01"
|
16 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
|
|
10 |
Join us : 🌟TeamTonic🌟 is always making cool demos! Join our active builder's 🛠️community 👻 [](https://discord.gg/GWpVpekp) On 🤗Huggingface:[MultiTransformer](https://huggingface.co/MultiTransformer) Math 🔍 [introspector](https://huggingface.co/introspector) On 🌐Github: [Tonic-AI](https://github.com/tonic-ai) & contribute to🌟 [Torchon](https://github.com/Tonic-AI/Torchon)🤗Big thanks to Yuvi Sharma and all the folks at huggingface for the community grant 🤗
|
11 |
"""
|
12 |
|
13 |
+
bnb_config = BitsAndBytesConfig(
|
14 |
+
load_in_4bit=True,
|
15 |
+
bnb_4bit_quant_type="nf4",
|
16 |
+
bnb_4bit_use_double_quant=True,
|
17 |
+
bnb_4bit_compute_dtype=torch.bfloat16
|
18 |
+
)
|
19 |
+
|
20 |
|
21 |
model_id = "CohereForAI/c4ai-command-r-v01"
|
22 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|