自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(82)
  • 资源 (5)
  • 收藏
  • 关注

原创 RNN 网络结构及训练过程简介

本文通过整理李宏毅老师的机器学习教程的内容,简要介绍 RNN(recurrent neural network)的网络结构及训练过程。

2023-11-25 23:44:42 542

原创 CNN 网络结构简介

本文通过整理李宏毅老师的机器学习教程的内容,介绍 CNN(卷积神经网络)的网络结构。

2023-10-26 18:57:59 709

原创 反向传播法(backpropagation)的基本原理

本文通过整理李宏毅老师的机器学习教程的内容,介绍神经网络中用于更新参数的反向传播法(backpropagation)的基本原理。

2023-10-25 16:57:53 263

原创 Python: Django 服务部署可能遇到的一些问题

(如题)

2023-08-03 15:54:13 1330

原创 <代码分享> 分支定界算法的 Python 代码框架

本文以求解整数规划模型为例,提供分支定界算法的 Python 代码框架,期待完善、指正和交流。

2023-05-08 20:29:33 1100 1

原创 Tarjan 算法的 Python 实现

本文介绍求解有向图强连通分量的线性时间的 Tarjan 算法,并提供 Python 代码。

2023-04-12 19:37:16 458

原创 一种基于冲突的路径搜索的整数规划模型

本文介绍一种针对基于冲突的路径规划问题(conflict-based search, CBS)的整数规划模型,并提供调用 OR-Tools 和 SCIP 求解器的代码。

2023-04-05 12:02:43 467 1

原创 A* 算法的 Python 实现

本文使用 Python 语言实现 A* 算法。

2023-04-01 12:43:21 1331

原创 Dijkstra 算法的 Python 实现

本文使用 Python 语言,实现一个 Dijkstra 算法的简单算例。

2022-08-06 09:43:24 1293

原创 LeetCode 2065. Maximum Path Quality of a Graph(最大化一张图中的路径价值)

(如题)

2022-04-19 23:43:55 312

原创 Python: 通过开启新线程监测事件的方式,实现程序运行中的键盘输入监测

本文介绍通过开启新线程监测事件的方式,实现程序运行中的键盘输入监测,这种方法在远程控制 Linux 服务器时也可正常使用。

2022-04-19 22:56:40 1640

原创 Python: Windows 系统中监测键盘输入的两种方法

本文介绍 Python 程序在 Windows 系统中监测键盘输入的两种方法:keyboard 和 pynput 工具包。

2022-03-26 16:00:52 12450 2

原创 PyTorch 模型转换为 ONNX 模型的方法及应用

本文以 MNIST 图片数据集的数字识别为例,介绍 PyTorch 框架训练 CNN 模型的基本过程、 PyTorch 模型转换为 ONNX 模型的方法,以及ONNX 模型的运行。

2022-03-26 14:36:02 10061

原创 actor-critic 相关算法简述

asynchronous advantage actor-critic(A3C);pathwise derivative policy gradient;actor-critic 与 GAN 的关系

2022-03-15 22:17:16 2156

原创 DQN(deep Q-network)算法简述

基本概念;进阶技巧;连续动作的场景

2022-03-11 18:00:14 47498

原创 近端策略优化(proximal policy optimization)算法简述

本文通过整理李宏毅老师的机器学习教程的内容,简要介绍深度强化学习(deep reinforcement learning)中的近端策略优化算法(proximal policy optimization)。

2022-02-26 20:20:18 7188 1

原创 策略梯度法(policy gradient)算法简述

本文通过整理李宏毅老师的机器学习教程的内容,简要介绍深度强化学习(deep reinforcement learning)中的策略梯度法(policy gradient)。

2022-01-16 22:31:10 6752 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 5079

原创 LeetCode 9. Palindrome Number(回文数)

(如题)

2021-11-10 18:32:36 3107

原创 LeetCode 89. Gray Code(格雷编码)

(如题)

2021-11-10 17:53:43 2835

原创 LeetCode 题集:排序

LeetCode 215. Kth Largest Element in an Array(数组中的第K个最大元素)

2021-11-10 13:38:33 2605

原创 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 702

原创 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 704

原创 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 151

原创 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 216

原创 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 754 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 747 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 704 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 117

原创 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 333 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 215

原创 LeetCode 题集:回溯法和递归(二)字符串相关问题

LeetCode 131. Palindrome Partitioning(分割回文串)132. Palindrome Partitioning II(分割回文串 II)22. Generate Parentheses(括号生成)

2021-10-25 15:31:52 214

原创 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 208

原创 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 192

原创 动态规划的应用(六):矩阵相关问题

LeetCode 174. Dungeon Game(地下城游戏)

2021-10-21 17:06:01 1394

原创 动态规划的应用(五):LeetCode 413, 446. 等差数列划分

LeetCode 413. Arithmetic Slices(等差数列划分)446. Arithmetic Slices II - Subsequence(等差数列划分 II - 子序列)

2021-10-19 11:47:34 196

原创 动态规划的应用(四):LeetCode 1900. 最佳运动员的比拼回合

LeetCode 1900. The Earliest and Latest Rounds Where Players Compete(最佳运动员的比拼回合)

2021-10-15 11:32:37 250

原创 LeetCode 1525. Number of Good Ways to Split a String(字符串的好分割数目)

(如题)

2021-10-12 16:05:25 134

原创 禁忌搜索算法求解 TSP 问题的代码示例

本文以 TSP 问题为例,通过具体代码,说明禁忌搜索算法的迭代过程。

2021-10-11 12:07:39 672

原创 LeetCode 5. 最长回文子串问题的 Manacher 算法(马拉车算法)

LeetCode 5. Longest Palindromic Substring(最长回文子串)

2021-10-09 14:13:24 162

transformer 讲义, 李宏毅, 2021

李宏毅老师的 2021 年机器学习课程讲义:transformer 课程链接: https://www.bilibili.com/video/BV1Wv411h7kN?p=49 https://www.bilibili.com/video/BV1Wv411h7kN?p=50

2023-11-27

self-attention 讲义, 李宏毅, 2021

李宏毅老师的 2021 年机器学习课程讲义:self-attention 课程链接: https://www.bilibili.com/video/BV1Wv411h7kN?p=38 https://www.bilibili.com/video/BV1Wv411h7kN?p=39

2023-11-27

CNN 讲义, 李宏毅, 2021

李宏毅老师的 2021 年机器学习课程讲义:CNN(卷积神经网络)

2023-11-01

Honey Bee Swarm algorithm paper

2005, An Idea Based on Honey Bee Swarm for Numerical Optimization

2023-07-16

p-hacking paper

2011, False-Positive Psychology: Undisclosed Flexibility in Data Collection and Analysis Allows Presenting Anything as Significant

2023-07-16

2017, Sean J. Taylor, Benjamin Letham, Forecasting at Scale.pdf

Forecasting is a common data science task that helps organizations with capacity planning, goal setting, and anomaly detection. Despite its importance, there are serious challenges associated with producing reliable and high quality forecasts - especially when there are a variety of time series and analysts with expertise in time series modeling are relatively rare. To address these challenges, we describe a practical approach to forecasting "at scale" that combines configurable models with analyst-in-the-loop performance analysis. We propose a modular regression model with interpretable parameters that can be intuitively adjusted by analysts with domain knowledge about the time series. We describe performance analyses to compare and evaluate forecasting procedures, and automatically flag forecasts for manual review and adjustment. Tools that help analysts to use their expertise most effectively enable reliable, practical forecasting of business time series.

2021-03-17

Certificates of Primal or Dual Infeasibility.pdf

In this work we present a definition of a basis certificate and develop a strongly polynomial algorithm which given a Farkas type certificate of infeasibility computes a basis certificate of infeasibility.

2020-10-16

Farkas alternative and Duality Theorem.pdf

线性规划中,原问题与对偶问题的可行性分析 This set of notes proves one such theorem, called the Farkas alternative and shows that, in fact, it underpins all the duality theory of linear programming. It underlies, in fact, most of optimisaiton, itself being a particular case of the Separating Hyperplane Theorem.

2020-07-20

leaflet.extras.pdf

R语言的leaflet包使用说明,可用于以地图为背景的热力图绘制 注:本文件只含有leaflet包的额外功能,而非基本功能,如只需基本功能的说明,请查询leaflet.pdf

2020-06-17

leaflet.pdf

R语言的leaflet包使用说明,可用于以地图为背景的经纬度位置的可视化 注:本文件只含有leaflet的使用说明,不含leaflet.extra的使用说明

2020-06-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除