码迷,mamicode.com
首页 >  
搜索关键字:labels_    ( 281个结果
基于 kubeadm 搭建高可用的kubernetes 1.18.2 (k8s)集群 三 集群可用性测试
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
Kubernetes实践之深入掌握Pod——玩转Pod调度
玩转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
人工智能深度学习:TensorFlow2.0如何保持和读取模型?
导入数据 (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
深度学习中损失值(loss值)为nan(以tensorflow为例)
我做的是一个识别验证码的深度学习模型,识别的图片如下 验证码图片识别4个数字,数字间是有顺序的,设立标签时设计了四个onehot向量链接起来,成了一个长度为40的向量,然后模型的输入也是40维向量用softmax_cross_entropy_with_logits(labels=,logits=)函 ...
分类:其他好文   时间:2020-04-20 16:15:30    阅读次数:285
k8s-常用命令
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
keras加载mnist数据集
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
TypeError: can't pickle dict_values objects
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
python_神经网络识别手写数字0-9
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安装nexus并导入第三方jar包
搭建k8s集群 Docker search nexus 编写yaml文件 注意,以下的service不是nodeport,而是LoadBalancer apiVersion: apps/v1kind: StatefulSetmetadata: name: nexus labels: app: nex ...
分类:编程语言   时间:2020-04-01 10:52:37    阅读次数:75
281条   上一页 1 2 3 4 5 6 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!