QuantizationAwareDeepOptics
[CVPR 2022] Code for the paper "Quantization-aware Deep Optics for Diffractive Snapshot Hyperspectral Imaging".
File Explorer
- __init__.py
- res_block_u_net.py
- __init__.py
- camera.py
- demosaicing.py
- diffractive_optical_element.py
- noise.py
- propagation.py
- sensor.py
- sensor_bayer_pattern.py
- sensor_srfs.py
- util.py
- __init__.py
- hyperspectral.py
- __init__.py
- data_utils.py
- dataset_loader.py
- file_io.py
- __init__.py
- hyper_spec_drawer.py
- mask_generator.py
- constants.py
- envrionment.yaml
- evaluator.py
- log.py
- loss.py
- main.py
- metrics.py
- model.py
- README.md
- summary.py
- trainer.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 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:
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:
