码迷,mamicode.com
首页 >  
搜索关键字:test2 unit11    ( 841个结果
Mxnet 查看模型params的网络结构
python showmxmodel.py 2>&1 | tee log.txtresult is('stage3_unit2_bn1_beta', (256L,))('stage3_unit2_bn3_beta', (256L,))('stage3_unit11_bn1_gamma', (256L ...
分类:Web程序   时间:2018-06-12 17:09:26    阅读次数:602
greenlet 实现手动协程切换
from greenlet import greenletdef test1(): print('12') gr2.switch() #切换到gr2 print('34') gr2.switch()def test2(): print('56') gr1.switch() print('78')gr ...
分类:其他好文   时间:2018-06-10 23:09:33    阅读次数:281
C++ 类和对象初探
构造函数 构造函数为了提供初始化用的, 构造函数有:默认构造函数,拷贝构造函数 #include <iostream> using namespace std; // 同一个项目最好不要有相同的类名(防止串包) // 默认构造函数:可以写成有参数的并且,形参写上初始值 class Test2 { p ...
分类:编程语言   时间:2018-06-10 20:41:50    阅读次数:164
面试题: mysql 数据库去重
mysql去重面试总结 前言:题目大概是这样的。 建表: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 CREATE TABLE `test2` ( `id` int(11) NOT NULL AUTO_INCREMENT, `peopleId` int(11) ...
分类:数据库   时间:2018-05-31 19:24:35    阅读次数:189
SpringMvc学习
遇见的问题: 1.Resource leak: 'context' is never closed spring实例化时 public void test2() { ApplicationContext ctx = new ClassPathXmlApplicationContext("applic ...
分类:编程语言   时间:2018-05-30 16:08:44    阅读次数:154
python__系统 : 异步实现以及GIL
创建进程的方式中有个 callback ,也就是回调. 看代码: 主进程 一直在重复 print(' 主进程-pid=%d ' %os.getpid()) 这一句话, 当子进程 执行完 test 之后,有个返回值 haha 然后主进程放下手中的工作去执行 test2 ,返回值就是传进去的参数 .这就 ...
分类:编程语言   时间:2018-05-25 01:40:15    阅读次数:222
java语言概述
java语言概述 dos命令 1. 切换磁盘:E: 2. 创建目录:md test 3. 进入文件夹:cd test 4. 递归创建目录:md test1\test2 5. 删除目录:rd test\test1 6. 返回上级目录:cd .. 7. 创建空文件:echo > test.txt 8. ...
分类:编程语言   时间:2018-05-23 13:51:08    阅读次数:278
Python之猴子补丁
1.在运行时,对属性,方法,函数等进行动态替换 2.其目的往往是为了通过替换,修改来增强,扩展原有代码的能力 #test2.py class Person: def get_score(self): ret = {'english':80,'history':100,'chinese':150} r... ...
分类:编程语言   时间:2018-05-19 19:09:52    阅读次数:258
Linux10.5 Nginx域名重定向
更改test.com.conf server { listen 80; server_name test.com test1.com test2.com; index index.html index.htm index.php; root /data/wwwroot/test.com; if ($... ...
分类:系统相关   时间:2018-05-16 20:42:14    阅读次数:191
try1
C. Kuro and Walking Routetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputKuro is living in a cou ...
分类:其他好文   时间:2018-05-15 13:18:47    阅读次数:162
841条   上一页 1 ... 29 30 31 32 33 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!