1. scikit learn PCA类介绍 在scikit learn中,与PCA相关的类都在sklearn.decomposition包中。最常用的PCA类就是sklearn.decomposition.PCA,我们下面主要也会讲解基于这个类的使用的方法。 除了PCA类以外,最常用的PCA相关类 ...
分类:
其他好文 时间:
2020-05-03 20:29:40
阅读次数:
70
本篇参考:https://developer.salesforce.com/blogs/2018/07/which-streaming-event-do-i-use.html https://trailhead.salesforce.com/content/learn/modules/platfor ...
分类:
其他好文 时间:
2020-05-03 00:46:44
阅读次数:
83
xadmin中的用法: class NewCourseAdmin: list_display = ['name', 'detail', 'degree', 'learn_times', 'students'] list_editable = ['degree', 'desc'] def querys ...
分类:
其他好文 时间:
2020-05-02 00:11:28
阅读次数:
242
程序来自莫烦Python,略有删减和改动。 import os import torch import torch.nn as nn import torch.utils.data as Data import torchvision import matplotlib.pyplot as plt ...
分类:
其他好文 时间:
2020-05-01 16:23:34
阅读次数:
82
[toc] Copy ArrayList的四种方式 简介 ArrayList是我们经常会用到的集合类,有时候我们需要拷贝一个ArrayList,今天向大家介绍拷贝ArrayList常用的四种方式。 使用构造函数 ArrayList有个构造函数,可以传入一个集合: ~~~java public Arr ...
分类:
其他好文 时间:
2020-05-01 10:47:54
阅读次数:
57
2-1简单消息: 1 #2-1 简单消息 2 mesage = 'Hello World' 3 print(mesage) 注意,将变量定义为那一串字符串,字符串是需要引号扩起的 2-2多条简单消息: #2-2 多条简单消息 mesage = 'Hello World' print(mesage) ...
分类:
其他好文 时间:
2020-05-01 10:23:58
阅读次数:
81
事务如何书写 参考文档: https://learnku.com/articles/40908 ...
分类:
其他好文 时间:
2020-04-30 15:50:15
阅读次数:
140
TF IDF基础: TF IDF(Term Frequency InversDocument Frequency)是一种常用于信息处理和数据挖掘的加权技术。该技术采用一种统计方法,根据字词的在文本中出现的次数和在整个语料中出现的文档频率来计算一个字词在整个语料中的重要程度。它的优点是能过滤掉一些常见 ...
分类:
其他好文 时间:
2020-04-30 12:01:23
阅读次数:
88
refer: https://deerchao.cn/tutorials/regex/regex.htm https://www.regextester.com/97209 在线测试 https://github.com/ziishaned/learn-regex/blob/master/trans ...
分类:
其他好文 时间:
2020-04-29 09:11:25
阅读次数:
87
Find max packet size I used the code above to find the max size of a UDP packet size by default configuration. The result on my computer is: More test ...
分类:
编程语言 时间:
2020-04-27 19:34:54
阅读次数:
117