1. 创建nginx ds # 写入配置 $ cat > nginx-ds.yml <<EOF apiVersion: v1 kind: Service metadata: name: nginx-ds labels: app: nginx-ds spec: type: NodePort selec ...
分类:
Web程序 时间:
2020-05-28 23:22:44
阅读次数:
128
玩转Pod调度 Deployment或RC:全自动调度 apiVersion: apps/v1beta1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 3 template: metadata: labels: a ...
分类:
Web程序 时间:
2020-05-25 17:31:45
阅读次数:
58
导入数据 (train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data() train_labels = train_labels[:1000] test_labels = t ...
分类:
其他好文 时间:
2020-05-19 12:41:50
阅读次数:
76
import numpy as np import matplotlib.pyplot as plt labels = np.array(['1','2','3','4','5','6','7','8']) #标签 考试的次数 dataLenth = 8 #数据个数 data = np.array( ...
分类:
其他好文 时间:
2020-05-05 23:52:08
阅读次数:
126
我做的是一个识别验证码的深度学习模型,识别的图片如下 验证码图片识别4个数字,数字间是有顺序的,设立标签时设计了四个onehot向量链接起来,成了一个长度为40的向量,然后模型的输入也是40维向量用softmax_cross_entropy_with_logits(labels=,logits=)函 ...
分类:
其他好文 时间:
2020-04-20 16:15:30
阅读次数:
285
k8s常用命令 说明:在master上面操作 1 删除 kubectl delete deploy/nginx 删除镜像 kubectl delete svc/nginx 删除pod 2 创建 kubectl run nginx --replicas=3 --labels="app=example" ...
分类:
其他好文 时间:
2020-04-14 22:24:26
阅读次数:
163
from keras.datasets import mnist (train_images,train_labels),(test_images,test_labels)=mnist.load_data() 此处会报 SSL: CERTIFICATE_VERIFY_FAILED] certific ...
分类:
其他好文 时间:
2020-04-12 18:13:58
阅读次数:
136
Future major versions of TensorFlow will allow gradients to flowinto the labels input on backprop by default. See @{tf.nn.softmax_cross_entropy_with_l ...
分类:
其他好文 时间:
2020-04-11 12:59:46
阅读次数:
124
1 import numpy as np 2 import matplotlib.pyplot as plt 5 import struct 6 i=0 7 #读取训练数据 8 file_list=['train-images.idx3-ubyte','train-labels.idx1-ubyte ...
分类:
编程语言 时间:
2020-04-03 16:41:24
阅读次数:
161
搭建k8s集群 Docker search nexus 编写yaml文件 注意,以下的service不是nodeport,而是LoadBalancer apiVersion: apps/v1kind: StatefulSetmetadata: name: nexus labels: app: nex ...
分类:
编程语言 时间:
2020-04-01 10:52:37
阅读次数:
75