logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Docker使用TensorFlow Serving部署模型(一)

利用Docker来使用TensorFlow Serving是最简单的一种方式,我使用的Mac作为开发环境,通过bazel编译源码的时候遇到一些奇怪的错误,最终选择通过Docker来部署模型,本文从拉取仓库开始一步一步到部署一个简单的模型 Half Plus Three。1.0 Docker 安装参照官网,下载适合版本的Docker1.1 镜像拉取这一步TensorFlow官网给出的是直接拉...

<easy>LeetCode Problem -- 485. Max Consecutive Ones

描述:Given a binary array, find the maximum number of consecutive 1s in this array.Example 1:Input: [1,1,0,1,1,1]Output: 3Explanation: The first two digits or the last three digits are conse

#leetcode
Linked List -- Leetcode problem 2. Add Two Numbers

描述:You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and retur

#leetcode
python Flask连接mysql

Flask连接mysql写在前面关于怎样使用python部署flask,在这篇博客中我已经进行了说明。项目链接为:https://github.com/SEN-Wanted/BackEnd项目文件结构Appserver/├── app│├── static/# 静态资源文件夹│├── templates/# 模板文件夹│├──...

到底了