Skip to content

Instantly share code, notes, and snippets.

@FrancescoSaverioZuppichini
Created November 17, 2019 17:47
Show Gist options
  • Save FrancescoSaverioZuppichini/f19101c817a01f910e9dad336b3aa8f8 to your computer and use it in GitHub Desktop.
Save FrancescoSaverioZuppichini/f19101c817a01f910e9dad336b3aa8f8 to your computer and use it in GitHub Desktop.
.
├── callbacks // here you can create your custom callbacks
├── checkpoint // were we store the trained models
├── data // here we define our dataset
│ └── transformation // custom transformation, e.g. resize and data augmentation
├── dataset // the data
│ ├── train
│ └── val
├── logger.py // were we define our logger
├── losses // custom losses
├── main.py
├── models // here we create our models
│ ├── MyCNN.py
│ ├── resnet.py
│ └── utils.py
├── playground.ipynb // a notebook that can be used to fast experiment with things
├── Project.py // a class that represents the project structure
├── README.md
├── requirements.txt
├── test // you should always perform some basic testing
│ └── test_myDataset.py
└── utils.py // utilities functions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment