码迷,mamicode.com
首页 >  
搜索关键字:labels_    ( 281个结果
python第一百一十七天-----ModelForm组件
1 model, # 对应Model的 2 fields=None, # 字段 3 exclude=None, # 排除字段 4 labels=None, # 提示信息 5 help_texts=None, # 帮助提示信息 6 widgets=None, # 自定义插件 7 error_messa ...
分类:编程语言   时间:2017-09-01 09:56:37    阅读次数:234
HCharts的y轴保留一位和 两位小数
保留一位小数,有一位小数的不变 yAxis : { labels : { formatter : function () { var strVal = ''+this.value ; if (strVal.indexOf('.') == -1) { return strVal + '.0'; }el ...
分类:其他好文   时间:2017-08-25 12:27:03    阅读次数:121
创建第一个简单的AI分类器
from sklearn import tree# 第一个简单的分类器features = [[140, 1], [130, 1], [150, 0], [170, 0]] #列表左边的变量代表水果的重量,右边的1代表表面光滑,0代表有疙瘩labels = [0, 0, 1, 1] #0代表苹果,1 ...
分类:其他好文   时间:2017-08-20 11:24:41    阅读次数:130
[CF825E] Minimal Labels(反向建图,拓扑排序)
题目链接:http://codeforces.com/problemset/problem/825/E 题意:给一个有向图,求一个排列,这个排列是每一个点的序号,使得序号对应的点的排序符合拓扑序并且这个排列字典序最小。 直接跑字典序最小的拓扑排序是不行的,因为那样只是确保点的字典序而非这个排列的字典 ...
分类:编程语言   时间:2017-08-12 13:59:11    阅读次数:197
决策树
#!/usr/bin/env python# -*- coding: utf-8 -*-from trees import DecisionTreeClassifierlense_labels = ['age', 'prescript', 'astigmatic', 'tearRate']X = [ ...
分类:其他好文   时间:2017-08-07 19:28:40    阅读次数:144
Codeforces 825E Minimal Labels - 拓扑排序 - 贪心
You are given a directed acyclic graph with n vertices and m edges. There are no self-loops or multiple edges between any pair of vertices. Graph can ...
分类:编程语言   时间:2017-08-05 14:55:36    阅读次数:370
12 Overlap Graphs
Problem A graph whose nodes have all been labeled can be represented by an adjacency list, in which each row of the list contains the two node labels ...
分类:其他好文   时间:2017-08-03 10:04:38    阅读次数:234
matplotlib绘制圆饼图
1 import matplotlib.pyplot as plt 2 labels = ['Nokia','Samsung','Apple','Lumia'] 3 values = [10,30,45,15] 4 colors = ['yellow','green','red','blue'] 5... ...
分类:其他好文   时间:2017-07-21 12:30:33    阅读次数:158
Code Labels
Code Labels Code labels are three-letter codes with which commit messages can be prefixed. CODE Label color name background text BLD: build light gree ...
分类:其他好文   时间:2017-07-13 17:41:48    阅读次数:186
转转的接口json
{ "respCode": "0", "respData": [ { "uid": "48470233694990", "updateTime": "2天前", "discountTip": "", "status": "8", "labels": { "userLabels": [ ... ...
分类:Web程序   时间:2017-07-13 12:04:47    阅读次数:267
281条   上一页 1 ... 16 17 18 19 20 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!