HN user

mbeissinger

491 karma

Artificial Intelligence & Entrepreneurship. https://markus.com

Founder, Lobe (acquired by Microsoft)

Love to chat - email is [username]@gmail.com

Posts19
Comments45
View on HN
scalingintelligence.stanford.edu 3mo ago

Trace: Capability-Targeted Agentic Training

mbeissinger
1pts0
github.com 3mo ago

Meta-Harness: automated search over task-specific model harnesses

mbeissinger
1pts0
yoonholee.com 3mo ago

Meta-Harness: End-to-End Optimization of Model Harnesses

mbeissinger
1pts0
githubnext.com 1y ago

GitHub Spark: enable anyone to create software with AI and a managed runtime

mbeissinger
5pts2
www.technologyreview.com 8y ago

Why even a moth's brain is smarter than AI

mbeissinger
25pts10
aetros.com 9y ago

Aetros

mbeissinger
1pts0
www.usatoday.com 10y ago

I got hacked mid-air while writing an Apple-FBI story

mbeissinger
2pts0
timdettmers.wordpress.com 10y ago

The Brain vs. Deep Learning Part I: Computational Complexity

mbeissinger
106pts16
www.cnet.com 11y ago

Elon Musk thinks truly autonomous vehicles are 5-6 years away

mbeissinger
1pts0
markus.com 11y ago

How to install Theano on AWS for deep learning

mbeissinger
3pts0
www.bbc.com 11y ago

Brain 'can classify words during sleep'

mbeissinger
86pts42
developer.nvidia.com 11y ago

CuDNN – GPU-Accelerated Machine Learning

mbeissinger
5pts0
cs.umd.edu 11y ago

A Neural Network for Factoid Question Answering over Paragraphs

mbeissinger
44pts7
markus.com 12y ago

Deep Learning 101

mbeissinger
210pts44
blog.hartleybrody.com 12y ago

Google's Python Lessons are Awesome

mbeissinger
2pts0
realbusiness.co.uk 15y ago

How to create an Amazon bestseller instantly.

mbeissinger
13pts1
singularityhub.com 15y ago

Video Game Faces So Real, You Can Tell If They're Lying

mbeissinger
2pts0
www.quora.com 15y ago

Creative Facebook Profiles

mbeissinger
1pts0
www.technologyreview.com 15y ago

The Brainy Learning Algorithms of Numenta

mbeissinger
7pts1

Our driving force is to make this technology as accessible as possible to as many people as possible. We believe that machine learning will be a huge new way that people interact with computers going forward to better their lives.

Lobe will always let you train custom machine learning for free on your computer. We hope this becomes a vibrant ecosystem, and the business model around the edges can come later for value-add services.

We believe there are several advantages of Lobe over tools like Google AutoML :) Lobe is making the entire process of creating custom machine learning accessible, from creating your dataset to training and playing with your model, to integrating it into apps:

* Easy to use - no coding, cloud configuration or machine learning experience required.

* Free & private - train for free on your own computer without uploading your data to the cloud. No accounts required.

* Ship anywhere - available for both Mac and Windows. Export your model and ship it on any platform you choose.

AutoML requires paid accounts with high friction setup and is focused on just training a model on your data. You would have to pay and retrain your model manually every time you want to make an iteration. Lobe gives fluidity with iterating and providing feedback to your model through Play.

Hi, Markus here from the Lobe team. The Lobe app is free and you will always be able to train for free on your computer! Our goal is to make machine learning accessible to anyone.

Yeah! Adam and I met at NIPS 2015 when I demoed a gui prototype for OpenDeep, talking about ways to let non-coders build neural nets. Around the same time, we saw that QC Brain video Mike posted and we all started talking and unifying around this vision of helping people who aren't experts get started with designing and adding intelligence to apps. From there we formed the vision for Lobe and the rest is history!

Our vision is to be the tool that starts with great settings for beginners but lets you graduate into the internals as you become more expert - at the lowest level you can interactively create computation graphs and see their results as you change settings, sort of like eager mode for ml frameworks on steroids (or other visual computation graph programs that designers use like Origami/Quartz Composer).

The lobes in the UI are all essentially functions that you double click into to see the graph they use, all the way down to the theory/math.

If you want more comprehensive ways to learn the theory, I highly recommend Stanford's 231n course (http://cs231n.stanford.edu/) and the Goodfellow/Bengio/Courville Deep Learning book (https://www.amazon.com/Deep-Learning-Adaptive-Computation-Ma...)

Yep growing as a platform is the vision! We are committed to accessibility for people using models/components vs. paying but good point about considering the opportunity cost of someone going to algorithmia with a model once it is trained.

We are focusing on free to access any model explicitly shared by the user and pay for training/deploy resources as a service, but might consider mixing in a paid route for users to monetize their unique trained models.

Yes definitely, we support desktop currently with the Tensorflow SavedModel download if you need the model locally, or using the REST API for an application with online connectivity.

Thanks! Acumos has a similar vision of making it easy to build, share, and deploy AI. We are also heavily focused on the iteration and feedback loop time when developing AI applications, and importantly on helping users understand what is going on with the model. That way you can know the limits of the system in production, or know how/where to improve the data and help reduce bias.

Thanks! Yeah our approach is that diverse applications need to be able to go in and customize the models to be useful, at least for the next few years until the algorithms for AutoML get better and replace the engineers :P

Thanks! One of the benefits of Lobe is that users who build models from scratch can publish and share to use in other documents, like a community model zoo. We do this for the current architectures internally, but the goal is for the community to help keep up with the firehose state-of-the-art in ML.

Something really interesting we have discussed for a future feature is being able to train a model using the data of which architectures end up working best for different data types so that Lobe can use AutoML to suggest better templates starting out, or on the fly while you are building the model.

Our initial thoughts for pricing model are to be based on compute and keep as low as possible - we want this to be accessible to as many people as possible and do things like enable local training with Tensorflow.js for free. For cloud API deployment, we will price around the backend compute cost on AWS/GCP for gpu instances plus some margin for us maintaining the distributed setup and scaling of serving a machine learning model.

Thanks! We used the water tank as the first end-to-end test using the product, and made a website that calls the API every minute to monitor the water level in a dashboard.

The architecture implemented using Lobes for object detection is called Yolo v2 (https://pjreddie.com/darknet/yolo/). It is fairly state-of-the-art for that type of problem and has ~70 million parameters that are being learned (matrices that get multiplied and added together). With a webcam and a GPU over the network, we typically see ~1-5 fps with a lot of network overhead sending output images - looking to make that faster for API deployment. The paper site above shows it having 62.94 Bn FLOPS