工具学习
文章平均质量分 64
啥哈哈哈
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
AutoML: 自动调参工具Ray tune
Ray Tune Ray Tune 是一个标准的超参数调优工具,包含多种参数搜索算法,并且支持分布式计算,使用方式简单。同时支持pytorch、tensorflow等训练框架,和tensorboard可视化。 超参数 神经网络结构搜索(层数、节点数、类型、连接方式) 学习率 optimizer loss weight … 使用方法 安装: pip install ray torchvision pytorch 集成tune到pipeline class-based ray.tune.Trainabl原创 2021-04-14 10:11:00 · 1698 阅读 · 0 评论 -
Ninja
Ninja是类似make的编译工具,make工具比较复杂,Ninja相比make更关注编译速度,小巧高效,LLVM、CMake、chrome使用Ninja编译。 安装 下载官网二进制 https://github.com/ninja-build/ninja/releases 源码编译 生成ninja可执行文件 git clone git://github.com/ninja-build/ninja.git && cd ninja ./configure.py --bootstrap原创 2021-04-09 15:13:18 · 791 阅读 · 0 评论 -
VScode Latex 拼写检查
spell right 安装spell right 插件 点击最下面边框的眼睛: 选择不同的语言(但是好像不支持中文) 写latex文件: LTeX: latex 或markdown文件拼写检查工具 https://valentjn.github.io/vscode-ltex/docs/installation-and-usage.html#how-to-install-and-use 补充word表格转latex表格在线工具:https://www.tabl..原创 2021-03-22 14:30:00 · 3527 阅读 · 0 评论 -
git 学习(git fetch/ git pull/ git rebase/ git cherry-pick的区别)
使用git做开发管理: 1. Git clone 将远程代码克隆到本地; 2. Git branch 查看本地branch (git clone 时会创建 master) 3. git branch -a 查看本地和远程分支;(远程分支包括remotes/origin/master 远程master分支) 4. Git remote -v查看远程库对应的简短名称 (o...原创 2020-02-24 16:29:15 · 3531 阅读 · 1 评论 -
bazel 学习(1)
从一个BUILD 文件学习: package(default_visibility = ["//:internal"]) load("@subpar//:subpar.bzl", "par_binary") py_library( name = "a", srcs = ["a.py"], ) filegroup( name = "b", srcs = ["...原创 2020-01-06 11:58:28 · 1328 阅读 · 0 评论
分享