上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: package edu.cqu.algorithmTest; import java.util.Scanner; // 全排列,递归实现 public class Main8 { public static void main(String[] args) { int[] arr = { 1, 2, 3}; bfs(arr, 0, arr.lengt... 阅读全文
posted @ 2019-03-03 12:04 路在脚下丶 阅读(2821) 评论(0) 推荐(0)
摘要: LaTeX新人教程,30分钟从完全陌生到基本入门by Nan 对于真心渴望迅速上手LaTeX的人,前言部分可以跳过不看。 本教程面向对LaTeX完全无认知无基础的新人。旨在让新人能够用最简单快捷的方式,轻松入门,能够迅速使用LaTeX完成基本的文本编辑。这个教材最终能够达到的水平是能够使用LaTeX 阅读全文
posted @ 2019-01-16 15:53 路在脚下丶 阅读(5519) 评论(0) 推荐(0)
摘要: (1)Pattern recognition letters, 从投稿到发表,一年半时间; (2)Pattern recognition 不好中,时间长; (3)IEICE Transactions on Information and Systems, 作者中有一个必须是会员。收费高,审稿快。影响 阅读全文
posted @ 2019-01-03 19:17 路在脚下丶 阅读(2813) 评论(0) 推荐(0)
摘要: 第一步,读一读这篇博客 https://www.jb51.net/article/138932.htm (浅谈Tensorflow模型的保存与恢复加载) 第二步: 参考博客: https://blog.csdn.net/u011734144/article/details/82107610 按照上述 阅读全文
posted @ 2018-12-26 18:26 路在脚下丶 阅读(2307) 评论(1) 推荐(0)
摘要: # ~/.bash_aliases # Kill all running containers. alias dockerkillall='docker kill $(docker ps -q)' # Delete all stopped containers. alias dockercleanc='printf "\n>>> Deleting stopped containers\n\n... 阅读全文
posted @ 2018-12-26 18:18 路在脚下丶 阅读(611) 评论(0) 推荐(0)
摘要: 注意要是当前的完整路径 pwd查看到完整路径,再加入到source里面即可 阅读全文
posted @ 2018-12-26 17:12 路在脚下丶 阅读(7404) 评论(1) 推荐(0)
摘要: 改为 阅读全文
posted @ 2018-12-25 15:19 路在脚下丶 阅读(2131) 评论(0) 推荐(0)
摘要: 使用pip install --user tensorflow-serving-api命令即可 阅读全文
posted @ 2018-12-24 16:52 路在脚下丶 阅读(717) 评论(0) 推荐(0)
摘要: 在linux系统中,tensorflow跑mnist数据集出现错误,本应该自动下载的数据集 将mnist自动下载的路径,由/data/mnist之前的/删掉即可。改为data/mnist. 阅读全文
posted @ 2018-12-24 10:44 路在脚下丶 阅读(2913) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页