Daemontatox
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -9,6 +9,7 @@ tags:
|
|
9 |
license: apache-2.0
|
10 |
language:
|
11 |
- en
|
|
|
12 |
---
|
13 |
|
14 |
# QWQ-32B Model Card
|
@@ -18,7 +19,7 @@ language:
|
|
18 |
- **Base Model:** [unsloth/qwq-32b-preview-bnb-4bit](https://huggingface.co/unsloth/qwq-32b-preview-bnb-4bit)
|
19 |
|
20 |
## Model Overview
|
21 |
-
The
|
22 |
|
23 |
### Key Features
|
24 |
- **Enhanced Training Speed:** Training was completed 2x faster compared to traditional methods, thanks to the optimization techniques provided by Unsloth.
|
@@ -32,7 +33,7 @@ The QWQ-32B model is an advanced large language model (LLM) designed for high-pe
|
|
32 |
- Research Assistance
|
33 |
|
34 |
### Performance Metrics
|
35 |
-
The
|
36 |
|
37 |
### Model Training
|
38 |
The finetuning process leveraged:
|
@@ -49,8 +50,8 @@ You can load the model with Hugging Face's Transformers library:
|
|
49 |
```python
|
50 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
51 |
|
52 |
-
tokenizer = AutoTokenizer.from_pretrained("Daemontatox/
|
53 |
-
model = AutoModelForCausalLM.from_pretrained("Daemontatox/
|
54 |
|
55 |
inputs = tokenizer("Your input text here", return_tensors="pt")
|
56 |
outputs = model.generate(**inputs)
|
@@ -58,6 +59,6 @@ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
|
58 |
```
|
59 |
|
60 |
### Acknowledgments
|
61 |
-
Special thanks to the Unsloth team and the Hugging Face community for their support and tools, making the development of
|
62 |
|
63 |
-
[![Made with Unsloth](https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png)](https://github.com/unslothai/unsloth)
|
|
|
9 |
license: apache-2.0
|
10 |
language:
|
11 |
- en
|
12 |
+
new_version: Daemontatox/PathFinderAI2.0
|
13 |
---
|
14 |
|
15 |
# QWQ-32B Model Card
|
|
|
19 |
- **Base Model:** [unsloth/qwq-32b-preview-bnb-4bit](https://huggingface.co/unsloth/qwq-32b-preview-bnb-4bit)
|
20 |
|
21 |
## Model Overview
|
22 |
+
The PathFinderAI2.0 is an advanced large language model (LLM) designed for high-performance text generation tasks. It has been finetuned from the base model using the [Unsloth](https://github.com/unslothai/unsloth) framework and Hugging Face's TRL library, achieving superior speed and efficiency during training.
|
23 |
|
24 |
### Key Features
|
25 |
- **Enhanced Training Speed:** Training was completed 2x faster compared to traditional methods, thanks to the optimization techniques provided by Unsloth.
|
|
|
33 |
- Research Assistance
|
34 |
|
35 |
### Performance Metrics
|
36 |
+
The PathFinderAI2.0 model demonstrates High-level benchmarks across multiple text-generation datasets, highlighting its capabilities in both reasoning and creativity-focused tasks. Detailed evaluation results will be released in an upcoming report.
|
37 |
|
38 |
### Model Training
|
39 |
The finetuning process leveraged:
|
|
|
50 |
```python
|
51 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
52 |
|
53 |
+
tokenizer = AutoTokenizer.from_pretrained("Daemontatox/PathFinderAI2.0")
|
54 |
+
model = AutoModelForCausalLM.from_pretrained("Daemontatox/PathFinderAI2.0", device_map="auto", load_in_4bit=True)
|
55 |
|
56 |
inputs = tokenizer("Your input text here", return_tensors="pt")
|
57 |
outputs = model.generate(**inputs)
|
|
|
59 |
```
|
60 |
|
61 |
### Acknowledgments
|
62 |
+
Special thanks to the Unsloth team and the Hugging Face community for their support and tools, making the development of PathFinderAI2.0 possible.
|
63 |
|
64 |
+
[![Made with Unsloth](https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png)](https://github.com/unslothai/unsloth)
|