- 博客(6)
- 收藏
- 关注
原创 使用Lenet5对mnist数据集进行训练和测试
1.先训练数据import tensorflow as tffrom tensorflow.keras import Sequential, layers, optimizers# 加载数据集mnist = tf.keras.datasets.mnist(trainImage, trainLabel),(testImage, testLabel) = mnist.load_data() for i in [trainImage,trainLabel,testImage,testLabel]:
2022-04-20 21:23:29
1370
1
原创 问题:打包Maven项目时报Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT
Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in https://repository.apache.org/snapshots was cached in the local repository, resolution will not be reattempted until the update interval of apache.snapshots has elapsed or updates are forced
2022-04-08 21:16:10
2947
4
原创 leetcode第76题---滑动窗口
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档文章目录一、完整代码提示:以下是本篇文章正文内容,下面案例可供参考一、完整代码class Solution {public String minWindow(String s, String t) {String res = “”;if(s.length() < t.length()) return res;HashMap<Character,Integer> need = new HashMap&.
2022-03-21 11:57:22
440
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人