ICode9

精准搜索请尝试: 精确搜索
  • Open CASCADE Technology 7.6.3 maintenance release2022-07-28 19:00:07

    Open Cascade is pleased to announce that the next Open CASCADE Technology (OCCT) maintenance release (version 7.6.3) is prepared. The sources of Open CASCADE Technology 7.6.3 are available under the V7_6_3 tag in the OCCT repository. This maintenance rele

  • C++实现BF、RK、KMP和BM~Qt6完成GUI2022-07-05 22:03:13

      项目   用C++实现了4个经典的字符串模式匹配算法:BF、RK、KMP和BM,并用Qt6完成了GUI。为了便于直观有效地对4个算法进行测试和对比,设计了3种测试模式:   1. 单处理;     使用一个测试数据对单个算法进行测试,查看耗时以及结果是否正确;   2. 批处理1;     使用整个数

  • 【Matlab】新学知识及问题解决2022-05-27 21:34:23

    一、matlab 中函数“vision.x”的理解 MATLAB2012a及其更高版本中的Computer Vision System中的一大特点就是采用系统对象(System Object)进行编程,其提供了涉及视频显示、视频读写、特征检测、提取与匹配、目标检测、运动分析与跟踪、分析与增强、图像转换、滤波、几何变换、数学形

  • 算法导论 第四版 电子书 pdf2022-04-11 21:04:16

    Introduction to Algorithms, Fourth Edition   关注公众号:红宸笑。 回复:电子书 即可  

  • F. Vitaly and Advanced Useless Algorithms(贪心+dp)2022-03-29 14:34:10

    F. Vitaly and Advanced Useless Algorithms Tag dp 贪心 rating2200 题目链接 https://codeforces.ml/contest/1650/problem/F 题目大意 有n个任务需要完成,每个任务都有对应的ddl,记为数组a,每个任务的完成度必须到达100%才算完工 现在有m个选择,每个选择会对应3个属性 \(e\)

  • What to account for when accounting for algorithms2022-02-28 13:58:17

    What to account for when accounting for algorithms A systematic literature review on algorithmic accountability Maranke Wieringa m.a.wieringa@uu.nl Datafied Society Utrecht University Utrecht, The Netherlands ABSTRACT As research on algorithms and their

  • [Algorithms]二叉树遍历方法与代码实现2022-02-22 11:34:54

    [Algorithms]二叉树、图遍历方法与代码实现 1. 二叉树遍历方法 首先,是本文使用二叉树结构的一个声明。 typedef struct BiTNode { char data; struct BiTNode *lchild,*rchild; }BiTNode,*BiTree; 一、前序遍历 原理:若二叉树为空,则空操作返回,否则先访问根节点,然后前序遍历

  • [VOSViewer] 合并同义词、删除指定词语2022-02-07 14:03:03

    1. 在哪一步可以进行该操作 在选完导入的数据之后,“Thesaurus file” 这个选项即是VOSviewer官方设置用来合并同义词,以及删除指定词语的。 将鼠标移到旁边的问号处,即可看到相关的解释。 2. Thesaurus file怎么用 最好的办法还是参考官方文档,下载VOSViewer后,在下图的位置可以

  • 启发式算法 元启发式算法 超启发式算法 区别 是什么2022-02-06 15:02:42

    启发式算法 (Heuristic Algorithms) 是基于直观或经验构造的算法,在可接受的花费 (指计算时间、占用空间等) 下给出待解决组合优化问题每一个实例的一个可行解,该可行解与最优解的偏离程度不一定事先可以预计。 元启发式算法 (Meta-Heuristic Algorithms) 是启发式算法的改进,通常

  • mdpi Algorithms 期刊word 模板下载2022-01-25 11:02:41

    目录 1.期刊官网:Algorithms | An Open Access Journal from MDPI  2.作者须知:Algorithms | Instructions for Authors 3. 模板文件地址:https://www.mdpi.com/files/word-templates/algorithms-template.dot 1.期刊官网:Algorithms | An Open Access Journal from MDPI  2.作

  • leetcode-Algorithms-1716|计算力扣银行的钱2022-01-15 17:33:39

    原题 Hercy 想要为购买第一辆车存钱。他 每天 都往力扣银行里存钱。 最开始,他在周一的时候存入 1 块钱。从周二到周日,他每天都比前一天多存入 1 块钱。在接下来每一个周一,他都会比 前一个周一 多存入 1 块钱。 给你 n ,请你返回在第 n 天结束的时候他在力扣银行总共存了多少

  • RTK-Mannual-4 Models and Algorithms2022-01-05 11:40:45

    本目录中简要描述了RTKLIB中的模型和算法。 1、时间系统    1、GPST和UTC(Universal Time Coordinated)      2)GLONASST(GLONASS Time) 3)GST(Galileo System Time) 4)QZSST(QZSS Time) 5)BDT 2、坐标系系统 、、、 3、GNSS 信号测量 其他参考手册    4、GNSS卫星星历和

  • Classification of different congestion control algorithms. Dotted arrows indicate that one was based2022-01-02 09:34:13

    Loss-based  algorithms---Tahoe  Reno  NewReno  SCTP  HS-TCP  H-TCP  Hybla  BIC  Cubic  Westwood  Westwood+  TCPW-A  LogWestwood+Delay-based  algorithms---DUAL  Vegas  Vegas+  VegasA  NewVegas  FAST  VFAST  LoLa  TIMELYHybrid  algorithms

  • Benchmarking Model-Based Reinforcement Learning2021-12-23 11:35:47

    发表时间:2019 文章要点:这篇文章就和标题一样,做了很多个model based RL的benchmark。提供了11种 MBRL和4种MFRL算法以及18个环境。文章把MBRL算法分成三类: Dyna-style Algorithms Policy Search with Backpropagation through Time Shooting Algorithms 然后给出了实验结果 总

  • 特征选择的三类方法2021-12-20 12:34:37

    (原创) 本文总结特征选择的三类方法  1 过滤Filter methods: (1)信息增益 information gain(2)chi-square test(3)fisher score(4)相关系数correlation coefficient(5)方差阈值 variance threshold 2 包装Wrapper methods: (1)recursive feature elimination(2)sequential feature selection algo

  • [ 机器学习 - 吴恩达 ] | 1-2 What is machine learning2021-11-20 20:01:53

    Machine learning definition Arthur Samuel (1959). Machine Learning: Field of study that gives computers the ability to learn without being explicitly (明确地) programmed. (在没有明确地设置下,使计算机具有学习能力的研究领域) Tom Michell (1998). Well-posed (适当

  • name ‘_C‘ is not defined(pytorch1.9.0在jupyter notebook上报错)2021-10-14 19:59:33

    NameError Traceback (most recent call last) in 1 from algorithms import Argparser ----> 2 from algorithms import Session 3 def main(): 4 print("main started") 5 args = Argparser.parse() D:\git\stav\stav-rl\algorithms\Session.py in 12 13

  • 近端策略优化算法(Proximal Policy Optimization Algorithms, PPO)2021-10-12 10:01:27

    近端策略优化算法(Proximal Policy Optimization Algorithms, PPO) 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/     这篇博文是Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. Advances in Ne

  • 论文归类12021-09-27 12:00:00

    1.求解线性(非线性)方程组(前4篇是变分方法) (1)Bravo-Prieto C, LaRose R, Cerezo M, et al. Variational quantum linear solver: a hybrid algorithm for linear systems. Bull Amer Phys Soc 2020;65:1 . (2)Variational quantum linear solver with dynamic  ansatz (3)Variational

  • Design and Analysis of Algorithms2021-09-24 16:02:41

    目录绪论 绪论 G座112 han_jun@buaa.edu.cn 分治,减治法,变治法,transform divide and conquer的核心:merge部分对计算量的节省 dynamic programming:trade memory for speed,具有交叠子问题的良药 approximation algorithms: trade accuracyf for speed randomized algorithm: tra

  • Evaluating the Performance of Reinforcement Learning Algorithms2021-09-20 13:04:53

    发表时间:2020(ICML 2020) 文章要点:文章指出RL复现难的原因在于评价指标不一致。作者提出评估指标应该满足四点:1. Scientific,主要说你这个指标提供的信息要告诉别人针对某个具体的问题或假设,得出了什么结论,这个结论有没有考虑各种不确定性可能造成的问题。2. Usability,主要是说你

  • Benchmarking Batch Deep Reinforcement Learning Algorithms2021-09-04 02:31:06

    发表时间:2019 文章要点:这篇文章主要是针对batch RL做了一个离散动作空间的benchmark,对比了DQN和一些batch RL算法的性能(DQN,REM,QR-DQN,KL-Control,BCQ)。并且把BCQ从连续动作空间改成适用离散动作空间,取得了SOTA的效果。作者得出的结论是,要想batch RL效果好,就要考虑外推误差(extrapola

  • MEASURING THE RELIABILITY OF REINFORCEMENT LEARNING ALGORITHMS2021-08-23 08:31:46

    发表时间:2020(ICLR 2020) 文章要点:这篇文章设计了几个指标来度量RL算法的可靠性。这个可靠性主要是指训练过程稳不稳定啦,算法训练是不是可复现啦,训好的模型的performance是不是稳定呀balabala。整个设计指标还是很简单的。其实一共设计了两个指标(dispersion:the width of a distribu

  • 【算法·Algorithms】算法目录2021-08-13 15:31:53

    3. Dynamic Programming links dp 分类: LIS | LCS 区间dp( OI 区间dp | dp区间入门) Sum: k n 问题 int waysOfSumGreater(int n,int k){ int dp[n+2][n+2]; memset(dp,0,sizeof(dp)); for(int i=1;i<n+1;i++){ dp[i][i]=1; for(int j=i-1;j>=1

  • leetcode-Algorithms-581|最短无序连续子数组2021-08-03 20:33:18

    原题 给你一个整数数组 nums ,你需要找出一个 连续子数组 ,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。 请你找出符合题意的 最短 子数组,并输出它的长度。 示例 1: 输入:nums = [2,6,4,8,10,9,15] 输出:5 解释:你只需要对 [6, 4, 8, 10, 9] 进行升序排序,那

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有