Streamlit - python package for AI engineers
Streamlit is a python package that is useful for AI engineers to visualize data.
pip install streamlit
The following code snippet shows a line chart from data.
import streamlit as st
import pandas as pd
st.write("""
# My first app
Hello *world!*
""...
vijayt.hashnode.dev1 min read