No project description provided
Project description
Mobile first web app to monitor PyTorch & TensorFlow model training
Relax while your models are training instead of sitting in front of a computer
This is an open-source library to push updates of your ML/DL model training to mobile. Here's a sample experiment
You can host this on your own. We also have a small AWS instance running. and you are welcome to use it. Please consider using your own installation if you are running lots of experiments. Thanks.
Notable Features
- Mobile first design: web version, that gives you a great mobile experience on a mobile browser.
- Model Gradients, Activations and Parameters: Track and compare these indicators independently. We provide a separate analysis for each of the indicator types.
- Summary and Detail Views: Summary views would help you to quickly scan and understand your model progress. You can use detail views for more in-depth analysis.
- Track only what you need: You can pick and save the indicators that you want to track in the detail view. This would give you a customised summary view where you can focus on specific model indicators.
- Standard ouptut: Check the terminal output from your mobile. No need to SSH.
How to use it ?
- Install the labml client library.
pip install labml
- Start pushing updates to the app with two lines of code. Refer to the examples below.
- Click on the link printed in the terminal to open the app.
How to run app locally
pip install labml-app
from labml import tracker, experiment
with experiment.record(name='sample', token='http://localhost:5000/api/v1/track?'):
for i in range(50):
loss, accuracy = train()
tracker.save(i, {'loss': loss, 'accuracy': accuracy})
Examples
from labml import tracker, experiment
with experiment.record(name='sample', exp_conf=conf):
for i in range(50):
loss, accuracy = train()
tracker.save(i, {'loss': loss, 'accuracy': accuracy})
from labml import experiment
from labml.utils.lightening import LabMLLighteningLogger
trainer = pl.Trainer(gpus=1, max_epochs=5, progress_bar_refresh_rate=20, logger=LabMLLighteningLogger())
with experiment.record(name='sample', exp_conf=conf, disable_screen=True):
trainer.fit(model, data_loader)
from labml import experiment
from labml.utils.keras import LabMLKerasCallback
with experiment.record(name='sample', exp_conf=conf):
for i in range(50):
model.fit(x_train, y_train, epochs=conf['epochs'], validation_data=(x_test, y_test),
callbacks=[LabMLKerasCallback()], verbose=None)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
labml_app-0.0.1.tar.gz
(283.2 kB
view details)
Built Distribution
labml_app-0.0.1-py3-none-any.whl
(312.7 kB
view details)
File details
Details for the file labml_app-0.0.1.tar.gz
.
File metadata
- Download URL: labml_app-0.0.1.tar.gz
- Upload date:
- Size: 283.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a01e04014d8330a20ef7b07da9cebc3da26f6c5e457caca21ada85bbb829c1b |
|
MD5 | ac18449a38b4986c5f6d56a42cd3517c |
|
BLAKE2b-256 | cb2c3ff42d7775e0918fdc15f61e2898b5341a778ea7a159b58ccd3261ad40ad |
File details
Details for the file labml_app-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: labml_app-0.0.1-py3-none-any.whl
- Upload date:
- Size: 312.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5813ff95ca9155be6b27a73ecdeb5b5c6670c3670a33330cd7a85e26d10bbd72 |
|
MD5 | f2b39408f038a95b3a8ac1056e184044 |
|
BLAKE2b-256 | cab52833b00285c095c3674a10856a35c2ae1f84b814432c387a9eebf8eaebcc |