gitextract_l201xfp8/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── neuralDX7/ │ ├── __init__.py │ ├── constants.py │ ├── datasets/ │ │ ├── __init__.py │ │ └── dx7_sysex_dataset.py │ ├── models/ │ │ ├── __init__.py │ │ ├── attention/ │ │ │ ├── __init__.py │ │ │ ├── attention.py │ │ │ ├── attention_encoder.py │ │ │ ├── attention_layer.py │ │ │ └── conditional_attention_encoder.py │ │ ├── dx7_cnp.py │ │ ├── dx7_np.py │ │ ├── dx7_nsp.py │ │ ├── dx7_vae.py │ │ ├── general/ │ │ │ ├── __init__.py │ │ │ └── gelu_ff.py │ │ ├── stochastic_nodes/ │ │ │ ├── __init__.py │ │ │ ├── normal.py │ │ │ └── triangular_sylvester.py │ │ └── utils.py │ ├── solvers/ │ │ ├── __init__.py │ │ ├── dx7_np.py │ │ ├── dx7_nsp.py │ │ ├── dx7_patch_process.py │ │ ├── dx7_vae.py │ │ └── utils.py │ └── utils.py ├── projects/ │ ├── dx7_np/ │ │ ├── evaluate.py │ │ ├── experiment.py │ │ ├── features.py │ │ ├── interpoalte.py │ │ └── live.py │ ├── dx7_nsp/ │ │ ├── evaluate.py │ │ ├── experiment.py │ │ ├── features.py │ │ ├── interpoalte.py │ │ └── live.py │ ├── dx7_patch_neural_process/ │ │ ├── evaluate.py │ │ ├── features_analysis.py │ │ └── ray_train.py │ ├── dx7_vae/ │ │ ├── duplicate_test.py │ │ ├── evaluate.py │ │ ├── experiment.py │ │ ├── features.py │ │ ├── interpoalte.py │ │ └── live.py │ └── mnist_neural_process/ │ └── experiment.py ├── requirements.txt ├── scratch/ │ ├── dx7-sysexformat.md │ ├── dx7_constants.py │ ├── dx7_syx.py │ ├── fm-param-analysis.py │ ├── fm_param_ae.py │ ├── fm_param_agoge_vae_rnn.py │ ├── fm_param_rnn_decoder.py │ ├── fm_param_vae.py │ ├── fm_param_vae_rnn.py │ ├── syx_parser.py │ └── syx_write.py ├── setup.cfg ├── setup.py └── version