My Paper Title

July 3, 2020 ยท View on GitHub

๐Ÿ“‹ A template README.md for code accompanying a Machine Learning paper

My Paper Title

This repository is the official implementation of My Paper Title.

๐Ÿ“‹ Optional: include a graphic explaining your approach/main result, bibtex entry, link to demos, blog posts and tutorials

Requirements

To install requirements:

pip install -r requirements.txt

๐Ÿ“‹ Describe how to set up the environment, e.g. pip/conda/docker commands, download datasets, etc...

Training

To train the model(s) in the paper, run this command:

python train.py --input-data <path_to_data> --alpha 10 --beta 20

๐Ÿ“‹ Describe how to train the models, with example commands on how to train the models in your paper, including the full training procedure and appropriate hyperparameters.

Evaluation

To evaluate my model on ImageNet, run:

python eval.py --model-file mymodel.pth --benchmark imagenet

๐Ÿ“‹ Describe how to evaluate the trained models on benchmarks reported in the paper, give commands that produce the results (section below).

Pre-trained Models

You can download pretrained models here:

๐Ÿ“‹ Give a link to where/how the pretrained models can be downloaded and how they were trained (if applicable). Alternatively you can have an additional column in your results table with a link to the models.

Results

Our model achieves the following performance on :

Image Classification on ImageNet

Model nameTop 1 AccuracyTop 5 Accuracy
My awesome model85%95%

๐Ÿ“‹ Include a table of results from your paper, and link back to the leaderboard for clarity and context. If your main result is a figure, include that figure and link to the command or notebook to reproduce it.

Contributing

๐Ÿ“‹ Pick a licence and describe how to contribute to your code repository.