- 博客(83)
- 资源 (5)
- 收藏
- 关注
原创 RNN 网络结构及训练过程简介
本文通过整理李宏毅老师的机器学习教程的内容,简要介绍 RNN(recurrent neural network)的网络结构及训练过程。
2023-11-25 23:44:42
1383
1
原创 反向传播法(backpropagation)的基本原理
本文通过整理李宏毅老师的机器学习教程的内容,介绍神经网络中用于更新参数的反向传播法(backpropagation)的基本原理。
2023-10-25 16:57:53
447
原创 <代码分享> 分支定界算法的 Python 代码框架
本文以求解整数规划模型为例,提供分支定界算法的 Python 代码框架,期待完善、指正和交流。
2023-05-08 20:29:33
1422
原创 一种基于冲突的路径搜索的整数规划模型
本文介绍一种针对基于冲突的路径规划问题(conflict-based search, CBS)的整数规划模型,并提供调用 OR-Tools 和 SCIP 求解器的代码。
2023-04-05 12:02:43
585
1
原创 Python: 通过开启新线程监测事件的方式,实现程序运行中的键盘输入监测
本文介绍通过开启新线程监测事件的方式,实现程序运行中的键盘输入监测,这种方法在远程控制 Linux 服务器时也可正常使用。
2022-04-19 22:56:40
1817
原创 Python: Windows 系统中监测键盘输入的两种方法
本文介绍 Python 程序在 Windows 系统中监测键盘输入的两种方法:keyboard 和 pynput 工具包。
2022-03-26 16:00:52
14081
2
原创 PyTorch 模型转换为 ONNX 模型的方法及应用
本文以 MNIST 图片数据集的数字识别为例,介绍 PyTorch 框架训练 CNN 模型的基本过程、 PyTorch 模型转换为 ONNX 模型的方法,以及ONNX 模型的运行。
2022-03-26 14:36:02
10344
原创 actor-critic 相关算法简述
asynchronous advantage actor-critic(A3C);pathwise derivative policy gradient;actor-critic 与 GAN 的关系
2022-03-15 22:17:16
2390
原创 近端策略优化(proximal policy optimization)算法简述
本文通过整理李宏毅老师的机器学习教程的内容,简要介绍深度强化学习(deep reinforcement learning)中的近端策略优化算法(proximal policy optimization)。
2022-02-26 20:20:18
8208
1
原创 策略梯度法(policy gradient)算法简述
本文通过整理李宏毅老师的机器学习教程的内容,简要介绍深度强化学习(deep reinforcement learning)中的策略梯度法(policy gradient)。
2022-01-16 22:31:10
7033
2
原创 LeetCode 题集:字典树
LeetCode 208. Implement Trie (Prefix Tree)(实现 Trie (前缀树))211. Design Add and Search Words Data Structure(添加与搜索单词 - 数据结构设计)212. Word Search II(单词搜索 II)
2021-11-10 20:28:34
5205
原创 LeetCode 题集:排序
LeetCode 215. Kth Largest Element in an Array(数组中的第K个最大元素)
2021-11-10 13:38:33
2711
原创 LeetCode 题集:链表(三)
LeetCode 19. Remove Nth Node From End of List(删除链表的倒数第 N 个结点)203. Remove Linked List Elements(移除链表元素)61. Rotate List(旋转链表)
2021-11-10 12:44:58
776
原创 LeetCode 题集:链表(二)
LeetCode 2. Add Two Numbers(两数相加)445. Add Two Numbers II(两数相加 II)83. Remove Duplicates from Sorted List(删除排序链表中的重复元素)82. Remove Duplicates from Sorted List II(删除排序链表中的重复元素 II)21. Merge Two Sorted Lists(合并两个有序链表)88. Merge Sorted Array(合并两个有序数组)
2021-11-10 11:01:44
783
原创 LeetCode 题集:链表(一)
LeetCode 141. Linked List Cycle(环形链表)142. Linked List Cycle II(环形链表 II)206. Reverse Linked List(反转链表)92. Reverse Linked List II(反转链表 II)24. Swap Nodes in Pairs(两两交换链表中的节点)
2021-11-08 22:54:41
202
原创 LeetCode 题集:栈和队列
LeetCode 232. Implement Queue using Stacks(用栈实现队列)225. Implement Stack using Queues(用队列实现栈)150. Evaluate Reverse Polish Notation(逆波兰表达式求值)71. Simplify Path(简化路径)155. Min Stack(最小栈)20. Valid Parentheses(有效的括号)
2021-11-08 12:33:06
310
原创 LeetCode 题集:二分搜索(二)
LeetCode 33. Search in Rotated Sorted Array(搜索旋转排序数组)81. Search in Rotated Sorted Array II(II)153. Find Minimum in Rotated Sorted Array(寻找旋转排序数组中的最小值)154. Find Minimum in Rotated Sorted Array II(II)4. Median of Two Sorted Arrays(寻找两个正序数组的中位数)
2021-11-05 15:13:20
806
1
原创 LeetCode 题集:二分搜索(一)
LeetCode 278. First Bad Version(第一个错误的版本)35. Search Insert Position(搜索插入位置)74. Search a 2D Matrix(搜索二维矩阵)240. Search a 2D Matrix II(搜索二维矩阵 II)69. Sqrt(x)
2021-11-05 14:26:10
787
1
原创 LeetCode 题集:两指针法
LeetCode 167. Two Sum II - Input Array Is Sorted(两数之和 II - 输入有序数组)15. 3Sum(三数之和)18. 4Sum(四数之和)344. Reverse String(反转字符串)
2021-11-05 11:32:57
763
1
原创 LeetCode 题集:二叉树遍历
LeetCode 105. Construct Binary Tree from Preorder and Inorder Traversal(从前序与中序遍历序列构造二叉树)106. Construct Binary Tree from Inorder and Postorder Traversal(从中序与后序遍历序列构造二叉树)
2021-11-04 16:46:11
178
原创 LeetCode 题集:深度优先搜索(DFS)、广度优先搜索(BFS)
LeetCode 110. Balanced Binary Tree(平衡二叉树)111. Minimum Depth of Binary Tree(二叉树的最小深度)112. Path Sum(路径总和)113. Path Sum II(路径总和 II)102. Binary Tree Level Order Traversal(二叉树的层序遍历)
2021-11-03 18:27:06
428
1
原创 LeetCode 题集:回溯法和递归(三)矩阵相关问题
LeetCode 79. Word Search(单词搜索)54. Spiral Matrix(螺旋矩阵)59. Spiral Matrix II(螺旋矩阵 II)51. N-Queens(N 皇后)52. N-Queens II(N皇后 II)
2021-11-03 11:12:27
290
原创 LeetCode 题集:回溯法和递归(二)字符串相关问题
LeetCode 131. Palindrome Partitioning(分割回文串)132. Palindrome Partitioning II(分割回文串 II)22. Generate Parentheses(括号生成)
2021-10-25 15:31:52
311
原创 LeetCode 题集:回溯法和递归(一)数组相关问题
LeetCode 46. Permutations(全排列)47. Permutations II(全排列 II)39. Combination Sum(组合总和)40. Combination Sum II(组合总和 II)77. Combinations(组合)78. Subsets(子集)90. Subsets II(子集 II)
2021-10-23 17:29:54
288
原创 LeetCode 题集:哈希表
LeetCode 1. Two Sum(两数之和)290. Word Pattern(单词规律)49. Group Anagrams(字母异位词分组)205. Isomorphic Strings(同构字符串)166. Fraction to Recurring Decimal(分数到小数)
2021-10-22 18:16:58
257
原创 动态规划的应用(五):LeetCode 413, 446. 等差数列划分
LeetCode 413. Arithmetic Slices(等差数列划分)446. Arithmetic Slices II - Subsequence(等差数列划分 II - 子序列)
2021-10-19 11:47:34
264
原创 动态规划的应用(四):LeetCode 1900. 最佳运动员的比拼回合
LeetCode 1900. The Earliest and Latest Rounds Where Players Compete(最佳运动员的比拼回合)
2021-10-15 11:32:37
335
transformer 讲义, 李宏毅, 2021
2023-11-27
self-attention 讲义, 李宏毅, 2021
2023-11-27
Honey Bee Swarm algorithm paper
2023-07-16
p-hacking paper
2023-07-16
2017, Sean J. Taylor, Benjamin Letham, Forecasting at Scale.pdf
2021-03-17
Certificates of Primal or Dual Infeasibility.pdf
2020-10-16
Farkas alternative and Duality Theorem.pdf
2020-07-20
leaflet.extras.pdf
2020-06-17
leaflet.pdf
2020-06-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人