Voice2Series-Reprogramming
ICML 21 - Voice2Series: Adversarial Reprogramming Acoustic Models for Time Series Classification
File Explorer
- Earthquakes.txt
- Earthquakes_TEST.arff
- Earthquakes_TEST.ts
- Earthquakes_TEST.txt
- Earthquakes_TRAIN.arff
- Earthquakes_TRAIN.ts
- Earthquakes_TRAIN.txt
- ECG200.txt
- ECG200_TEST.arff
- ECG200_TEST.ts
- ECG200_TEST.txt
- ECG200_TRAIN.arff
- ECG200_TRAIN.ts
- ECG200_TRAIN.txt
- ECG5000.txt
- ECG5000_TEST.arff
- ECG5000_TEST.ts
- ECG5000_TEST.txt
- ECG5000_TRAIN.arff
- ECG5000_TRAIN.ts
- ECG5000_TRAIN.txt
- FordA_TEST.tsv
- FordA_TRAIN.tsv
- Worms.txt
- Worms_TEST.arff
- Worms_TEST.ts
- Worms_TEST.txt
- Worms_TRAIN.arff
- Worms_TRAIN.ts
- Worms_TRAIN.txt
- val_audios.npy
- val_cmds.npy
- img.png
- layers.png
- repro_theo.png
- 0715_0318_ts_No5.png
- 9ACB3CBE-8B65-4B13-8FE9-7C474A0FB999.png
- color_cam.jpg
- newstrawberry_task63.pdf
- newstrawberry_task63.png
- ot_wdis.py
- Voice2Series_Reprogramming_Example_ICML21.ipynb
- No4_map1-21-0.7626-dr0.39-seg1.h5
- No4_map18-21-0.7626-dr0.39-seg1.h5
- No4_map18-21-0.7626-dr0.39.h5
- No4_map18-86-0.7928.h5
- pr_attRNN.h5
- pr_UattRNN.h5
- pr_vgg9405.h5
- pr_vggish9405.h5
- trsf_no63_map1_seg1_dr4_01_0.6432.h5
- trsf_no8_map1_seg1_dr4_01_0.5838.h5
- ts_attrnn_adv.h5
- tscnn_model.h5
- v2s_no63_map18_seg10_dr2_273_0.9757.h5
- v2s_no8_map7_seg1_dr1_23_0.9396.h5
- v2s_no8_map7_seg1_dr1_23_0.9396_2.h5
- vggish_audioset_weights_without_fc2.h5
- w_adv.h5
- wNo5_map6-88-0.7662.h5
- yamnet.h5
- yamnet_class_map.csv
- cam_v2s.py
- LICENSE
- README.md
- SpeechModels.py
- task_list.txt
- ts_dataloader.py
- ts_model.py
- tsne_v2s.py
- utils.py
- V2S.yml
- v2s_main.py
- vggish.py
- vggish_params.py
- y_features.py
- y_params.py
- yamnet.py
- yang21j.pdf
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda env
View Details ▼
conda env
Manage conda environments.
conda env create {{[-f|--file]}} {{path/to/file}}
Create an environment from an environment file (YAML, TXT, etc.):
conda env remove {{[-n|--name]}} {{environment_name}}
Delete an environment and everything in it:
conda env update {{[-f|--file]}} {{path/to/file}} --prune
Update an environment based on an environment file:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
