Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created a basic app with left sidebar which has
Task
->Training Configurations
(includes cpu, gpu, xla, distributed training)To test this app:
pip install streamlit
streamlit run app/streamlit_app.py
cd dist/base
python main.py
python main.py -h
for helpThere is
templates
folder which will have many templates afterward. In this PR, I addedbase
template.In
base
template, there aredatasets.py.jinja
for getting datasets and dataloadersfn.py.jinja
for Engine step functionsmain.py.jinja
for main entry training pointmodels.py.jinja
for getting many model variantsutils.py.jinja
for common utilitesbase_config.py
for base configsFiles created in template folder are inspired by https://github.com/facebookresearch/deit
Files will be created in
dist
folder with another folder with template name as soon as the app runs. ('dist/base' forbase
template).P.S: removed unneeded gitignore