Triangle104 commited on
Commit
4495acf
·
verified ·
1 Parent(s): 6376599

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +150 -0
README.md CHANGED
@@ -49,6 +49,156 @@ library_name: transformers
49
  This model was converted to GGUF format from [`Spestly/Atlas-Pro-1.5B-Preview`](https://huggingface.co/Spestly/Atlas-Pro-1.5B-Preview) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
50
  Refer to the [original model card](https://huggingface.co/Spestly/Atlas-Pro-1.5B-Preview) for more details on the model.
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  ## Use with llama.cpp
53
  Install llama.cpp through brew (works on Mac and Linux)
54
 
 
49
  This model was converted to GGUF format from [`Spestly/Atlas-Pro-1.5B-Preview`](https://huggingface.co/Spestly/Atlas-Pro-1.5B-Preview) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
50
  Refer to the [original model card](https://huggingface.co/Spestly/Atlas-Pro-1.5B-Preview) for more details on the model.
51
 
52
+ ---
53
+ Model details:
54
+ -
55
+ Atlas Pro (Previously known as '🏆 Atlas-Experiment 0403 🧪' in AtlasUI) is an advanced language model (LLM) built on top of Atlas Flash.
56
+ It's designed to provide exceptional performance for professional tasks
57
+ like coding, mathematics, and scientific problem-solving. Atlas Pro
58
+ builds on Atlas Flash by adding more fine-tuning and specialization,
59
+ making it perfect for researchers and advanced users.
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+ Key Features
69
+
70
+
71
+
72
+
73
+ Improved Problem-Solving: Handles tricky tasks in programming, math, and sciences better than most models.
74
+ Advanced Code Generation: Produces clean and efficient code, but may still miss edge cases occasionally.
75
+ Domain Expertise: Focused on technical and scientific domains but works well in general contexts too.
76
+ Reasoning Improvement: In this version of Atlas, I
77
+ have enhanced it's reasoning via synthetic data from models such as
78
+ Gemini-2.0 Flash Thinking so that it can improve on reasoning.
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+ Intended Use Cases
88
+
89
+
90
+
91
+
92
+ Atlas Pro works best for:
93
+
94
+
95
+ Technical Professionals: Helping developers, engineers, and scientists solve complex problems.
96
+ Educational Assistance: Offering clear, step-by-step help for students and teachers.
97
+ Research Support: Assisting in theoretical and applied science work.
98
+ Enterprise Tools: Integrating into company workflows for smarter systems.
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+ NOTICE
108
+
109
+
110
+
111
+
112
+ Atlas Pro is built on Atlas Flash and improved to meet high standards. Here’s how it’s made:
113
+
114
+
115
+ Base Model: Built upon Atlas Flash, which is already quite capable.
116
+ Fine-Tuning Details:
117
+ Used datasets specific to programming, math, and scientific challenges and overall reasoning abilities.
118
+ Refined its performance for professional scenarios.
119
+
120
+
121
+ Performance Highlights:
122
+ Beats benchmarks with high accuracy, though occasional tweaks might still improve outputs.
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ Limitations
134
+
135
+
136
+
137
+
138
+ Knowledge Cutoff: It doesn’t know about anything recent unless updated.
139
+ Hardware Requirements: Needs high-end GPUs to run smoothly.
140
+ Specialization Bias: While amazing in its focus areas, general chat capabilities might not be as good as other models.
141
+ Token Leakage: In some very rare cases (~1/167), Atlas Pro will experience some token leakage.
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+ Licensing
151
+
152
+
153
+
154
+
155
+ Atlas Pro is released under the MIT, which prohibits harmful uses. Make sure to follow the rules in the license agreement.
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+ Acknowledgments
165
+
166
+
167
+
168
+
169
+ Created by Spestly as part of the Astral Model Family, Atlas Pro builds on the strong foundation of Atlas Flash. Special thanks to Deepseek's R1 Qwen Distilles for helping make it happen.
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+ Usage
179
+
180
+
181
+
182
+
183
+ You can use Atlas Pro with this code snippet:
184
+
185
+
186
+ from transformers import AutoModelForCausalLM, AutoTokenizer
187
+
188
+ # Load the Atlas Pro model
189
+ model_name = "Spestly/Atlas-R1-Pro-1.5B-Preview"
190
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
191
+ model = AutoModelForCausalLM.from_pretrained(model_name)
192
+
193
+ # Generate a response
194
+ prompt = "Write a Python function to calculate the Fibonacci sequence."
195
+ inputs = tokenizer(prompt, return_tensors="pt")
196
+ outputs = model.generate(**inputs, max_length=200)
197
+ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
198
+
199
+ print(response)
200
+
201
+ ---
202
  ## Use with llama.cpp
203
  Install llama.cpp through brew (works on Mac and Linux)
204