码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
python之外部数据的读取
外部数据的读取 文本文件的读取 Example # 文本文件的读取 import pandas as pd text = pd.read_csv('data_test01.txt', sep=',', names=['序号', '出生年', '月份', '日期', '性别', '职位', '薪资'] ...
分类:编程语言   时间:2020-11-06 01:56:39    阅读次数:33
linux中vsftp提示--553 Could not create file
搭建成功之后,匿名用户上传文件时总提示553 Could not create file。 ftp主目录为/var/ftp chmod -R 755 /var/ftp/pub chown ftp:root /var/ftp/pub 匿名用户读,写,删除,修改权限 # Example config f ...
分类:系统相关   时间:2020-11-04 19:05:52    阅读次数:28
Hbase配置手册
环境: 操作系统:ubuntu 12.10 64bit jdk:sun jdk 1.6 64bit hadoop:apache hadoop 1.02 hbase:apache hbase 0.92 先决条件:配置apache hadoop append,默认这个属性是false,需要设置为true ...
分类:其他好文   时间:2020-11-04 18:45:23    阅读次数:16
启动YARN并运行MapReduce程序(伪分布式模式)
配置集群 配置yarn-env.sh Linux系统中获取JDK的安装路径 [xiaoran@hadoop101 hadoop-2.7.2]$ echo $JAVA_HOME /opt/module/jdk1.8.0_144 修改JAVA_HOME路径 [xiaoran@hadoop101 hado ...
分类:其他好文   时间:2020-10-27 11:36:17    阅读次数:28
Leetcode 95 Unique Binary Search Trees II
题目介绍 给定正整数n,利用1到n构造所有可能的二叉树,并返回。 Example: Input: 3 Output: [ [1,null,3,2], [3,2,null,1], [3,1,null,null,2], [2,1,3], [1,null,2,null,3] ] Explanation: ...
分类:其他好文   时间:2020-10-26 11:19:06    阅读次数:17
Leetcode 114 Flatten Binary Tree to Linked List
题目介绍 给定二叉树,将其原地变成一个链表。 Example: 1 / \ 2 5 / \ \ 3 4 6 1 \ 2 \ 3 \ 4 \ 5 \ 6 Solutions 直观解法 发现链表的结果与先序遍历一致,因此先进行先序遍历,再根据遍历的结果构造链表。 # Definition for a b ...
分类:其他好文   时间:2020-10-26 11:17:57    阅读次数:15
openGL Projective texture mapping
原文链接:https://sites.google.com/site/gsucomputergraphics/educational/advanced-texture-mapping/projective-texture-mapping Example 此示例演示了投影纹理贴图,这是阴影贴图,光照贴 ...
分类:移动开发   时间:2020-10-18 16:27:59    阅读次数:29
[Kotlin] companion object == static method
In Kotlin, there is no static methods, but we can use companion object which works the same as static methods. For example, a class: package com.rsk i ...
分类:其他好文   时间:2020-10-16 10:59:03    阅读次数:22
Pulp之三:官网上的应用样例(5)-Scheduling of 2 factories (工厂生产问题) (双索引的用法)
In our last example, we explored the scheduling of 2 factories. Both factories had 2 costs: Fixed Costs - Costs incurred while the factory is running ...
分类:其他好文   时间:2020-10-12 20:02:33    阅读次数:27
Feature Distillation With Guided Adversarial Contrastive Learning
Bai T., Chen J., Zhao J., Wen B., Jiang X., Kot A. Feature Distillation With Guided Adversarial Contrastive Learning. arXiv preprint arXiv 2009.09922, ...
分类:其他好文   时间:2020-10-06 20:26:39    阅读次数:36
17798条   上一页 1 ... 16 17 18 19 20 ... 1780 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!