TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
- Installation process
- Software dependencies
- Latest releases
- API references
We use pytest and pytest-cov plugin for testing.
in tests directory:
pytest
- run all testspytest -m models
- run tests for all available models config filespytest -m 'not models'
- run all tests without models testingpytest -m seresnext
- run tests for seresnext modelpytest -m resnet
- run tests for resnet modelpytest -m densenet
- run tests for densenet modelpytest -m espnet
- run tests for espnet modelpytest -m validator
- run tests for config files validationpytest -m metric_utils
- run metric utils testspytest -m losses
- run losses utils tests
After passing tests you can find the test report inside tests/htmlcov. To view report open index.html file (each tests run will override the existing report).
TODO: Explain how other users and developers can contribute to make your code better.
If you want to learn more about creating good readme files then refer the following guidelines. You can also seek inspiration from the below readme files: