shuxiangguo/ai-edumaster 6 Branches 0 Tags Code This branch is 522 commits behind microsoft/ai-edu:master.Folders and filesLatest commit mslichaoand Annbless split 11 and add deploy onnx with windows machine learning (microsoft#79 d889834· History171 Commits...
shuxiangguo/stylegan2Public forked fromNVlabs/stylegan2 NotificationsYou must be signed in to change notification settings Fork0 Star0 View license starsforks NotificationsYou must be signed in to change notification settings Code Pull requests
cvpr2020/cvpr2019/cvpr2018/cvpr2017 papers,极市团队整理. Contribute to shuxiangguo/cvpr2020 development by creating an account on GitHub.
A Deep Learning Recommender System. Contribute to shuxiangguo/SparrowRecSys development by creating an account on GitHub.
1、Pro Git https://git-scm.com/book/zh/v1 2、LearnGitBranching http://pcottle.github.com.io/learnGitBranching/ 3、tryGit http://try.github.io/ 4、廖雪峰Git教程 http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/...
Draft of the fastai book. Contribute to shuxiangguo/fastbook development by creating an account on GitHub.
===shuxiangguo=== 1、uname -a 输出一组系统信息 2、uname -s 输出内核名称 3、uname -n 输出网络节点上的主机名 4、uname -r 输出内核发行号 5、uname -v 输出内核版本 更多信息可通过在Linux下输入uname --help查看
2、Java原始数据类型:boolean、char、byte、int、short、long、float、double。 对应的封装类型: Boolean、Character、Byte、Integer、Short、Long、Float、Double。 3、自动将一个原始数据类型装换为一个封装类型成为自动装箱,自动将一个封装类型转换为一个原始数据类型成为自动拆箱。
书瓖果 1、用提供信息的命名代替注释更好。 2、提供法律信息的注释。 3、提供信息的注释。 4、对意图的解释。 5、阐释:将一些晦涩难懂的参数或者返回值的意义翻译为某种可读的形式。 6、提供警示的注释。 7、TODO注释放置要做的工作列表。 8、学会整理代码。
1、find . -name shuxiangguo:查看当前文件夹及子文件夹里有没有文件名为“shuxiangguo”的文件 .表示当前目录 -name表示按名称搜索 2、find . -type d -name shuxiangguo:想查看当前文件夹及子文件夹里有没有”shuxiangguo”目录 -type:表示设定类型,d表示文件夹类型,可以替换为f(普通文件)、l(链接文件) ...