AutoGluon AutoGluon是一种AutoML框架,帮助我们快速的构建机器学习模型。 针对Tabular的数据,通过以下几行代码快速训练回归或分类模型并进行数据预测: from autogluon.tabular import TabularDataset, TabularPredictor data_root = 'https://au…
Windows在这个链接下载Texlive。Linux可自己找方法下载(Arch Linux用pacman安装Texlive)。 https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/ Texlive默认的编辑器不好用,这里推荐下面的套装。 先下载vscode(visual…
参考文章:https://blog.csdn.net/wenwen091100304/article/details/48011813
代码如下 // @ts-check export default { tempSymbol: 0, // 绝对为0,表示棋盘上的空位置 mySymbol: 0, // 我方棋子,当自己是先手的时候表示1,当自己是后手的时候表示2 opSymbol: 0, // 对方棋子,当对方是先手的时候表示1,当对方是后手的时候表示2 hasPut: false…
IDEA Community Edition(社区版)提供了开箱即用的体验,针对一些配置小白,非常友好,也是我现在正在用的java IDE。比起vscode来说,他直接开箱就集成了更加丰富的功能,比起Eclipse,代码提示之类也更加智能。比起neovim来,也更是少了很多配置的环节。下载地址(记得选Community版本): https://ww…
Obsidian是我目前使用的Markdown编辑器,非常好用,链接如下。 https://obsidian.md/download
在这里找到最新版下载即可。 https://ftp.mozilla.org/pub/firefox/releases/
这篇文章受密码保护,输入密码才能阅读
可能存在一定的bug #include <iostream> #include <ctime> #include <cstdlib> #include <windows.h> using namespace std; struct datetime { int y; int m; int d; int h; int mm; …
游玩网址 https://play.elevatorsaga.com 下面的代码均是我自己写的 1到7关:(通过率不是100%,但是多试几次总能通过) { init: function(elevators, floors) { let floor_dest = []; for (let i = 0; i < floors.length…