QuantumSpeech-QCNN
IEEE ICASSP 21 - Quantum Convolution Neural Networks for Speech Processing and Automatic Speech Recognition
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
conda env
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
tar
설명 보기 ▼
tar
아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
g[z]ipped 아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:
