Initial commit: Tucano2-Commerce GRPO v3 training pipeline
Browse filesDomain-specialized LLM project for Brazilian e-commerce analysis.
Includes SFT→GRPO training notebook with W&B integration, project
documentation, and markdown-to-notebook converter.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- .gitignore +52 -0
.gitignore
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.pyo
|
| 5 |
+
*.egg-info/
|
| 6 |
+
dist/
|
| 7 |
+
build/
|
| 8 |
+
*.egg
|
| 9 |
+
|
| 10 |
+
# Jupyter
|
| 11 |
+
.ipynb_checkpoints/
|
| 12 |
+
|
| 13 |
+
# Virtual environments
|
| 14 |
+
.venv/
|
| 15 |
+
venv/
|
| 16 |
+
env/
|
| 17 |
+
|
| 18 |
+
# HuggingFace / model cache
|
| 19 |
+
.cache/
|
| 20 |
+
|
| 21 |
+
# Model weights & checkpoints (tracked via LFS if needed)
|
| 22 |
+
*.safetensors
|
| 23 |
+
*.bin
|
| 24 |
+
*.pt
|
| 25 |
+
*.pth
|
| 26 |
+
*.ckpt
|
| 27 |
+
saved_model/
|
| 28 |
+
|
| 29 |
+
# Training outputs
|
| 30 |
+
outputs/
|
| 31 |
+
runs/
|
| 32 |
+
results/
|
| 33 |
+
checkpoints/
|
| 34 |
+
|
| 35 |
+
# Weights & Biases
|
| 36 |
+
wandb/
|
| 37 |
+
|
| 38 |
+
# IDE / editor
|
| 39 |
+
.vscode/
|
| 40 |
+
.idea/
|
| 41 |
+
*.swp
|
| 42 |
+
*.swo
|
| 43 |
+
*~
|
| 44 |
+
.DS_Store
|
| 45 |
+
|
| 46 |
+
# Claude Code
|
| 47 |
+
.claude/
|
| 48 |
+
|
| 49 |
+
# Environment / secrets
|
| 50 |
+
.env
|
| 51 |
+
.env.*
|
| 52 |
+
*.key
|