Visualization toolkit for Chainer
Project description
An unofficial visualization tool for chainer, inspired by tensorboard. The toolkit allows visualization of log from chainer.extensions.LogReport.
Example usage:
model = L.Classifier(MyModel())
optimizer = chainer.optimizers.Adam()
optimizer.setup(model)
train = create_my_data()
train_iter = chainer.iterators.SerialIterator(train, batchsize)
updater = training.StandardUpdater(train_iter, optimizer)
trainer = training.Trainer(updater, (epochs, 'epoch'), out='path/to/output')
trainer.extend(extensions.LogReport(log_name='my_log_data')))
# optional; allows visualization of parameters
trainer.extend(extensions.ParameterStatistics(model))
# Run the training
trainer.run()
and point chainerboard at the output log file to start local http server.
chainerboard path/to/output/my_log_name
now open http://localhost:6006/ to view the log.
Development
To setup development environment:
pip install -r requirements.txt
For testing,
tox
Build document
python setup.py build_sphinx
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
chainerboard-0.1.1.tar.gz
(848.1 kB
view details)
Built Distribution
chainerboard-0.1.1-py2-none-any.whl
(862.2 kB
view details)
File details
Details for the file chainerboard-0.1.1.tar.gz
.
File metadata
- Download URL: chainerboard-0.1.1.tar.gz
- Upload date:
- Size: 848.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a452e56029e84f0301ee983f251c465bdf99f278e60d1ac9126ae9f6ed1ea064 |
|
MD5 | d50a4415cc856215c96c79c8b04c50f0 |
|
BLAKE2b-256 | 601f504e25bf8534f47a69d3947762aeebc4a8dc98d7e6516b19ee469912d40e |
File details
Details for the file chainerboard-0.1.1-py2-none-any.whl
.
File metadata
- Download URL: chainerboard-0.1.1-py2-none-any.whl
- Upload date:
- Size: 862.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efb2219b05677f8c6af0069d9b76bace2760a164bc960a80dd6fae85931d59e2 |
|
MD5 | b76682a86465b08ff3d915e612895c05 |
|
BLAKE2b-256 | bab80418af4e949b4afaa9a08278ab3534e0d57c04bfb8527d525e22dca4b325 |