上一页 1 ··· 95 96 97 98 99 100 101 102 103 ··· 106 下一页
摘要: Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each va 阅读全文
posted @ 2018-08-21 15:43 lypbendlf 阅读(406) 评论(0) 推荐(0)
摘要: The K−P factorization of a positive integer N is to write N as the sum of the P-th power of K positive integers. You are supposed to write a program t 阅读全文
posted @ 2018-08-20 23:46 lypbendlf 阅读(234) 评论(0) 推荐(0)
摘要: There is a classical process named partition in the famous quick sort algorithm. In this process we typically choose one element as the pivot. Then th 阅读全文
posted @ 2018-08-20 19:19 lypbendlf 阅读(169) 评论(0) 推荐(0)
摘要: 1.学习大数据集 图1.学习大数据集 当数据集量为m=1亿时,进行梯度下降将会花费较大时间。 可以使用小量数据集进行训练,然后得出学习曲线。 左图是高方差,右图是高偏差。 总之是要通过高效的学习算法来进行大数据学习。 2.随机梯度下降 图2.批梯度下降 假设是美国人口普查的数据,m=3亿,如果需要每 阅读全文
posted @ 2018-08-20 12:08 lypbendlf 阅读(160) 评论(0) 推荐(0)
摘要: Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional 阅读全文
posted @ 2018-08-20 11:33 lypbendlf 阅读(129) 评论(0) 推荐(0)
摘要: Behind the scenes in the computer's memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color 阅读全文
posted @ 2018-08-20 10:30 lypbendlf 阅读(158) 评论(0) 推荐(0)
摘要: Shuffling is a procedure used to randomize a deck of playing cards. Because standard shuffling techniques are seen as weak, and in order to avoid "ins 阅读全文
posted @ 2018-08-19 20:31 lypbendlf 阅读(204) 评论(0) 推荐(0)
摘要: An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any 阅读全文
posted @ 2018-08-19 18:39 lypbendlf 阅读(191) 评论(0) 推荐(0)
摘要: A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes 阅读全文
posted @ 2018-08-19 12:06 lypbendlf 阅读(131) 评论(0) 推荐(0)
摘要: 1.问题规划 图1.推荐系统在研究什么? 例子:预测电影的评分。 当知道n_u用户数,n_m电影数;r(i,j)用户j评价了电影i,那么就是1;y(i,j)如果r(i,j)为1,那么就给出评分。 问题就是根据现有数据训练学习算法,预测未评分的电影。 2.基于内容的推荐算法 图2.基于内容的推荐系统 阅读全文
posted @ 2018-08-18 19:06 lypbendlf 阅读(131) 评论(0) 推荐(0)
上一页 1 ··· 95 96 97 98 99 100 101 102 103 ··· 106 下一页