
streamlit
文章平均质量分 89
悟乙己
心如花木,皆向阳而生!
展开
-
盘点 三款高可用的机器学习模型 web页面化的工具(一)
盘点 三款高可用的机器学习模型 web页面化的工具原创 2022-11-20 15:40:08 · 3603 阅读 · 0 评论 -
streamlit + opencv/YOLOv3 快速构建自己的图像目标检测demo网页(七)
文章目录1 案例介绍2 依赖安装3 页面使用4 源码细节解析4.1 直接读入markdown文件4.2 加载文件与图片4.3 opencv + yolov3 检测函数系列参考:python︱写markdown一样写网页,代码快速生成web工具:streamlit介绍(一)python︱写markdown一样写网页,代码快速生成web工具:streamlit 重要组件介绍(二)python︱写markdown一样写网页,代码快速生成web工具:streamlit 展示组件(三)python︱写ma原创 2021-02-08 16:48:42 · 4366 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit 数据探索案例(六)
本案例来看一个专门做数据展示的案例1,uber数据集的展示。1 数据探索性app - Create a data explorer app在本教程中,您将使用Streamlit的核心功能来创建一个交互式应用程序;探索纽约市打车软件优步的公共接送数据集。完成后,您将知道如何获取和缓存数据、绘制图表、在地图上绘制信息,并使用交互式小部件(如滑块)来过滤结果。2 加载数据现在你有了一款应用程序,接下来你需要做的就是获取纽约市取车和落车的优步数据集。streamlit好处就在于cache只加载最初一次原创 2021-02-01 22:46:27 · 2819 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit 缓存(五)
整个文档可参考:https://docs.streamlit.io/en/stable/caching.html当您用@st标记一个函数时。缓存装饰器,它告诉Streamlit无论何时调用函数都需要检查以下几件事:The input parameters that you called the function withThe value of any external variable used in the functionThe body of the functionThe body o原创 2021-02-01 22:25:30 · 2171 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit lay-out布局(四)
文章目录1 `streamlit.beta_container()`2 分列展示3 按照比例分列展示4 折叠/展开1 streamlit.beta_container()通过with st.beta_container():,可以Book一个组件模块将一个不可见的容器插入到你的应用程序中,可以用来保存多个元素。# with写法with st.beta_container(): st.write("This is inside the container") # You can ca原创 2021-02-01 22:17:27 · 6508 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit 展示组件(三)
python︱写markdown一样写网页,代码快速生成web工具:streamlit(一)python︱写markdown一样写网页,代码快速生成web工具:streamlit 重要组件介绍(二)上篇主要是steamlit的介绍以及streamlit的一些初始化,这篇是一些组件的介绍,当然风格是直接上代码。参考代码:mattzheng/display1 文本显示 display-text1.0 各类文本展示""" # 1 文本显示 display-text - 常规文本 - `st原创 2021-01-31 22:30:51 · 3298 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit 重要组件介绍(二)
python︱写markdown一样写网页,代码快速生成web工具:streamlit(一)上篇主要是steamlit的介绍以及streamlit的一些初始化,这篇是一些组件的介绍,当然风格是直接上代码。参考代码:mattzheng/cookbook_elements文章目录1 空白占位符placeholder: st.empty()1 空白占位符placeholder: st.empty()import streamlit as stimport pandas as pdimport n原创 2021-01-31 22:08:40 · 5820 阅读 · 0 评论 -
python︱写markdown一样写网页,代码快速生成web工具:streamlit介绍(一)
文章目录1 streamlit介绍2 安装streamlit2.1 install2.2 其他安装报错3 快速开始1 streamlit介绍Streamlit 网站:https://streamlit.io/GitHub地址:https://github.com/streamlit/streamlit/参考机器之心的:从Python代码到APP,你只需要一个小工具:GitHub已超3000星自行构建工具的流程:部署 Flask app,写 HTML、CSS 和 JavaScript,尝试对从原创 2021-01-31 21:24:46 · 6932 阅读 · 1 评论