Notes of Multi-agent deep reinforcement learning: a survey (1)
   Notes of Multi-agent deep reinforcement learning: a survey Citation: Gronauer, Sven, and Klaus Diepold. “Multi-Agent Deep Reinforcement Learning: A Survey.” The Artificial intelligence review 55.2 (2022): 895–943. Print. Links: Not ......
强化学习   机器学习   论文   全英   |  2024-09-20   0 评论   1,077 浏览

PAT 1009 多项式乘法
   1009 Product of Polynomials This time, you are supposed to find A×B where A and B are two polynomials. 这次,你需要找到两个多项式 A 和 B 的乘积。 Input Specification: Each input file contains one test case. Each case occupies 2 lines, and each line ......
C++   算法数学   算法模拟   |  2023-04-26   0 评论   981 浏览

PAT 1008 电梯
   1008 Elevator The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the ......
C++   算法动态规划   算法模拟   |  2023-04-25   0 评论   1,012 浏览

Bolo博客保姆级部署流程
   介绍 Bolo博客github主页:adlered/bolo-solo: 🍍Bolo菠萝博客 专为程序员设计的精致Java博客系统 | 🎸基于Solo深度定制 | ❤️完善文档轻松安装,贴心的技术支持 | 免登录评论 | 邮件/微信提醒 | 自定义图床 | 备案模式 | ✨精致主题持续更新 | 一键备份 | 防火墙 | 评论过滤 | 独立分类 | 文章与GitHub同步 | ✅安装太轻松!支持 Tomcat Docker 宝塔面板 | 支持Windows ......
Bolo   教程   |  2023-04-23   0 评论   959 浏览

PAT 1007 最大子序列和
   1007 Maximum Subsequence Sum Given a sequence of K integers { N1, N2, ..., N**K }. A continuous subsequence is defined to be { N**i, N**i+1, ..., N**j } where 1≤i≤j≤K. The Maximum Subsequence is the continuous subsequence which has ......
C++   算法动态规划   |  2023-04-24   0 评论   967 浏览

Kaggle数据可视化(二)线性图表
   在本教程中,您将学习足够的 Python,以创建看起来很专业的 线性图表 。然后,在下面的练习中,您将把您的新技能用于处理真实世界的数据集。 准备好笔记本 我们从设置编码环境开始。 import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns 选 ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   565 浏览

Kaggle数据可视化(一)seaborn引入
   欢迎来到数据可视化! 在这门实践课程中,你将学习如何使用 seaborn 这个强大而易于使用的数据可视化工具,将你的数据可视化提升到一个新的水平。为了使用 seaborn,你还需要学习一些 Python 编程语言的知识。尽管如此, 本课程旨在面向那些没有编程经验的人,而且 每个图表都使用简短而简单的代码,使 seaborn 比许多其他数据可视化工具(如 Excel)更快更容易使用。 因此,如果你从未写过一行代码,想要学习最基本的知识,从今天开始制作更快、 ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   573 浏览

Kaggle数据可视化(三)条形图和热力图
   现在你已经能够创建自己的折线图了,是时候学习更多的图表类型了! 顺便说一下,如果这是你第一次在Python中编写代码,你应该为你所取得的成就感到非常自豪,因为学习全新的技能从来都不容易!如果你坚持学习,你会发现一切都会变得更容易(而你构建的图表也会更加令人印象深刻!),因为所有图表的代码都非常相似。像任何技能一样,编码随着时间和重复变得自然。 在本教程中,你将学习条形图和热力图。 设置笔记本 像往常一样,我们首先设置编码环境。( 这段代码是隐藏的,但是你 ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   589 浏览

Kaggle数据可视化(四)散点图
   在本教程中,您将学习如何创建高级 散点图 。 设置笔记本 像往常一样,我们从设置编码环境开始。 import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns print("Setup Complete") Setup Complete 加载并检 ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   604 浏览

Kaggle数据可视化(五)直方图与密度图
   在本教程中,您将学习所有关于 直方图 和 密度图 。 设置笔记本 像往常一样,我们从设置编码环境开始。(这段代码是隐藏的,但是你可以通过点击右边紧挨着这段文字下面的“代码”按钮来解除隐藏。) import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as s ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   618 浏览

Kaggle数据可视化(六)选择图表类型并定制样式
   在本课程中,您已经学习了如何创建许多不同的图表类型。现在,您将在学习一些可用于更改图表样式的快速命令之前,对知识进行组织。 你学到了什么? 由于并不总是容易决定如何最好地讲述数据背后的故事,我们将图表类型分为三个广泛的类别来帮助解决这个问题。 趋势 - 趋势被定义为变化的模式。 sns.lineplot - 折线图最适合展示一段时间内的趋势,多条线可以用来展示多个组的趋势。 关系 - 有很多不同的图表类型可以用来理解数据中变 ......
kaggle   数据分析   机器学习   python   |  2023-04-20   0 评论   628 浏览

PAT 1006 签到与签退
   1006 Sign In and Sign Out At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are ......
C++   算法排序   |  2023-04-20   0 评论   648 浏览

PAT 1005 正确拼写
   1005 Spell It Right Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. 给定一个非负整数N,你的任务是计算N的所有数字的和,并输出总和的每个数字的英文表示。 Input Specification: Each input fi ......
C++   算法string   |  2023-04-19   0 评论   474 浏览

PAT 1004 数叶子
   1004 Counting Leaves A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child. 一个家庭的层级结构通常用家谱树来表示。你的任务是统计那些没有孩子的家庭成员。 输入格式: Each input file contains one test case. Each ......
C++   算法树   算法深度优先搜索   |  2023-04-18   0 评论   558 浏览

PAT 1001 两数相加
   1001 A+B Format Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits). 计算a+b并以标准格式输出——也就是说,除非数字少于四位,否则数字必须用逗号分隔成三组。 Inpu ......
C++   算法数学   |  2023-04-15   0 评论   486 浏览