All Projects → lab-ml → App

lab-ml / App

Licence: mit
📱 Mobile first web app to monitor PyTorch & TensorFlow model training

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to App

Swipe
A plugin for Unreal Engine 4 that exposes swipes on mobile devices as events in blueprint.
Stars: ✭ 91 (-11.65%)
Mutual labels:  mobile
React Swipeable
React swipe event handler hook
Stars: ✭ 1,348 (+1208.74%)
Mutual labels:  mobile
Pd Select
vue components ,like ios 3D picker style,vue 3d 选择器组件,3D滚轮
Stars: ✭ 101 (-1.94%)
Mutual labels:  mobile
D3 Wasm Force
A re-implementation of d3-force with WebAssembly.
Stars: ✭ 93 (-9.71%)
Mutual labels:  d3
Syncing Thesis
Syncing strategies for mobile apps.
Stars: ✭ 97 (-5.83%)
Mutual labels:  mobile
Stompclientlib
Simple STOMP Client library, Swift 3 and 4, 4.2, 5 compatible
Stars: ✭ 99 (-3.88%)
Mutual labels:  mobile
Plotly.py
The interactive graphing library for Python (includes Plotly Express) ✨
Stars: ✭ 10,701 (+10289.32%)
Mutual labels:  d3
D3 Audio Spectrum
Spectrum analysis demo using D3 and HTML5 audio
Stars: ✭ 101 (-1.94%)
Mutual labels:  d3
Universal Resume
Minimal and formal résumé (CV) website template for print, mobile, and desktop. https://bit.ly/ur_demo
Stars: ✭ 1,349 (+1209.71%)
Mutual labels:  mobile
Brightid
Reference mobile app for BrightID
Stars: ✭ 101 (-1.94%)
Mutual labels:  mobile
Flutter todo
Yet another Todo app, now using Flutter (with ScopedModel)
Stars: ✭ 94 (-8.74%)
Mutual labels:  mobile
Mln
高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua
Stars: ✭ 1,343 (+1203.88%)
Mutual labels:  mobile
Wq.app
💻📱 wq's app library: a JavaScript framework powering offline-first web & native apps for geospatial data collection, mobile surveys, and citizen science. Powered by Redux, React, Material UI and Mapbox GL.
Stars: ✭ 99 (-3.88%)
Mutual labels:  mobile
Mobilenet V2 Caffe
MobileNet-v2 experimental network description for caffe
Stars: ✭ 93 (-9.71%)
Mutual labels:  mobile
Jscost.org
JSCost.org - a JavaScript cost visualizer 💸
Stars: ✭ 101 (-1.94%)
Mutual labels:  mobile
Ncnn Mtcnn
It is a mtcnn project based on ncnn
Stars: ✭ 91 (-11.65%)
Mutual labels:  mobile
Logation
Analyse your NGINX access logs and create beautiful maps of the locations from which people access your service.
Stars: ✭ 99 (-3.88%)
Mutual labels:  d3
Translation
翻译,学习英语和前端技术
Stars: ✭ 102 (-0.97%)
Mutual labels:  d3
Ionic Collection
🤘 Looking for about Ionic Framework?
Stars: ✭ 101 (-1.94%)
Mutual labels:  mobile
React Native Contacts
React Native Contacts
Stars: ✭ 1,369 (+1229.13%)
Mutual labels:  mobile

Mobile first web app to monitor PyTorch & TensorFlow model training

Relax while your models are training instead of sitting in front of a computer

PyPI - Python Version PyPI Status Slack Docs Twitter

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 ?

  1. Install the labml client library.
pip install labml
  1. Start pushing updates to the app with two lines of code. Refer to the examples below.
  2. Click on the link printed in the terminal to open the app. View Run

Examples

  1. Pytorch Open In Colab Kaggle
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})
  1. PyTorch Lightning Open In Colab Kaggle
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)

  1. TensorFlow 2.0 Keras Open In Colab Kaggle
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)

Citing LabML

If you use LabML for academic research, please cite the library using the following BibTeX entry.

@misc{labml,
 author = {Varuna Jayasiri, Nipun Wijerathne},
 title = {LabML: A library to organize machine learning experiments},
 year = {2020},
 url = {https://lab-ml.com/},
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].