
机器学习
Raven_csdn
分享,记录
展开
-
vgg16网络实现车牌二分类(整理)
参考:https://blog.youkuaiyun.com/qq_37389133/article/details/80707304,感谢文件结构:vgg16:---data #存放训练数据 ---Yes ---No---model #存放训练好的模型---pred_data #存放测速数据 ---Yes ---No---vgg16.npy #参数文件,直接...翻译 2018-07-11 14:32:59 · 4858 阅读 · 2 评论 -
LeetCode:Maximum Product Subarray(求最大子数组乘积)
Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product.Example 1:Input: [2,3,-2,4]Output:6Explanation: [2,3] ha...原创 2019-01-06 21:31:12 · 263 阅读 · 0 评论