QuantumSpeech-QCNN
IEEE ICASSP 21 - Quantum Convolution Neural Networks for Speech Processing and Automatic Speech Recognition
File Explorer
- 0910_1843_base_sp2cmd.hdf5
- 0910_1843_conv_sp2cmd.hdf5
- 0910_1843_qaunv_sp2cmd.hdf5
- asr_ctc_demo.hdf5
- asr_q_tr.z01
- asr_q_tr.z02
- asr_q_tr.z03
- asr_q_tr.zip
- asr_q_val.zip
- asr_x_tr.z01
- asr_x_tr.zip
- asr_x_val.npy
- char_y_tr.json
- char_y_val.json
- unzip.sh
- q_test_demo.npy
- q_train_demo.npy
- x_test_demo.npy
- x_train_demo.npy
- y_test_demo.npy
- y_train_demo.npy
- huck-on.wav
- Huck_format_conference_poster_latex_v2.pdf
- ICASSP_Show_Demo.ipynb
- LICENSE
- readme.md
- Speech_QCNN_colab_demo.ipynb
- vertical_federated_training_example.py
- cam_sp_0.png
- color_cam.jpg
- demo.png
- QCNN_Sys_ASR.png
- Quanv.png
- cam_sp.py
- data_generator.py
- environment.yml
- helper_q_tool.py
- main_qsr.py
- models.py
- qsr_ctc_wer.py
- README.md
# 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:
conda install
View Details ▼
conda install
Install packages into an existing conda environment.
conda install {{package1 package2 ...}}
Install one or more package into the currently active conda environment:
conda install {{[-c|--channel]}} conda-forge {{package}}
Install a single package into the currently active conda environment using channel conda-forge:
conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}
Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:
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:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
