Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,64 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
---
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- llm
|
| 9 |
+
- chat
|
| 10 |
+
- conversational
|
| 11 |
+
- transformers
|
| 12 |
+
- pytorch
|
| 13 |
+
- text-generation
|
| 14 |
+
license: apache-2.0
|
| 15 |
+
library_name: transformers
|
| 16 |
+
pipeline_tag: text-generation
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# DDS-5 (Mohammad’s GPT-Style Model)
|
| 20 |
+
|
| 21 |
+
**DDS-5** is a GPT-style language model fine-tuned to be a practical, instruction-following assistant for learning, building, and shipping real-world AI applications.
|
| 22 |
+
It is designed with a strong focus on **clarity**, **structured reasoning**, and **developer-friendly outputs** (Python-first, production-minded).
|
| 23 |
+
|
| 24 |
+
> ⚠️ **Note:** DDS-5 is an independent model created by Decoding Data Science. It is **not affiliated with OpenAI** and is **not** “GPT-5”.
|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## What it’s good at ✅
|
| 29 |
+
|
| 30 |
+
- **Instruction following**: responds with clear, structured answers
|
| 31 |
+
- **Code generation (Python-first)**: data science, APIs, ML workflows, notebooks
|
| 32 |
+
- **Technical writing**: docs, project plans, PRDs, research summaries, reports
|
| 33 |
+
- **RAG/Agents guidance**: prompt patterns, tool usage, guardrails, evaluation ideas
|
| 34 |
+
- **Teaching & mentoring**: examples that build intuition + “learn by doing”
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
## What it’s *not* good at (yet) ⚠️
|
| 39 |
+
|
| 40 |
+
- Hallucinations may occur (especially for niche facts or recent events)
|
| 41 |
+
- Weak performance on tasks requiring **ground-truth retrieval** without RAG
|
| 42 |
+
- May struggle with very long contexts depending on deployment settings
|
| 43 |
+
- Not a substitute for expert review in medical/legal/financial decisions
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
## Model details
|
| 48 |
+
|
| 49 |
+
- **Base model:** `<base-model-name>`
|
| 50 |
+
- **Fine-tuning method:** `<SFT / DPO / LoRA / QLoRA / full fine-tune>`
|
| 51 |
+
- **Training data:** `<high-level description: public datasets, synthetic, internal notes, etc.>`
|
| 52 |
+
- **Context length:** `<e.g., 8k / 16k / 32k>`
|
| 53 |
+
- **Intended use:** general assistant for education + building AI apps
|
| 54 |
+
- **Primary audience:** learners, builders, data professionals
|
| 55 |
+
|
| 56 |
+
> Add more specifics if you can—transparency builds trust.
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
|
| 60 |
+
## Quickstart (Transformers)
|
| 61 |
+
|
| 62 |
+
### Install
|
| 63 |
+
```bash
|
| 64 |
+
pip install -U transformers accelerate torch
|