03 2020 档案

tmp-动态规划-迷宫走法
摘要:https://www.cnblogs.com/Kobe10/p/6357526.html#include <iostream> using namespace std; //dp[i][j] = dp[i-1][j] + dp[i][j-1]; int get_steps_num(int* a, 阅读全文

posted @ 2020-03-31 16:35 TMatrix52 阅读(185) 评论(0) 推荐(0)

回溯法-走迷宫
摘要:https://blog.csdn.net/YF_Li123/article/details/70294690 阅读全文

posted @ 2020-03-30 10:16 TMatrix52 阅读(114) 评论(0) 推荐(0)

Sampling-Bias-Corrected Neural Modeling for Large Corpus Item Recommendations
摘要:https://cloud.tencent.com/developer/article/1556169 http://yougth.top/2019/09/21/2019Recsys%E5%8F%82%E4%BC%9A%E6%B5%81%E6%B0%B4%E8%AE%B0%E5%BD%95/ 阅读全文

posted @ 2020-03-29 22:52 TMatrix52 阅读(630) 评论(0) 推荐(0)

动态规划---01背包问题
摘要:https://www.cnblogs.com/christal-r/p/dynamic_programming.html 定义V(i,j):当前背包容量 j,前 i 个物品最佳组合对应的价值; 其中V(i-1,j)表示不装,V(i-1,j-w(i))+v(i) 表示装了第i个商品,背包容量减少w( 阅读全文

posted @ 2020-03-29 21:36 TMatrix52 阅读(94) 评论(0) 推荐(0)

atoi函数实现
摘要:#include<iostream> #include <stdio.h> #include <stack> #include <string> #include <vector> #include <math.h> #include <limits.h> using namespace std; 阅读全文

posted @ 2020-03-29 17:09 TMatrix52 阅读(138) 评论(0) 推荐(0)

动态规划-最长公共子序列&最长公共子串
摘要:https://blog.csdn.net/lisonglisonglisong/article/details/41548557 https://www.kancloud.cn/digest/pieces-algorithm/163624 https://zhuanlan.zhihu.com/p/ 阅读全文

posted @ 2020-03-29 14:54 TMatrix52 阅读(136) 评论(0) 推荐(0)

逻辑回归 logistics regression 公式推导
摘要:https://zhuanlan.zhihu.com/p/44591359 阅读全文

posted @ 2020-03-26 18:28 TMatrix52 阅读(99) 评论(0) 推荐(0)

下载anaconda -清华大学开源软件镜像站
摘要:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 阅读全文

posted @ 2020-03-26 14:01 TMatrix52 阅读(920) 评论(0) 推荐(0)

谷歌机器学习
摘要:https://developers.google.com/machine-learning/crash-course/regularization-for-simplicity/video-lecture?hl=zh-cn 阅读全文

posted @ 2020-03-25 12:43 TMatrix52 阅读(113) 评论(0) 推荐(0)

Pycharm使用conda安装的环境
摘要:https://zhuanlan.zhihu.com/p/39542494 阅读全文

posted @ 2020-03-25 11:15 TMatrix52 阅读(539) 评论(0) 推荐(0)

Deep Interest Network for Click-Through Rate Prediction
摘要:https://zhuanlan.zhihu.com/p/39439947 https://zhuanlan.zhihu.com/p/54085498 视频:http://www.itdks.com/Home/Course/detail?id=3166 阅读全文

posted @ 2020-03-24 08:08 TMatrix52 阅读(126) 评论(0) 推荐(0)

选择排序
摘要:https://www.cnblogs.com/kkun/archive/2011/11/23/2260281.html#include<iostream> #include <stdio.h> #include <stack> using namespace std; void select_so 阅读全文

posted @ 2020-03-23 12:19 TMatrix52 阅读(106) 评论(0) 推荐(0)

反转链表
摘要:#include<iostream> #include <stack> #include <algorithm> #include <string> using namespace std; typedef struct ListNode { int data; struct ListNode* n 阅读全文

posted @ 2020-03-21 20:22 TMatrix52 阅读(138) 评论(0) 推荐(0)

409. 最长回文串
摘要:给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。 在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串。 注意:假设字符串的长度不会超过 1010。 示例 1: 输入: "abccccdd" 输出: 7 解释: 我们可以构造的最长的回文串是"dccac 阅读全文

posted @ 2020-03-19 15:26 TMatrix52 阅读(127) 评论(0) 推荐(0)

Python 模块 | multiprocessing
摘要:https://juejin.im/post/5c07b27af265da611b58234c multiprocessing.Process multiprocessing.Queue 阅读全文

posted @ 2020-03-17 17:17 TMatrix52 阅读(120) 评论(0) 推荐(0)

Tree-based Deep Match --- 深度树匹配模型(TDM)
摘要:https://blog.csdn.net/XindiOntheWay/article/details/85220342 https://www.jianshu.com/p/ef3caa5672c8 https://myslide.cn/slides/10614# https://github.co 阅读全文

posted @ 2020-03-17 14:53 TMatrix52 阅读(1150) 评论(0) 推荐(0)

lr
摘要: 阅读全文

posted @ 2020-03-02 17:09 TMatrix52 阅读(110) 评论(0) 推荐(0)

numpy.pad 用法
摘要:https://docs.scipy.org/doc/numpy/reference/generated/numpy.pad.htmlhttps://cugtyt.github.io/blog/2017/11022006.html>>> import numpy as np >>> a = np.a 阅读全文

posted @ 2020-03-01 17:09 TMatrix52 阅读(165) 评论(0) 推荐(0)

导航