Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add random datasets #266

Merged
merged 2 commits into from
Oct 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 0 additions & 8 deletions docs/source/dataloaders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,3 @@ Example::

.. autoclass:: pl_bolts.datamodules.async_dataloader.AsynchronousLoader
:noindex:

------------------

DummyDataset
------------

.. autoclass:: pl_bolts.datamodules.dummy_dataset.DummyDataset
:noindex:
16 changes: 15 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ PyTorch-Lightning-Bolts documentation
sklearn_datamodule
vision_datamodules

.. toctree::
:maxdepth: 2
:name: datasets
:caption: Datasets

datasets

.. toctree::
:maxdepth: 2
:name: dataloaders
Expand All @@ -53,8 +60,14 @@ PyTorch-Lightning-Bolts documentation
:caption: Models

models_howto
autoencoders
classic_ml

.. toctree::
:maxdepth: 2
:name: vision
:caption: Vision models

autoencoders
convolutional
gans
self_supervised_models
Expand Down Expand Up @@ -90,6 +103,7 @@ Indices and tables
readme
api/pl_bolts.callbacks
api/pl_bolts.datamodules
api/pl_bolts.datasets
api/pl_bolts.metrics
api/pl_bolts.models
api/pl_bolts.callbacks
Expand Down
1 change: 0 additions & 1 deletion pl_bolts/datamodules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from pl_bolts.datamodules.async_dataloader import AsynchronousLoader
from pl_bolts.datamodules.dummy_dataset import DummyDataset, DummyDetectionDataset

try:
from pl_bolts.datamodules.binary_mnist_datamodule import BinaryMNISTDataModule
Expand Down
68 changes: 0 additions & 68 deletions pl_bolts/datamodules/dummy_dataset.py

This file was deleted.