homura
homura is a library for fast prototyping DL research
File Explorer
- ghpage.yml
- pypi.yml
- test.yml
- commons.html
- segmentation.html
- attention.html
- discretizations.html
- grad_approximation.html
- knn.html
- loss.html
- attention.html
- discretization.html
- ema.html
- loss.html
- backends.html
- benchmarks.html
- containers.html
- distributed.html
- environment.html
- grad_tools.html
- reproducibility.html
- classification.html
- detection.html
- segmentation.html
- statistics.html
- visionset.html
- cifar_resnet.html
- densenet.html
- unet.html
- mixup.html
- transform.html
- liblog.html
- lr_scheduler.html
- optim.html
- register.html
- reporters.html
- trainers.html
- index.html
- fontawesome-webfont.eot
- fontawesome-webfont.svg
- fontawesome-webfont.ttf
- fontawesome-webfont.woff
- fontawesome-webfont.woff2
- lato-bold-italic.woff
- lato-bold-italic.woff2
- lato-bold.woff
- lato-bold.woff2
- lato-normal-italic.woff
- lato-normal-italic.woff2
- lato-normal.woff
- lato-normal.woff2
- Roboto-Slab-Bold.woff
- Roboto-Slab-Bold.woff2
- Roboto-Slab-Regular.woff
- Roboto-Slab-Regular.woff2
- badge_only.css
- theme.css
- badge_only.js
- html5shiv-printshiv.min.js
- html5shiv.min.js
- theme.js
- basic.css
- doctools.js
- documentation_options.js
- file.png
- jquery-3.5.1.js
- jquery.js
- language_data.js
- minus.png
- plus.png
- pygments.css
- searchtools.js
- underscore-1.13.1.js
- underscore.js
- .buildinfo
- genindex.html
- homura.html
- homura.metrics.html
- homura.modules.functional.html
- homura.modules.html
- homura.utils.html
- homura.vision.data.html
- homura.vision.html
- homura.vision.models.html
- homura.vision.transforms.html
- index.html
- modules.html
- objects.inv
- py-modindex.html
- search.html
- searchindex.js
- conf.py
- index.rst
- .nojekyll
- index.html
- Makefile
- cifar10.py
- imagenet.py
- README.md
- test.jpg
- transforms.ipynb
- __init__.py
- commons.py
- generative.py
- segmentation.py
- __init__.py
- attention.py
- discretizations.py
- grad_approximation.py
- knn.py
- loss.py
- __init__.py
- attention.py
- discretization.py
- ema.py
- loss.py
- __init__.py
- _mixin.py
- backends.py
- benchmarks.py
- containers.py
- distributed.py
- environment.py
- grad_tools.py
- reproducibility.py
- __init__.py
- classification.py
- detection.py
- segmentation.py
- statistics.py
- visionset.py
- __init__.py
- _utils.py
- cifar_resnet.py
- densenet.py
- unet.py
- __init__.py
- mixup.py
- transform.py
- __init__.py
- __init__.py
- liblog.py
- lr_scheduler.py
- optim.py
- register.py
- reporters.py
- trainers.py
- __init__.py
- test_commons.py
- test_segmentation.py
- test_attention.py
- test_ema.py
- test_functional.py
- test_knn.py
- __init__.py
- test_containers.py
- test_reproducibility.py
- __init__.py
- test_statistics.py
- __init__.py
- test_mixup.py
- test_models.py
- test_transforms.py
- __init__.py
- test_lr_schedule.py
- test_registry.py
- test_reporters.py
- test_trainers.py
- .gitignore
- LICENSE
- README.md
- requirements.txt
- setup.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.
dict
View Details ▼
dict
Dictionary that uses the DICT protocol.
dict {{[-D|--dbs]}}
List available databases:
dict {{[-i|--info]}} {{database_name}}
Get information about a database:
dict {{[-d|--database]}} {{database_name}} {{word}}
Look up a word in a specific database:
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:
pip uninstall
View Details ▼
pip uninstall
Uninstall Python packages.
pip uninstall {{package}}
Uninstall a package:
pip uninstall {{[-r|--requirement]}} {{path/to/requirements.txt}}
Uninstall packages listed in a specific file:
pip uninstall {{[-y|--yes]}} {{package}}
Uninstall package without asking for confirmation:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
