- 博客(34)
- 资源 (4)
- 收藏
- 关注
原创 【强化学习】基于DQN的《只狼:影逝二度》自学习算法研究
作为强化学习的入门练手项目之一,《只狼》作为一款3D动作游戏,一是战斗目标可锁定且视角可固定,这意味着图像区域可以被有效剪裁,很好地缩小了需要采集的样本数据大小;二是角色移动输入依赖不高,在采集键盘数据时能针对方向键对样本数据进行大幅度压缩;三是战斗模式相对单一,游戏中的战斗技巧相当纯粹,采集数据时仅需攻击、跳跃、识破、防御四个动作作为键位输入即可。得益于《只狼》的特殊游戏机制,这个看似复杂的课题实际上难度不高且相当有趣
2021-05-23 13:17:46 4053 5
原创 【机器学习】Tensorflow 2.4.1 + CUDA 11.1.0 + cuDNN 8.1.1 环境配置踩坑一则
1. Not creating XLA devices, tf_xla_enable_xla_devices not set2. Could not load dynamic library 'cusolver64_10.dll'; dlerror: cusolver64_10.dll not found
2021-04-04 12:18:52 710
原创 【C++】AOJ基础题 ITP2_5_C+D Permutation 全排列
全排列 & SLT Next/Previous Premutation & 递归/字典序解法mark
2021-03-10 16:13:49 587
原创 【C++】AOJ基础题 ITP1_10_D Distance II
- 闵可夫斯基距离又称LP距离;- 曼哈顿距离又称出租车距离,即走直角边(图形学像素点);- 欧式距离即直线距离(相似度计算);- 切比雪夫距离即绝对值距离(国际象棋);- 转化:对于原坐标系中两点间的切比雪夫距离,是将坐标轴顺时针旋转45度并将所有点的坐标值放大sqrt(2)倍所得到的新坐标系中的曼哈顿距离的二分之一。
2021-02-21 20:16:04 429
原创 【C++】AOJ基础题 ITP1_10_C Standard Deviation
You have final scores of an examination for n students. Calculate standard deviation of the scores *s1, s2 ... sn*.The variance *α^2* is defined by*α^2 = (∑ni=1(si - m)2)/n*where m is an average of si. The standard deviation of the scores is the squa
2021-02-21 17:13:27 363
原创 【C++】AOJ基础题 ITP1_9_D Transformation
Write a program which performs a sequence of commands to a given string str. The command is one of:
2021-02-21 02:56:33 272
原创 【C++】AOJ基础题 ITP1_9_B Shuffle
Your task is to shuffle a deck of *n* cards, each of which is marked by a alphabetical letter.A single shuffle action takes out *h* cards from the bottom of the deck and moves them to the top of the deck.
2021-02-21 01:09:48 403
原创 【C++】AOJ基础题 ITP1_9_A Finding a Word
Write a program which reads a word W and a text T, and prints the number of word W which appears in text T
2021-02-20 20:08:34 899
原创 【C++】AOJ基础题 ITP1_7_B How many ways?
Write a program which identifies the number of combinations of three integers which satisfy the following conditions:- You should select three distinct integers from 1 to n.- A total sum of the three integers is x.
2021-02-20 15:23:57 252 1
原创 【C++】AOJ基础题 ITP1_8_D Ring
RingWrite a program which finds a pattern p in a ring shaped text s.
2021-02-20 15:15:31 1151 6
原创 【Python】是时候告别原生CMD了!Windows Terminal + Anaconda简洁配置美化指南
告别CMD!告别Powershell原生界面!
2020-12-20 17:26:57 1798
原创 【字幕制作】生肉资源的字幕问题解决经验分享 入门科普/一键机翻/在线识别/内嵌封装
当你不得不啃一个无内嵌字幕的生肉视频,而又急需中文翻译支持的时候?
2020-11-11 19:48:51 5559
原创 【OpenCV】2020年关于SIFT算法专利版权问题的解决办法
OpenCV 3.4之后因专利版权问题移除了SIFT/SURF的相关库,因此在使用较新版本的cv库时会报错
2020-11-08 16:45:09 10153 10
原创 【Unity2D日记】#2 VS Code傻瓜式完美配置攻略(真香警告)
虽然在配置过程中遇到很多坑,VS Code折腾起来也比VS麻烦,可能会遇到各种各样的问题,但是当你捣鼓出一套只属于你自己的IDE的时候,各种感受是难以言表的,我想这也是VS Code最大的魅力所在吧;对初学者来说,或许最直观的“香”是**VS Code启动比Visual Studio快出很多**,再搭配上一些提高效率的插件,无疑是笔记本或者中低配用户的福音。
2020-03-07 19:18:49 1460 2
原创 【游戏测评】《海盗来了》:四手终与双拳难辨
一款好的游戏必然是能经得起时间和玩家的双重考验,这一点本作在初期做得出人意料的好,不同年龄层次的玩家都能找到属于自己的那一条“航路”,但由于种种内外因素,中后期的决策失控,发展有些不尽人意,这款红爆2018年的现象级游戏如星宿陨落般迅速沉寂。
2020-02-28 04:31:43 3028 1
原创 【Github】Error: failed to push some refs to "xxx" 的解决方案
问题描述在将源代码push到github上可能会出错:原因分析问题出在先在github上创建repository之后再使用git进行push,创建时会自动生成README.md文件,而这个文件不在你本地仓的文件夹中,所以报错。解决方法进行代码合并git pull --rebase origin master执行上诉代码之后,会发现原来的文件夹中多出了README.md然...
2020-02-25 20:46:32 191
原创 【Unity2D日记】#1 基于Tilemap的简单场景搭建
知识清单TilemapRigidbody & ColliderCinemachineAxes (Script API)C# Script
2020-02-20 22:29:51 1020
【完整源码】基于信号量的多理发师问题实现
2020-02-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人