-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.txt
72 lines (72 loc) · 2.24 KB
/
tree.txt
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
.
├── README.md
├── __init__.py
├── archive
│ ├── ...pth
│ ├── ...pt
│ ├── summary
│ └── ...
│ └── ....json
├── datasets
│ ├── Bach_Chorales
│ └── ...npy
├── models
│ ├── __init__.py
│ ├── core
│ │ ├── __init__.py
│ │ ├── base_model.py
│ │ ├── conv_vae.py
│ │ ├── encodings.py
│ │ ├── lstm.py
│ │ ├── lstm_vae.py
│ │ ├── memory.py
│ │ └── seq2seq_lstm.py
│ └── papers
│ ├── __init__.py
│ ├── <paper>
│ ├── README.md
│ ├── __init__.py
│ └── code
│ └── main.py
├── pipelines
│ └── inference
│ ├── <model>
│ └── interface.py
│ └── sample.py
├── requirements.txt
├── samples
│ ├── <model>
│ └── <sample>.mid
├── training
│ ├── <Model>
│ | ├── prepare_data.py
│ | └── train.py
│ └── base_trainer.py
├── tree.txt
├── utils
├── __init__.py
├── data
│ ├── __init__.py
│ ├── bach_duet_data.py
│ ├── get_bach_chorales.py
│ ├── gillick_data.py
│ ├── join_midi.py
│ ├── midi_dataset.py
│ ├── naess_encoder.py
│ ├── nuttall_groove_tokenizer.py
│ ├── oore_midi.py
│ ├── vogl_data.py
│ ├── warren_midi_markov_state.py
│ ├── warren_roli_data.py
│ └── warren_roli_drawings.py
├── defaults.py
├── errors.py
├── general.py
├── inference
│ ├── perlin_latents.py
│ ├── serial_utils.py
│ └── transformer_utils.py
└── training
├── __init__.py
├── helpers.py
└── vae_tools.py