- try poetry
- install hydra-core, catalyst, dotenv
- build runtime based on Dockerfile
- launch environment inside docker locally
- launch environment inside docker on cloud
- download dataset, create script for dataset downloading
- dataset architecture
- simple dataset iterator
- super - resolution dataset iterator
- script for training and storing training siren models
- cnn for generating sirens from pictures
- super - resolution experiment
- Separate Front-end (probably based on streamlit)
- Separate model back-end based on torch-serving
- docker-compose.yaml to orchestrate them
- Create
.env
file from.env.example
:- check
$DOCKER_RUNTIME
for your specific docker runtime. Note: expected values corresponds to docker runtime command.
- check
Took from here http://vllab.ucmerced.edu/wlai24/LapSRN/
- Repo heavily rely on
pytorch
.pytorch
sync their release schedule withCUDA
schedule. This leads to a situation when you'll need to update your runtime environment withCUDA
releases too.
If you are getting anyCUDA
related errors orpytorch
could find anyCUDA
devices, make sure that you have you the same supported version in your runtime environment and installedpytorch
. Fixes:
# check docker/Dockerfile
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04
# set it to proper version of cuda,
# for example to:
FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
# or
# downgrade pytorch manually by checking
# https://pytorch.org/get-started/locally/
# e.g.
pip install torch==1.6.0+cu101 \
torchvision==0.7.0+cu101 \
-f https://download.pytorch.org/whl/torch_stable.html
# for cuda 10.1 version
@inproceedings{sitzmann2019siren,
author = {Sitzmann, Vincent
and Martel, Julien N.P.
and Bergman, Alexander W.
and Lindell, David B.
and Wetzstein, Gordon},
title = {Implicit Neural Representations
with Periodic Activation Functions},
booktitle = {arXiv},
year={2020}
}
@inproceedings{LapSRN,
author = {Lai, Wei-Sheng and Huang, Jia-Bin and Ahuja, Narendra and Yang, Ming-Hsuan},
title = {Deep Laplacian Pyramid Networks for Fast and Accurate Super-Resolution},
booktitle = {IEEE Conference on Computer Vision and Pattern Recognition},
year = {2017}
}
@article{MSLapSRN,
author = {Lai, Wei-Sheng and Huang, Jia-Bin and Ahuja, Narendra and Yang, Ming-Hsuan},
title = {Fast and Accurate Image Super-Resolution with Deep Laplacian Pyramid Networks},
journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence},
year = {2018}
}