File size: 3,397 Bytes
e39fab2 bdc6375 2e48cbc bdc6375 e39fab2 bdc6375 e39fab2 bdc6375 e39fab2 bdc6375 e39fab2 bdc6375 e39fab2 bdc6375 e39fab2 bdc6375 2e48cbc bdc6375 2e48cbc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
---
license: mit
task_categories:
- other
language:
- en
tags:
- quantum
- neural-networks
- belief-states
- transformers
- rnn
size_categories:
- 1B<n<10B
---
# Epsilon-Transformers Belief Analysis Dataset
This dataset contains trained neural network models and their corresponding belief state regression analysis from the Epsilon-Transformers project. The models were trained on four different stochastic processes and analyzed for their ability to learn and represent belief states.
See https://github.com/adamimos/epsilon-transformers/tree/quantum-public for codebase which generated this data.
## Dataset Structure
```
epsilon-transformers-belief-analysis/
βββ README.md
βββ models/ # Model checkpoints and configurations from S3
β βββ {sweep_id}_{run_id}/
β β βββ 0.pt # Initial checkpoint
β β βββ {final}.pt # Final checkpoint
β β βββ run_config.yaml # Training configuration
β β βββ loss.csv # Training loss data
β βββ ...
βββ analysis/ # Belief state regression analysis results
βββ {sweep_id}_{run_id}/
β βββ checkpoint_0.joblib # Initial checkpoint analysis
β βββ checkpoint_{final}.joblib # Final checkpoint analysis
β βββ ground_truth_data.joblib # Neural network ground truth
β βββ markov3_checkpoint_*.joblib # Classical Markov comparisons
β βββ markov3_ground_truth_data.joblib # Classical ground truth
βββ ...
```
## Model Mappings
| Sweep ID | Run ID | Architecture | Process | Description |
|----------|--------|--------------|---------|-------------|
| 20241121152808 | 48 | LSTM | Moon Process | LSTM trained on Moon Process |
| 20241121152808 | 49 | LSTM | Bloch Walk | LSTM trained on Bloch Walk |
| 20241121152808 | 53 | LSTM | FRDN | LSTM trained on FRDN |
| 20241121152808 | 55 | LSTM | Mess3 | LSTM trained on Mess3 |
| 20241121152808 | 56 | GRU | Moon Process | GRU trained on Moon Process |
| 20241121152808 | 57 | GRU | Bloch Walk | GRU trained on Bloch Walk |
| 20241121152808 | 61 | GRU | FRDN | GRU trained on FRDN |
| 20241121152808 | 63 | GRU | Mess3 | GRU trained on Mess3 |
| 20241121152808 | 64 | RNN | Moon Process | RNN trained on Moon Process |
| 20241121152808 | 65 | RNN | Bloch Walk | RNN trained on Bloch Walk |
| 20241121152808 | 69 | RNN | FRDN | RNN trained on FRDN |
| 20241121152808 | 71 | RNN | Mess3 | RNN trained on Mess3 |
| 20241205175736 | 17 | Transformer | Bloch Walk | Transformer trained on Bloch Walk |
| 20241205175736 | 23 | Transformer | Mess3 | Transformer trained on Mess3 |
| 20250421221507 | 0 | Transformer | Moon Process | Transformer trained on Moon Process |
| 20250422023003 | 1 | Transformer | FRDN | Transformer trained on FRDN |
## File Formats
### Model Files (.pt)
Transformerlens (for transformers) or Pytorch (for RNNs) model checkpoints containing trained model weights and optimizer states.
### Analysis Files (.joblib)
Joblib-serialized files containing:
- **checkpoint_*.joblib**: Regression analysis results mapping activations to belief states
- **ground_truth_data.joblib**: True belief states and probabilities for the neural network data
- **markov3_*.joblib**: Classical Markov model comparisons and baselines |