码迷,mamicode.com
首页 >  
搜索关键字:google data(gdata)    ( 79648个结果
Python中module文件夹里__init__.py的功能
怎么引用模块 环境:win7 + python3.5.2文档结构: -project?-data?-src -filterCorpus.py -translateMonolingual.py 问题描述:在translateMonolingual.py中引用filterCorpus.py中的函数fun ...
分类:编程语言   时间:2021-05-23 23:12:29    阅读次数:0
train_data
for images, labels in train_data: for images, labels in train_data: img = images[0] img = img.numpy() img = np.transpose(img, (1, 2, 0)) plt.imshow(im ...
分类:其他好文   时间:2021-05-23 23:01:36    阅读次数:0
数据结构--单链表 C语言
//单链表基本操作 1 #include <stdio.h> 2 3 #include <stdlib.h> 4 5 6 typedef struct _NODE 7 { 8 int data; 9 struct _NODE *pNext; 10 }NODE,*PNODE; 11 12 PNODE ...
分类:编程语言   时间:2021-05-23 22:56:58    阅读次数:0
python引入其他文件夹下的py文件
红色方框要引入箭头里面的 import sys sys.path.append('../../config/') from database import * print(MYSQL_CONFIG) ...
分类:编程语言   时间:2021-05-20 17:53:11    阅读次数:0
树莓派4B-搭建Jenkins
官网下载Jenkins https://www.jenkins.io/zh/download/ 构建jenkins镜像 # docker build -t jenkins:2.277.3 . from ubuntu:latest run sed -i 's/ports.ubuntu.com/mirr ...
分类:其他好文   时间:2021-05-04 16:25:44    阅读次数:0
微信小程序学习
注册 使用一个没有注册过的邮箱 然后按照注册流程注册 标签 1.text -- 相当于web中的span标签 行内元素 2.view -- 相当于div 块级元素 3.checkbox -- 复选框 文件格式 1 .js写JS的 存档data数据 类似VUE 2 .json 配置文件 可以设置标题 ...
分类:微信   时间:2021-05-04 16:13:33    阅读次数:0
[AWS Design Cost-Optimized Architectures] 4.2 Identify cost-effective compute and database services
RDS Scalabilty Scalabilty allows a solution to grow to increase storage, processing, memory, and netowrk operations By changing the class of an instan ...
分类:数据库   时间:2021-05-04 16:10:48    阅读次数:0
全网最详细的安装CF-Predictor教程
CF-Predictor 这是一款在$Codeforces$比赛中可以实时算出你这场比赛的$rating$ $changes$的插件,非常实用。 下面是安装教程,我以$Google$ $Chrome$为示范。 感谢 @qinyihao 给予帮助 Step 1 我们要下载一个代理,就是这个,然后点击$ ...
分类:其他好文   时间:2021-05-04 16:07:43    阅读次数:0
Pandas-02-DataFrame运算
1. 算术运算 add(other) 比如进行数学运算加上一个具体数字 data["open"].add(10) # open列加10 # data["open"] + 10 # 一般不这么写 sub(other) 用法同add 2. 逻辑运算 2.1. 逻辑运算符号 逻辑运算类型:>, >=, < ...
分类:其他好文   时间:2021-05-04 16:04:10    阅读次数:0
Pandas-03-文件读取与存储
1. CSV 1.1. read_csv pandas.read_csv(filepath_or_buffer, sep=',') filepath_or_buffer:文件路径 usecols:列表,指定读取的列名 # 读取文件,并指定只获取open和close这两列 data = pd.read ...
分类:其他好文   时间:2021-05-04 16:03:35    阅读次数:0
79648条   上一页 1 ... 45 46 47 48 49 ... 7965 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!