原文地址:https://pytorch.org/tutorials/intermediate/flask_rest_api_tutorial.html In this tutorial, we will deploy a PyTor...
PyTorch迁移学习
1%matplotlib inline Transfer Learning for Computer Vision TutorialAuthor: Sasank Chilamkurthy <https://chsasank....
JQuery 定时任务请求
需求定时检测是否有新的任务需要处理 实现12345678910111213141516<script type="text/javascript" src="jquery.min.js"&...
Docker的安装与配置
安装1yay -S docker 启动与配置将当前用户加入到docker用户组中 12sudo groupadd dockersudo usermod -aG docker $USER 更新用户组 1newgrp docker ...
NextCloud 安装&升级
安装123456789101112131415161718192021222324252627282930313233version: '2'volumes: nextcloud: db:services: ...
Flask 部署 TensorFlow 模型
模型转换12345678910111213141516171819202122232425Learn more or give us feedbackimport tensorflow as tffrom keras import b...
一个处理excel文件的工具
需求分析上传excel文件,读取获得时间,比较时间获取单据是否超时.将判断结果回写到excel中 使用Tkinter作为GUI,pandas读取写入excel,datetime比较时间 环境12OS: ManjaroIDE: PyCh...