码迷,mamicode.com
首页 >  
搜索关键字:training    ( 1539个结果
PostgreSQL之windows下的安装和使用
一、下载 从http://www.enterprisedb.com/products-services-training/pgdownload#windows 选择你要下载的版本,我是在win7 64位下操作的,下载的是9.4.4版本http://get.enterprisedb.com/postgresql/postgresql...
分类:数据库   时间:2015-08-25 12:52:59    阅读次数:458
HDU5406---CRB and Apple( DP) 2015 Multi-University Training Contest 10
题意比较简单,dp[i][j] 表示上一次男女吃的deliciousness分别为i, j的时候的吃的最多的苹果。那么dp[i][j] = max(dp[i][k] + 1), 0 2 using namespace std; 3 const int MAXN = 1001; 4 struct .....
分类:移动开发   时间:2015-08-21 15:09:43    阅读次数:175
Android自学历程—RecyclerView的使用
在网上看见有关RecyclerView的介绍,说是ListView的进阶版,官方推荐,便找来资料,耍耍。首先挂上官方的教程,官方是最具权威和最让人信服的第一手资料。https://developer.android.com/training/material/lists-cards.htmlTo.....
分类:移动开发   时间:2015-08-18 09:03:03    阅读次数:313
ZOJ 3693 Happy Great BG
Happy Great BG Time Limit: 2 Seconds      Memory Limit: 65536 KB The summer training of ZJU ICPC in July is about to end. To celebrate this great and happy day, the coaches of ZJU ICPC Team Navi...
分类:移动开发   时间:2015-08-15 06:46:47    阅读次数:129
GooglePlay支付相关资料部分整理
本篇只是记录当出找资料的点点滴滴。未做详细整理,只能算是收集。google play 应用内支付http://developer.android.com/training/in-app-billing/preparing-iab-app.html#Connecthttp://developer.android.com/training/in-app-billing/index.html Go to...
分类:其他好文   时间:2015-08-10 00:27:38    阅读次数:516
Android训练课程(Android Training) - 使用Volley传输网络数据(Transmitting Network Data Using Volley)
Volley is an HTTP library that makes networking for Android apps easier and most importantly, faster. Volley is available through the openAOSPreposito...
分类:移动开发   时间:2015-08-06 12:31:54    阅读次数:154
Coursera台大机器学习技法课程笔记13-Deep Learning
深度学习面临的问题和现在解决的办法: 简要来说,分两步使用DL:初始化时一层一层的选择权重,而后再进行训练: 那么怎么做pre-training,即怎么选择权重呢?好的权重能够不改变原有资料的信息,即编码过后信息够解码过后仍能保持 ...
分类:其他好文   时间:2015-08-05 21:48:42    阅读次数:162
machine learning in coding(python):根据关键字合并feature,删除无用feature,转化为numpy数组
import pandas as pd import numpy as np from sklearn import preprocessing from keras.models import Sequential from keras.layers.core import Dense, Activation, Dropout # load training and test datasets...
分类:编程语言   时间:2015-08-04 21:12:47    阅读次数:266
Android Material Design 学习笔记 - Matrial Theme
google在2014年 I/O大会上推出了一种新的设计设计语言—Material design,这种设计语言语言旨在为手机、平板电脑、台式机和“其他平台”提供更一致、更广泛的“外观和感觉”(附上官方链接:http://developer.android.com/training/material....
分类:移动开发   时间:2015-08-04 18:44:21    阅读次数:134
BUPT Summer Training #7 for Grade 14 题解
A. CodeForces 396C 题意就不描述啦。 对于第一种操作 1 v x k,我们可以给v的子树全部加上(x+depth[v]*k)的值。 对于第二种操作 2 v。查询每个节点的值之后,只需要在减去depth[v]*K即可得到答案了。里面的K是对v这个节点有影响的k的和。 自己在纸上推推公式,很容易就能知道为何是对的了 这里用两个树状数组即可维护, 当然增加整棵子树的操作...
分类:其他好文   时间:2015-08-03 19:13:38    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!