compiler-aware-nas-sr
[ECCV2022] Compiler-Aware Neural Architecture Search for On-Mobile Real-time Super-Resolution
File Explorer
- __init__.py
- images.py
- io.py
- meters.py
- metrics.py
- modes.py
- .gitkeep
- __init__.py
- _isr.py
- bsds100.py
- div2k.py
- set14.py
- set5.py
- urban100.py
- wdsr_b_x2_16_24.pt
- wdsr_b_x2_8_24.pt
- __init__.py
- basic_wdsr_b.py
- ops.py
- wdsr_b.py
- block_b_x2.pt
- block_b_x4.pt
- block_b_x2.pt
- block_b_x2.pt
- __init__.py
- helpers.py
- speed_estimator.py
- SpeedModel.py
- README.md
- test_imresize.py
- __init__.py
- imresize.py
- README.md
- __init__.py
- __init__.py
- estimate.py
- logging_tool.py
- loss.py
- maths.py
- .gitignore
- export_onnx.py
- loss_config.py
- prepare_dataset.py
- pretrain.py
- pretraining.bash
- README.md
- search.bash
- search.py
# 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 activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
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:
