gitextract_lesmzkyd/ ├── .gitignore ├── LICENSE/ │ ├── LICENSE-AUDIOREACTIVE │ ├── LICENSE-AUTOENCODER │ ├── LICENSE-CONTRASTIVE-LEARNER │ ├── LICENSE-FID │ ├── LICENSE-LPIPS │ ├── LICENSE-LUCIDRAINS │ ├── LICENSE-NVIDIA │ ├── LICENSE-ROSINALITY │ └── LICENSE-VGG ├── README.md ├── accelerate/ │ ├── accelerate_inception.py │ ├── accelerate_logcosh.py │ └── accelerate_segnet.py ├── audioreactive/ │ ├── __init__.py │ ├── bend.py │ ├── examples/ │ │ ├── __init__.py │ │ ├── default.py │ │ ├── kelp.py │ │ ├── tauceti.py │ │ └── temper.py │ ├── latent.py │ ├── signal.py │ └── util.py ├── augment.py ├── contrastive_learner.py ├── convert_weight.py ├── dataset.py ├── distributed.py ├── generate.py ├── generate_audiovisual.py ├── generate_video.py ├── gpu_profile.py ├── gpumon.py ├── lightning.py ├── lookahead_minimax.py ├── lucidrains.py ├── models/ │ ├── autoencoder.py │ ├── stylegan1.py │ └── stylegan2.py ├── op/ │ ├── __init__.py │ ├── fused_act.py │ ├── fused_bias_act.cpp │ ├── fused_bias_act_kernel.cu │ ├── upfirdn2d.cpp │ ├── upfirdn2d.py │ └── upfirdn2d_kernel.cu ├── prepare_data.py ├── prepare_vae_codes.py ├── projector.py ├── render.py ├── requirements.txt ├── select_latents.py ├── train.py ├── train_profile.py ├── validation/ │ ├── __init__.py │ ├── calc_fid.py │ ├── calc_inception.py │ ├── calc_ppl.py │ ├── inception.py │ ├── lpips/ │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── dist_model.py │ │ ├── networks_basic.py │ │ ├── pretrained_networks.py │ │ ├── util.py │ │ └── weights/ │ │ ├── v0.0/ │ │ │ ├── alex.pth │ │ │ ├── squeeze.pth │ │ │ └── vgg.pth │ │ └── v0.1/ │ │ ├── alex.pth │ │ ├── squeeze.pth │ │ └── vgg.pth │ ├── metrics.py │ └── spectral_norm.py └── workspace/ ├── naamloos_average_pitch.npy ├── naamloos_bass_sum.npy ├── naamloos_drop_latents.npy ├── naamloos_drop_latents_1.npy ├── naamloos_high_average_pitch.npy ├── naamloos_high_pitches_mean.npy ├── naamloos_intro_latents.npy ├── naamloos_metadata.json ├── naamloos_onsets.npy ├── naamloos_params.json ├── naamloos_pitches_mean.npy └── naamloos_rms.npy