码迷,mamicode.com
首页 >  
搜索关键字:diff patch    ( 4162个结果
Lesson2 基于表格法求解RL
基于表格法求解RL 中相关概念 含义 S state 状态(observe) A action 动作 R reward 奖励 P probability 状态转移概率 MDP Markov Decision Processes 马尔科夫决策过程(强化学习的基本框架) TD Temporal Diff ...
分类:其他好文   时间:2020-06-26 22:02:30    阅读次数:52
python超时跳过当前语句的方法
需要安装eventlet库 import time import eventlet # 最开始加上这条语句 eventlet.monkey_patch() #设置超时时间为10秒 with eventlet.Timeout(10,False): # 此处编写可能超时的语句,超时则会跳出这段语句 ti ...
分类:编程语言   时间:2020-06-26 12:33:58    阅读次数:138
基于mykernel 2.0编写一个操作系统内核
一、实验步骤及过程 1.下载Linux内核并进行配置、运行: wget https://raw.github.com/mengning/mykernel/master/mykernel-2.0_for_linux-5.4.34.patch(这一步从群里下载直接复制过来即可) sudo apt ins ...
分类:其他好文   时间:2020-06-25 19:19:24    阅读次数:55
Spring:MVC启动时的WebApplicationContext的关系
在整合了SpringMVC的应用中,其实存在两个上下文容器,即两个WebApplicationContext,这两个容器是什么关系呢?且看分析。 1、Servlet启动顺序是先调用listener的监听方法,再调用servlet的init()方法。 2、Spring中存在一个ContextLoade ...
分类:移动开发   时间:2020-06-25 17:17:46    阅读次数:64
8.二叉树的diff算法,查看并输出二叉树不同的地方(JavaScript版)
查看并输出二叉树不同的地方: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> < ...
分类:编程语言   时间:2020-06-24 20:04:26    阅读次数:69
HDU - 1260 Tickets
题目: Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this is really a tuff time for Joe who sells the film tickets. ...
分类:其他好文   时间:2020-06-24 19:34:23    阅读次数:52
Centos7 安装 Cacti 1.2
1. 安装web server(略) 注意系统时间/时区 ntp server是否定时同步 2. 安装 mysql 5.7 (略) 安装成功后 2.1 编辑 my.ini 文件在 [mysqld] 下面添加以下内容 [mysqld] collation_server = utf8mb4_unicod ...
分类:其他好文   时间:2020-06-24 19:31:37    阅读次数:192
Tinyrender-Lesson 2 Triangle rasterization and back face culling
Tinyrender-Lesson 2 Triangle rasterization and back face culling 原文:https://github.com/ssloy/tinyrenderer/wiki/Lesson-2-Triangle-rasterization-and-bac ...
分类:其他好文   时间:2020-06-23 21:05:47    阅读次数:62
Kubernetes ---- API Server认证、配置文件、自定义用户连接API Server
客户端请求API Server过程 客户端 --> API Server(识别用户是否有通过api server执行操作的权限) api Server识别内容: user: username,uid group: 用户组 extra: 字段,提供额外信息 客户端请求的API(Request Path ...
分类:Windows程序   时间:2020-06-23 21:04:25    阅读次数:75
【leetcode】1464. Maximum Product of Two Elements in an Array
题目如下: Given the array of integers nums, you will choose two different indices i and j of that array. Return the maximum value of (nums[i]-1)*(nums[j]- ...
分类:其他好文   时间:2020-06-22 15:42:18    阅读次数:67
4162条   上一页 1 ... 17 18 19 20 21 ... 417 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!