deppp / streamlit

Streamlit — The fastest way to build custom ML tools

Home Page:https://streamlit.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to Streamlit 👋

The fastest way to build custom ML tools.

Streamlit lets you create apps for your machine learning projects with deceptively simple Python scripts. It supports hot-reloading, so your app updates live as you edit and save your file. No need to mess with HTTP requests, HTML, JavaScript, etc. All you need is your favorite editor and a browser. Take a look at Streamlit in action:

Example of live coding a dashboard in Streamlit|635x380

Check out our launch blog post!!

Installation

pip install streamlit
streamlit hello

Example

Streamlit lets you build interactive apps ridiculously easily:

import streamlit as st

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)

A Bigger Example

Despite its simplicity Streamlit lets you build incredibly rich and powerful tools. This demo project lets you browse the entire Udacity self-driving-car dataset and run inference in real time using the YOLO object detection net.

Making-of Animation

The complete demo is implemented in less than 300 lines of Python. In fact, the app contains only 23 Streamlit calls which illustrates all the major building blocks of Streamlit. You can try it right now with:

pip install --upgrade streamlit opencv-python
streamlit run https://raw.githubusercontent.com/streamlit/demo-self-driving/master/app.py

More Information

Streamlit for Teams

Streamlit for Teams is our enterprise edition, with single-click deploy, authentication, web editing, versioning, and more. Please contact us if you would like to learn more.

License

Streamlit is completely free and open source and licensed under the Apache 2.0 license.

About

Streamlit — The fastest way to build custom ML tools

https://streamlit.io

License:Apache License 2.0


Languages

Language:Python 62.2%Language:TypeScript 31.7%Language:CSS 4.3%Language:Makefile 0.7%Language:Shell 0.5%Language:JavaScript 0.4%Language:HTML 0.2%Language:Dockerfile 0.1%Language:Batchfile 0.0%