https://cn.sli.dev/
视频教程:https://b23.tv/ZLNXTnI 和 https://b23.tv/pVDQ9h8[......]
官方指南:《Garbage First Garbage Collector Tuning》
一些摘要:
1 有没有开箱即用的在线开发环境
推荐 https://colab.research.google.com/
2 前沿的peper研究和代码
https://paperswithcode.com/
3 CNN可视化解释
https://poloclub.github.io/cnn-explainer/#article-relu
4 分类问题如何选择架构
如下表所示,注意区分二分类和多分类:
3 代码片段学习推荐
https://git[......]
time.Parse(layout, "2023-03-04")
其中layout用类似"2006-01-02 15:04:05"这样的字符串做模板,这个对开发者太友好了,再也不用yyyy记忆了,一些内置的如下:
const (
ANSIC = "Mon Jan _2 15:04:05 2006"
UnixDate = "Mon Jan _2 15:04:05 MST 2006"
RubyDate = "Mon Jan 02 15:04:[......]