sadhumitha-s commited on
Commit
ec88753
·
1 Parent(s): 2c42b88

feat: redeploy fresh model weights and demo trajectories

Browse files
Files changed (3) hide show
  1. Makefile +1 -1
  2. README.md +10 -0
  3. 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
  [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
4
  [![PyTorch 2.x](https://img.shields.io/badge/PyTorch-2.x-red.svg)](https://pytorch.org/)
5
  [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-green.svg)](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
  [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
14
  [![PyTorch 2.x](https://img.shields.io/badge/PyTorch-2.x-red.svg)](https://pytorch.org/)
15
  [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-green.svg)](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