上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

2021年3月26日

multi-class、multi-label、multi-output的区别与联系

摘要: 一直很纠结Multi-class, Multi-label 以及 Multi-task 各自的区别和联系,最近找到了以下的说明资料: Multiclass classification means a classification task with more than two classes; e 阅读全文

posted @ 2021-03-26 07:45 iUpoint 阅读(708) 评论(0) 推荐(0) 编辑

2021年3月25日

多标签分类

摘要: 转自: 解决多标签分类问题(包括案例研究) 加载和生成多标签分类数据集 安装工具包 pip install arff pip install scikit-multilearn 加载多标签分类数据集 from skmultilearn.dataset import available_data_se 阅读全文

posted @ 2021-03-25 23:37 iUpoint 阅读(314) 评论(0) 推荐(0) 编辑

多分类与多标签分类评价指标

摘要: 单标签评价指标 import matplotlib.pyplot as plt import numpy as np def F1(P,R): return 2*P*R/(P+R) def ROC(pos,neg): TPR = [] FPR = [] for i in np.arange(0.05 阅读全文

posted @ 2021-03-25 22:05 iUpoint 阅读(374) 评论(0) 推荐(0) 编辑

tensorflow笔记

摘要: tensoflow笔记 from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Input, Dense, Activation, Model #方法一: layers = [Dense(3 阅读全文

posted @ 2021-03-25 22:00 iUpoint 阅读(23) 评论(0) 推荐(0) 编辑

2021年3月17日

解决可ping通但无法访问github网站的问题

摘要: 本文转自: 解决GitHub打不开的终极办法! 一、确定ip进入网址https://github.com.ipaddress.com 查看GitHub的ip地址。 140.82.112.3 github.com 二、确定域名ip进入网址https://fastly.net.ipaddress.com 阅读全文

posted @ 2021-03-17 23:55 iUpoint 阅读(18535) 评论(1) 推荐(4) 编辑

行政区划代码

摘要: 行政区划代码 来源:中华人民共和国民政部 - 行政区划代码 处理: import pandas as pd aa = pd.read_clipboard() aa.head() aa.columns = ['code', 'name'] aa['id'] = aa['code'].map(lambd 阅读全文

posted @ 2021-03-17 13:47 iUpoint 阅读(154) 评论(0) 推荐(0) 编辑

2021年3月6日

tesseract安装

摘要: linux系统安装tesseract笔记 lsb_release -a 手动配置yum源 http://mirrors.163.com/.help/centos.html mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Bas 阅读全文

posted @ 2021-03-06 23:35 iUpoint 阅读(267) 评论(0) 推荐(0) 编辑

2021年2月23日

selenium笔记

摘要: selenium 元素定位方法 通过id定位元素:find_element_by_id("id_vaule") 通过name定位元素:find_element_by_name("name_vaule") 通过tag_name定位元素:find_element_by_tag_name("tag_nam 阅读全文

posted @ 2021-02-23 17:02 iUpoint 阅读(34) 评论(0) 推荐(0) 编辑

2021年2月2日

gbase笔记

摘要: 查看表结构 select TABLE_SCHEMA, TABLE_NAME, TABLE_COMMENT from information_schema.tables where TABLE_SCHEMA = 'aaa' and TABLE_NAME in ('a','b') order by TA 阅读全文

posted @ 2021-02-02 11:22 iUpoint 阅读(185) 评论(0) 推荐(0) 编辑

oracle向gbase数据迁移须知

摘要: 转载自:https://www.modb.pro/db/33058 1.字符数据类型 1.1 CLOB类型 在ORACLE中用于存储单字节字符的字符串大对象,支持各种定长、变长字符集。最大尺寸为4GB。 GBase 8a可替代的数据类型: TEXT,但最大尺寸仅为32K。 1.2 LONG类型 保存 阅读全文

posted @ 2021-02-02 10:42 iUpoint 阅读(1074) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

导航