Skip to content

Commit 3f16542

Browse files
authored
Revise README for improved clarity and accuracy
Updated README to enhance clarity and accuracy of DeepFabric description and usage instructions.
1 parent be4ba20 commit 3f16542

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
<br/>
3838
</div>
3939

40-
**DeepFabric** is a specialised dataset generation and model fine-tuning framework designed for training small language models (SLMs) to become capable agents. By combining reasoning traces with tool calling patterns, and enforcement of type based structured outputs - DeepFabric enables you to fine-tune models that make intelligent decisions, select appropriate tools, and execute multi-step workflows—at any model scale.
40+
**DeepFabric** is a specialised dataset generation and model fine-tuning framework designed for training small language models (SLMs) to become capable agents. By combining reasoning traces with tool calling patterns, and enforcement of type based structured outputs - DeepFabric enables you to fine-tune models that make intelligent decisions, select appropriate tools, and execute multi-step workflows efficiently and with accuracy.
4141

4242
Built for ML engineers, researchers, and AI developers, DeepFabric streamlines the entire agent training pipeline: from hierarchical topic generation to structured reasoning templates to model-ready formats across all major training frameworks. Whether you're building MCP-compatible agents, distilling capabilities into smaller models, or creating specialized tool-calling systems, DeepFabric provides the high-quality, diverse training data you need at scale.
4343

44-
## From Generation to Training in Minutes
44+
## Generation to Training
4545

46-
DeepFabric datasets are production-ready for immediate trainingno conversion scripts, no preprocessing pipelines, just generate and train:
46+
DeepFabric datasets are ready for immediate training, multi-format capable with no conversion scripts needed, no preprocessing pipelines, just generate and train:
4747

4848
**Supervised Fine-Tuning (SFT)**: Drop DeepFabric datasets directly into HuggingFace TRL's `SFTTrainer` for tool-calling and conversational agent training. The `builtin://trl_sft_tools` formatter outputs the exact structure TRL expects, including function schemas and multi-turn tool interactions.
4949

@@ -69,7 +69,7 @@ Or if your dataset is already in a different template style, simply re-format on
6969
from trl import SFTTrainer
7070
from datasets import load_dataset
7171

72-
!deepfabric format --repo "alwaysfurther/deepfabric-agent-tool-calling" -f trl_sft_tools -o dataset.jsonl
72+
!deepfabric format --repo "org/deepfabric-dataset" -f trl_sft_tools -o dataset.jsonl
7373
dataset = load_dataset("json", data_files="dataset.jsonl", split="train")
7474

7575
# Train directly with TRL - no preprocessing needed

0 commit comments

Comments
 (0)