2019-10-05 18:13:55 +00:00
|
|
|
# Examples
|
2020-09-23 04:19:46 +00:00
|
|
|
Our most robust examples showing all sorts of implementations
|
|
|
|
can be found in our sister library [PyTorch-Lightning-Bolts](https://pytorch-lightning-bolts.readthedocs.io/en/latest/convolutional.html#gpt-2).
|
2020-04-03 21:57:34 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2020-09-23 04:19:46 +00:00
|
|
|
## Basic examples
|
|
|
|
In this folder we add 3 simple examples:
|
2020-04-03 21:57:34 +00:00
|
|
|
|
2020-09-23 04:19:46 +00:00
|
|
|
* [Image Classifier]() (trains arbitrary datasets with arbitrary backbones).
|
|
|
|
* [MNIST classifier]() (defined the model inside the lightningModule).
|
|
|
|
* [Autoencoder]() (shows how the LightningModule is meant to be used as a system)
|
2020-04-03 21:57:34 +00:00
|
|
|
|
2020-09-23 04:19:46 +00:00
|
|
|
---
|
2020-04-03 21:57:34 +00:00
|
|
|
|
2020-09-23 04:19:46 +00:00
|
|
|
## Domain examples
|
|
|
|
This folder contains older examples. You should instead use the examples
|
|
|
|
in [PyTorch-Lightning-Bolts](https://pytorch-lightning-bolts.readthedocs.io/en/latest/convolutional.html#gpt-2)
|
|
|
|
for advanced use cases.
|