Spaces:
Running
Running
Commit ·
ec88753
1
Parent(s): 2c42b88
feat: redeploy fresh model weights and demo trajectories
Browse files- Makefile +1 -1
- README.md +10 -0
- scripts/deploy.sh +1 -1
Makefile
CHANGED
|
@@ -44,7 +44,7 @@ deploy:
|
|
| 44 |
@echo "=========================================================="
|
| 45 |
@echo "2. Staging and committing deployment assets..."
|
| 46 |
@echo "=========================================================="
|
| 47 |
-
@git add data/trajectories_demo.pt models/mini_dt.pt artifacts/saes/ .gitignore Dockerfile docker-compose.yml Makefile scripts/deploy.sh src/dashboard/app.py .github/workflows/hf_sync.yml
|
| 48 |
@git commit -m "feat: redeploy fresh model weights and demo trajectories" || echo "No new changes to commit."
|
| 49 |
@echo ""
|
| 50 |
@echo "=========================================================="
|
|
|
|
| 44 |
@echo "=========================================================="
|
| 45 |
@echo "2. Staging and committing deployment assets..."
|
| 46 |
@echo "=========================================================="
|
| 47 |
+
@git add data/trajectories_demo.pt models/mini_dt.pt artifacts/saes/ .gitignore Dockerfile docker-compose.yml Makefile scripts/deploy.sh src/dashboard/app.py .github/workflows/hf_sync.yml README.md .gitattributes
|
| 48 |
@git commit -m "feat: redeploy fresh model weights and demo trajectories" || echo "No new changes to commit."
|
| 49 |
@echo ""
|
| 50 |
@echo "=========================================================="
|
README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# DT-Circuits: Mechanistic Interpretability for Decision Transformers
|
| 2 |
|
|
|
|
| 3 |
[](https://www.python.org/downloads/)
|
| 4 |
[](https://pytorch.org/)
|
| 5 |
[](https://opensource.org/licenses/Apache-2.0)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: DT-Explorer
|
| 3 |
+
emoji: 🔍
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
# DT-Circuits: Mechanistic Interpretability for Decision Transformers
|
| 11 |
|
| 12 |
+
|
| 13 |
[](https://www.python.org/downloads/)
|
| 14 |
[](https://pytorch.org/)
|
| 15 |
[](https://opensource.org/licenses/Apache-2.0)
|
scripts/deploy.sh
CHANGED
|
@@ -39,7 +39,7 @@ echo "=========================================================="
|
|
| 39 |
# 2. Stage model weights, SAE checkpoints, and configuration files
|
| 40 |
echo "2. Staging deployment files in Git..."
|
| 41 |
echo "=========================================================="
|
| 42 |
-
git add data/trajectories_demo.pt models/mini_dt.pt artifacts/saes/ .gitignore Dockerfile docker-compose.yml Makefile scripts/deploy.sh src/dashboard/app.py .github/workflows/hf_sync.yml
|
| 43 |
echo "Staged."
|
| 44 |
echo ""
|
| 45 |
|
|
|
|
| 39 |
# 2. Stage model weights, SAE checkpoints, and configuration files
|
| 40 |
echo "2. Staging deployment files in Git..."
|
| 41 |
echo "=========================================================="
|
| 42 |
+
git add data/trajectories_demo.pt models/mini_dt.pt artifacts/saes/ .gitignore Dockerfile docker-compose.yml Makefile scripts/deploy.sh src/dashboard/app.py .github/workflows/hf_sync.yml README.md .gitattributes
|
| 43 |
echo "Staged."
|
| 44 |
echo ""
|
| 45 |
|