08 2019 档案

jupyter
摘要:(1)利用镜像ubuntu形成容器notebook_0【路径必须加】docker run -itd --name notebook_0 -d -v /home/qiao/docker_qiao/jupyter:/home/qiao/jupyter ubuntu:18.04 (2)进入容器notebo 阅读全文

posted @ 2019-08-30 13:37 happygril3 阅读(159) 评论(0) 推荐(0)

容器
摘要:1.新建并启动容器 (1)create+start (可以在docker ps中看到) docker create -it ubuntu:latest 0b6eb56ce30d***** docker start 0b6eb56ce30d***** (2) run (仅在docker ps -a 中 阅读全文

posted @ 2019-08-28 15:27 happygril3 阅读(124) 评论(0) 推荐(0)

镜像
摘要:1.获取镜像 docker pull ubuntu:18.04 docker pull ubuntu 2.使用images列出镜像 docker images 3.使用tag添加镜像标签 docker tag ubuntu:18.04 myubuntu:18.04 4.使用inspect查看详细信息 阅读全文

posted @ 2019-08-28 14:26 happygril3 阅读(143) 评论(0) 推荐(0)

mnist 卷积神经网络
摘要:# from keras.models import Sequential# from keras.layers.core import Dense,Activation,Flatten#creating the Sequential model# model=Sequential()# #laye 阅读全文

posted @ 2019-08-11 17:58 happygril3 阅读(272) 评论(0) 推荐(0)

单层神经网络
摘要:import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist=input_data.read_data_sets("MNIST_data/",one_hot=True)feature_co 阅读全文

posted @ 2019-08-11 17:57 happygril3 阅读(203) 评论(0) 推荐(0)

keras
摘要:# from keras.models import Sequential# from keras.layers.core import Dense,Activation,Flatten#creating the Sequential model# model=Sequential()# #laye 阅读全文

posted @ 2019-08-11 17:56 happygril3 阅读(145) 评论(0) 推荐(0)

导航