赞
踩
首先推荐streamlit, streamlit是一种低代码方案, 即快速构建和共享数据应用程序。说人话就是傻瓜式构建UI界面, 做个人demo很方便。
streamlit/streamlit在github上star已经超过20k了。
美国云计服务商雪花-Snowflake在2022年8亿美元收购了sreamlit公司。只是没想到有一天也会用上低代码工具。
感觉streamlit还行, 上手简单, 官方demo齐全, UI界面也比较圆润。就是安装依赖太多了。
样例github地址: https://github.com/yongzhuo/web-demo)
# -*- coding: UTF-8 -*-
# !/usr/bin/python
# @time :2022/7/16 21:56
# @author :Mo
# @function :demo of streamlit
"""计算文本的jaccard相似度
启动运行
# shell
# streamlit run demo.py --server.port 8832
# nohup streamlit run demo.py --server.port 8832 > tc_jaccard.log 2>&1 &
# tail -n 1000 -f tc_jaccard.log
# 关闭也很慢
"""
import json
import streamlit as st
st.title("Calculate-Jaccard-Similarity")
st.subheader("Input 声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/437988
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。