Upload epsilon-transformers models and belief analysis data
Browse files
    	
        README.md
    CHANGED
    
    | 
         @@ -1,3 +1,19 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 1 | 
         
             
            # Epsilon-Transformers Belief Analysis Dataset
         
     | 
| 2 | 
         | 
| 3 | 
         
             
            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.
         
     | 
| 
         @@ -28,31 +44,22 @@ epsilon-transformers-belief-analysis/ 
     | 
|
| 28 | 
         | 
| 29 | 
         
             
            | Sweep ID | Run ID | Architecture | Process | Description |
         
     | 
| 30 | 
         
             
            |----------|--------|--------------|---------|-------------|
         
     | 
| 31 | 
         
            -
             
     | 
| 32 | 
         
            -
            ### Mess3
         
     | 
| 33 | 
         
            -
            | 20241121152808 | 55 | LSTM | Mess3 | LSTM trained on Mess3 |
         
     | 
| 34 | 
         
            -
            | 20241121152808 | 63 | GRU | Mess3 | GRU trained on Mess3 |
         
     | 
| 35 | 
         
            -
            | 20241121152808 | 71 | RNN | Mess3 | RNN trained on Mess3 |
         
     | 
| 36 | 
         
            -
            | 20241205175736 | 23 | Transformer | Mess3 | Transformer trained on Mess3 |
         
     | 
| 37 | 
         
            -
             
     | 
| 38 | 
         
            -
            ### FRDN
         
     | 
| 39 | 
         
            -
            | 20241121152808 | 53 | LSTM | FRDN | LSTM trained on FRDN |
         
     | 
| 40 | 
         
            -
            | 20241121152808 | 61 | GRU | FRDN | GRU trained on FRDN |
         
     | 
| 41 | 
         
            -
            | 20241121152808 | 69 | RNN | FRDN | RNN trained on FRDN |
         
     | 
| 42 | 
         
            -
            | 20250422023003 | 1 | Transformer | FRDN | Transformer trained on FRDN |
         
     | 
| 43 | 
         
            -
             
     | 
| 44 | 
         
            -
            ### Bloch Walk
         
     | 
| 45 | 
         
             
            | 20241121152808 | 49 | LSTM | Bloch Walk | LSTM trained on Bloch Walk |
         
     | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 46 | 
         
             
            | 20241121152808 | 57 | GRU | Bloch Walk | GRU trained on Bloch Walk |
         
     | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 47 | 
         
             
            | 20241121152808 | 65 | RNN | Bloch Walk | RNN trained on Bloch Walk |
         
     | 
| 
         | 
|
| 
         | 
|
| 48 | 
         
             
            | 20241205175736 | 17 | Transformer | Bloch Walk | Transformer trained on Bloch Walk |
         
     | 
| 49 | 
         
            -
             
     | 
| 50 | 
         
            -
            ### Moon Process
         
     | 
| 51 | 
         
            -
            | 20241121152808 | 48 | LSTM | Moon Process | LSTM trained on Moon Process |
         
     | 
| 52 | 
         
            -
            | 20241121152808 | 56 | GRU | Moon Process | GRU trained on Moon Process |
         
     | 
| 53 | 
         
            -
            | 20241121152808 | 64 | RNN | Moon Process | RNN trained on Moon Process |
         
     | 
| 54 | 
         
             
            | 20250421221507 | 0 | Transformer | Moon Process | Transformer trained on Moon Process |
         
     | 
| 55 | 
         
            -
             
     | 
| 56 | 
         | 
| 57 | 
         
             
            ## Process Descriptions
         
     | 
| 58 | 
         | 
| 
         @@ -97,6 +104,7 @@ Joblib-serialized files containing: 
     | 
|
| 97 | 
         
             
            ## Usage
         
     | 
| 98 | 
         | 
| 99 | 
         
             
            ### Loading Models
         
     | 
| 
         | 
|
| 100 | 
         
             
            ```python
         
     | 
| 101 | 
         
             
            import torch
         
     | 
| 102 | 
         
             
            from pathlib import Path
         
     | 
| 
         @@ -107,6 +115,7 @@ checkpoint = torch.load(model_path, map_location='cpu') 
     | 
|
| 107 | 
         
             
            ```
         
     | 
| 108 | 
         | 
| 109 | 
         
             
            ### Loading Analysis Data
         
     | 
| 
         | 
|
| 110 | 
         
             
            ```python
         
     | 
| 111 | 
         
             
            import joblib
         
     | 
| 112 | 
         
             
            from pathlib import Path
         
     | 
| 
         | 
|
| 1 | 
         
            +
            ---
         
     | 
| 2 | 
         
            +
            license: mit
         
     | 
| 3 | 
         
            +
            task_categories:
         
     | 
| 4 | 
         
            +
            - other
         
     | 
| 5 | 
         
            +
            language:
         
     | 
| 6 | 
         
            +
            - en
         
     | 
| 7 | 
         
            +
            tags:
         
     | 
| 8 | 
         
            +
            - quantum
         
     | 
| 9 | 
         
            +
            - neural-networks
         
     | 
| 10 | 
         
            +
            - belief-states
         
     | 
| 11 | 
         
            +
            - transformers
         
     | 
| 12 | 
         
            +
            - rnn
         
     | 
| 13 | 
         
            +
            size_categories:
         
     | 
| 14 | 
         
            +
            - 1B<n<10B
         
     | 
| 15 | 
         
            +
            ---
         
     | 
| 16 | 
         
            +
             
     | 
| 17 | 
         
             
            # Epsilon-Transformers Belief Analysis Dataset
         
     | 
| 18 | 
         | 
| 19 | 
         
             
            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.
         
     | 
| 
         | 
|
| 44 | 
         | 
| 45 | 
         
             
            | Sweep ID | Run ID | Architecture | Process | Description |
         
     | 
| 46 | 
         
             
            |----------|--------|--------------|---------|-------------|
         
     | 
| 47 | 
         
            +
            | 20241121152808 | 48 | LSTM | Moon Process | LSTM trained on Moon Process |
         
     | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 48 | 
         
             
            | 20241121152808 | 49 | LSTM | Bloch Walk | LSTM trained on Bloch Walk |
         
     | 
| 49 | 
         
            +
            | 20241121152808 | 53 | LSTM | FRDN | LSTM trained on FRDN |
         
     | 
| 50 | 
         
            +
            | 20241121152808 | 55 | LSTM | Mess3 | LSTM trained on Mess3 |
         
     | 
| 51 | 
         
            +
            | 20241121152808 | 56 | GRU | Moon Process | GRU trained on Moon Process |
         
     | 
| 52 | 
         
             
            | 20241121152808 | 57 | GRU | Bloch Walk | GRU trained on Bloch Walk |
         
     | 
| 53 | 
         
            +
            | 20241121152808 | 61 | GRU | FRDN | GRU trained on FRDN |
         
     | 
| 54 | 
         
            +
            | 20241121152808 | 63 | GRU | Mess3 | GRU trained on Mess3 |
         
     | 
| 55 | 
         
            +
            | 20241121152808 | 64 | RNN | Moon Process | RNN trained on Moon Process |
         
     | 
| 56 | 
         
             
            | 20241121152808 | 65 | RNN | Bloch Walk | RNN trained on Bloch Walk |
         
     | 
| 57 | 
         
            +
            | 20241121152808 | 69 | RNN | FRDN | RNN trained on FRDN |
         
     | 
| 58 | 
         
            +
            | 20241121152808 | 71 | RNN | Mess3 | RNN trained on Mess3 |
         
     | 
| 59 | 
         
             
            | 20241205175736 | 17 | Transformer | Bloch Walk | Transformer trained on Bloch Walk |
         
     | 
| 60 | 
         
            +
            | 20241205175736 | 23 | Transformer | Mess3 | Transformer trained on Mess3 |
         
     | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 61 | 
         
             
            | 20250421221507 | 0 | Transformer | Moon Process | Transformer trained on Moon Process |
         
     | 
| 62 | 
         
            +
            | 20250422023003 | 1 | Transformer | FRDN | Transformer trained on FRDN |
         
     | 
| 63 | 
         | 
| 64 | 
         
             
            ## Process Descriptions
         
     | 
| 65 | 
         | 
| 
         | 
|
| 104 | 
         
             
            ## Usage
         
     | 
| 105 | 
         | 
| 106 | 
         
             
            ### Loading Models
         
     | 
| 107 | 
         
            +
             
     | 
| 108 | 
         
             
            ```python
         
     | 
| 109 | 
         
             
            import torch
         
     | 
| 110 | 
         
             
            from pathlib import Path
         
     | 
| 
         | 
|
| 115 | 
         
             
            ```
         
     | 
| 116 | 
         | 
| 117 | 
         
             
            ### Loading Analysis Data
         
     | 
| 118 | 
         
            +
             
     | 
| 119 | 
         
             
            ```python
         
     | 
| 120 | 
         
             
            import joblib
         
     | 
| 121 | 
         
             
            from pathlib import Path
         
     |