-
Notifications
You must be signed in to change notification settings - Fork 29
Add script for basic testing #18
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Feature
Add a script for some basic testing such as finding batch size, testing just the dataset or just the network.
Motivation
When we are developing a new model we want to test parts of our pipeline before pursuing coding. Having a tool to just test some parts (e.g. : dataset, network creation/forward) and some setting tests before starting training (e.g. : batch size) would ease the use of the framework.
Example of use
I imagine something like :
python -m bootstrap.test --batch_size 50 80 100 --options /path/to/optionspython -m bootstrap.test --network forward --options /path/to/optionspython -m bootstrap.test --dataset --options /path/to/options
To test networks we would need datasets to generate empty items (so we don't need to load an entire dataset) so we can feed the network with batches really fast.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request