码迷,mamicode.com
首页 >  
搜索关键字:labels_    ( 281个结果
Matlab画图常用
Matlab画图包括标题、标签、图例等,还包括坐标轴的处理,如坐标轴翻转,坐标轴范围改变等。 参考:https://ww2.mathworks.cn/help/matlab/titles-and-labels.html?s_tid=CRUX_lftnav 标题和标签: title 创建多行标题: 在 ...
分类:其他好文   时间:2019-05-09 13:45:25    阅读次数:129
python学习之删除DataFrame某一行/列内容
用法:DataFrame.drop(labels=None,axis=0, index=None, columns=None, inplace=False) 参数说明:labels 就是要删除的行列的名字,用列表给定axis 默认为0,指删除行,因此删除columns时要指定axis=1;index ...
分类:编程语言   时间:2019-05-04 10:06:13    阅读次数:487
机器学习模型评估标准选择循环图
要根据不同的目标选取合适的评估指标。 进行二分类问题的时候,数据集之间的不平衡,会导致评价指标accuracy很高,但是却不能反应模型的好坏。 sklearn.metrics.confusion_matrix 如果标记数字的话,则按标签从小到大排序,如果为字符型的化,自己设计labels参数来表示其 ...
分类:其他好文   时间:2019-03-30 10:42:44    阅读次数:145
kubernetes云平台管理实战: 服务发现和负载均衡(五)
一、rc控制器常用命令 1、rc控制器信息查看 2、删除rc 二、服务发现和负载均衡 1、修改nginx2的标签名为:myweb 2、咋突然少了一个容器? 3、小结 1、因为控制器设置最少保持3个副本 2、rc控制器是根据Labels 来区分组别的 2、nginx2的标签和myweb控制器的标签一样 ...
分类:Web程序   时间:2019-02-21 12:53:53    阅读次数:231
scikit-learn画ROC图
1.使用sklearn库和matplotlib.pyplot库 2.准备绘图函数的传入参数1.预测的概率值数组2.预测的labels值数组 3.调用sklearn.metrics.roc_curve(); 4.例子 5.效果: ...
分类:其他好文   时间:2019-01-23 14:00:10    阅读次数:371
sparse_softmax_cross_entropy_with_logits
>>> a=np.array([[-2.6, -1.7, -3.2, 0.1], [-2.6, -1.7, 3.2, 0.1]]) >>> z=tf.nn.sparse_softmax_cross_entropy_with_logits(logits=a,labels=[2,2]) >>> sess... ...
分类:其他好文   时间:2019-01-22 21:53:36    阅读次数:194
763. Partition Labels
A string S of lowercase letters is given. We want to partition this string into as many parts as possible so that each letter appears in at most one p ...
分类:其他好文   时间:2019-01-10 21:51:05    阅读次数:172
用keras 和 tensorflow 构建手写字识别神经网路
#导入数据 import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from keras.datasets import mnist (train_images, train_labels), (test_... ...
分类:其他好文   时间:2018-12-29 21:11:57    阅读次数:335
mapbox.gl文字标注算法基本介绍
Well-placed labels can be the difference between a sloppy map and a beautiful one. Labels need to clearly identify features without obscuring the map. ...
分类:编程语言   时间:2018-12-26 20:10:10    阅读次数:428
ASP.NET Core微服务 on K8S(Jessetalk)(第一章:详解基本对象及服务发现)(持续更新)
课程链接: "http://video.jessetalk.cn/course/explore" 良心课程,大家一起来学习哈! 任务1:课程介绍 任务2:Labels and Selectors 所有资源对象(包括Pod, Service, Namespace, Volume)都可以打 Label, ...
分类:Web程序   时间:2018-12-21 13:18:07    阅读次数:508
281条   上一页 1 ... 8 9 10 11 12 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!