- 博客(29)
- 资源 (1)
- 收藏
- 关注
原创 Maven配置文件说明(依赖,插件等)
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://...
2019-07-18 23:40:47 167
原创 寻找二叉树的所有路径
我们有时需要将libsvm形式的文件,转回所需要的特征与标签def read_data_from_libsvm(file_path): """ 用来从libsvm格式的文件读取信息,然后进行返回特征的ndarray以及标签的ndarray :param file_path: libsvm格式的文件 :return: """ train_data =...
2019-05-13 16:32:19 552
原创 genism格式的tfidf转成sklearn版本的tdidf
gensim返回的tfidf的格式是长这样的[[(0, 0.33699829595119235), (1, 0.8119707171924228), (2, 0.33699829595119235), (4, 0.33699829595119235)],[(0, 0.10212329019650272), (2, 0.10212329019650272), (4, 0.102123290196...
2019-05-13 16:30:04 325
原创 tf.argmax、tf.equal、tf.cast、tf.reduce_mean函数的极简介绍
一、函数功能描述tf.argmax(a,1)指在张量a的第一维度找到最大值的下标,并返回ndarraytf.equal(a, b)指将a和b中对应相同的项标为True,其余的标记为False,前提是a与b得相同shapetf.cast(equal, tf.float32)是指将equal中的True标为浮点1,False标为浮点0tf.reduce_mean(test)指将test中的为1...
2019-04-30 14:31:05 637
转载 周志华《机器学习》课后习题解答系列(六)
https://blog.csdn.net/snoopy_yuan/article/details/71703220
2018-12-02 17:21:31 1875
转载 十大经典排序算法最强总结(含JAVA代码实现)
https://www.cnblogs.com/guoyaohua/p/8600214.html
2018-12-02 16:57:25 390 1
转载 NLP入门+实战必读:一文教会你最常见的10种自然语言处理技术(附代码)
标题原文链接:https://yq.aliyun.com/articles/236723?utm_content=m_34634
2018-12-02 16:56:52 663
转载 word2vec 中的数学原理详解
word2vec 中的数学原理详解:https://blog.csdn.net/itplus/article/details/37969817
2018-12-02 16:55:38 259
转载 Ubuntu16.04下使用sublime text3搭建Python IDE
基本还算详细了原文链接: https://www.cnblogs.com/unflynaomi/p/5704293.html
2018-12-02 16:14:24 216
原创 python文件读写编码问题
with open(src, ‘rb’) as f:lines = f.read().decode(“utf-8”).split(’\r\n’)使用二级制读入,然后选择编码解析def get_aydm():src = “C:\民事一审out\msaymc_aydm.txt”aydm_dict = {}with open(src, ‘rb’) as f:lines = f.read()...
2018-11-28 17:06:52 755
转载 Cascade下的增删改查
User.javaimport javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @T
2018-05-06 17:32:38 486
转载 hibernate的多对多双向外键关联
import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @Table(n...
2018-05-06 15:07:35 208
转载 hibernate之多对多单向关联
import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @Table(name
2018-05-06 15:03:25 195
转载 Hibernate Annotation 一对多/多对一双向关联
User.javaimport javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @T
2018-05-06 14:35:28 181
转载 Hibernate Annotation 一对多单向关联
group里面存在一个set< User >,这是要做一个一对多的单向关联 Group类import java.util.HashSet; import java.util.Set; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id
2018-05-06 14:29:07 142
转载 Hibernate Annotation 多对一单向关联
Group类import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="t_group") public class Group
2018-05-06 14:21:15 154
转载 hibernate之一对一双向关联
wife类import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; @Entity(name="wife1") public class Wife { pr
2018-05-06 14:14:42 244
转载 hibernate之一对一单向外键关联
Wife类import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Wife { private int id; private String name; @Id
2018-05-06 14:00:23 304
转载 java保留小数位数的方法以及取整的方法
@Test public void quzheng(){ double f = 1.2253322; System.out.println("BigDecimal转换"); BigDecimal bg = new BigDecimal(f); double f1 = bg.setScale(2, BigDecimal.ROUND
2018-05-05 19:54:00 2914
转载 lambda表达式记录
这是一个别人文章的记录,详情请转往链接所在的地址 http://zh.lucida.me/blog/java-8-lambdas-insideout-language-features/摘要: 1、lambda 表达式的参数类型可以从目标类型中得出Comparator<String> c = (s1, s2) -> s1.compareToIgnoreCase(s2)...
2018-05-05 19:10:03 120
转载 java泛型的一些介绍
一、泛型类 创建一个泛型类,是指明该类持有一个泛型 static class Test<T> { private T ob; // 定义泛型成员变量 public Test(T ob) { this.ob = ob; } public T getOb() { ...
2018-05-05 18:39:56 145
原创 List的一些使用方法
import java.io.*;import java.util.*;/** * description:这里是list的使用方法说明 * Created by gaoyw on 2018/5/2. */public class ListJDK { static List<Person> srcList; static { srcList=new Arr
2018-05-03 23:32:01 716
原创 Map类的一些使用技巧
import java.util.*;/** * description:map的一些用法 * Created by gaoyw on 2018/5/2. */public class MapJDK { public static Map<String, String> map; static { map = new HashMap<String, Stri
2018-05-03 23:13:59 199
原创 String类的一些使用技巧
/** * description:这里是string的一些方法的使用说明 * Created by gaoyw on 2018/5/2. */public class StringJDK { /** * 将字符串变成一个字符数组 */ public static void tocharyArry() { System.out.printl
2018-05-03 23:12:26 188
原创 scanner类的一些使用方法
import java.util.Arrays;import java.util.Scanner;/** * description: * Created by gaoyw on 2018/4/30. */public class ScannerTest { public static void testScanner(){ Scanner reader=new Sc
2018-05-03 23:11:28 222
原创 TensorFlow的gpu版本在windows下安装指南
当前环境描述:Win10 64位,Python3.6目标:安装使用TensorFlow1.6-GPU所需文件:Cuda9.0、Cudnn7.0注意:安装Cuda9.1 & Cudnn7.1的环境下将不能正常使用TF1.6-GPU1、下载安装Cuda9.0网址:https://developer.nvidia.com/cuda-90-download-archive?target_os=Wi...
2018-03-22 13:32:32 3399 2
tesnorflow搭建神经网络训练lris鸢尾花分类(代码和数据)
2019-04-30
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人