[TOC] 常用代码片段及技巧 自动选择GPU和CPU 切换当前目录 打印模型参数 将tensor的列表转换为tensor 内存不够 Smaller batch size every few minibatches debug tensor memory resource` module is a ...
分类:
编程语言 时间:
2019-09-16 09:41:37
阅读次数:
71
1 /u-boot-2019.07/Kconfig source "arch/Kconfig" 2 /u-boot-2019.07/arch/Kconfig -->有一个一个选项,可以选择ARM architecture choice prompt "Architecture select" def ...
分类:
其他好文 时间:
2019-09-12 18:13:06
阅读次数:
194
a = np.arange(9).reshape((3,3)) 变换维度 np.max(a) 全局最大,也可以加参数,找某个维度最大的 print(np.max(a,axis=0)) #每列最大 print(np.max(a,axis=1)) #每行最大 print(np.where(a==np.m ...
分类:
其他好文 时间:
2019-09-12 09:44:01
阅读次数:
85
|--斐波那契数列 1 //求斐波那契数列第n位 2 var n = parseInt(window.prompt('输入你要求的斐波那契数列的位数')); 3 var first = 1, 4 second = 1, 5 third; 6 if (n > 2) { 7 for (var i = 0 ...
分类:
编程语言 时间:
2019-09-11 13:48:26
阅读次数:
154
<?xml version="1.0" encoding="UTF-8"?> <!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the N ...
分类:
其他好文 时间:
2019-09-10 14:51:09
阅读次数:
84
#!/bin/bashclearUSER=rootPASSWD=amunlinuxPUBDIR=/root/.sshcat>~/prompt-ans.txt<<EOF如果需要配置服务器数量过多,最好在外部保存到ip-list文件内,易于美观如果.ssh/下存在文件,需要删除后再次执行脚本,不想删除注释关键字即可服务器密码需要统一EOFcat~/prompt-ans.txtslee
分类:
系统相关 时间:
2019-09-10 01:19:39
阅读次数:
273
OpenStack Block Storage服务(Cinder)将持久存储添加到虚拟机。块存储提供用于管理卷的基础结构,并与OpenStack Compute交互以为实例提供卷。该服务还可以管理卷快照和卷类型。 块存储服务包含以下组件: 2.创建cinder用户; 3.将admin角色添加到cin ...
分类:
其他好文 时间:
2019-09-09 22:44:33
阅读次数:
149
[toc] 1 Basics Figure 2: A prototypical command line command. 1.1 Running a terminal Figure 5: Anatomy of a command line. (Your prompt may differ.) Fi ...
分类:
其他好文 时间:
2019-09-06 09:21:39
阅读次数:
93
python环境:win10 64下anaconda4.2.0(python3.5)。安装tensorflow过程是在Anaconda Prompt中进行安装 1:打开Anaconda Prompt 在安装之前,说几个关于conda的小命令 conda list:可以显示已经安装好的库。 conda ...
分类:
编程语言 时间:
2019-08-29 23:00:15
阅读次数:
123
1. 需先安装python3.7,anaconda包管理器(类似java的maven),tensorflow,pycharm开发工具。文末附件下载地址。 2. 安装tensorflow,开始-Anaconda3-Anaconda3 Prompt。 打开控制台。 conda create -n ten ...
分类:
编程语言 时间:
2019-08-29 17:53:05
阅读次数:
144