浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 300 301 302 303 304 305 306 307 308 ··· 630 下一页

2012年9月25日

摘要: The Ex CS Grad Student: Running HQL from Python without using the Hive Standalone ServerRunning HQL from Python without using the Hive Standalone ServerTo use a language other than Java (say python) w... 阅读全文
posted @ 2012-09-25 12:14 lexus 阅读(290) 评论(0) 推荐(0)

摘要: 双数组trie树_互动百科双数组trie树开放分类: 搜索 算法编辑词条 分享 新知社 新浪微博 腾讯微博 人人网 QQ空间 网易微博 开心001 天涯 飞信空间 MSN 移动说客 双数组Trie(Double-ArrayTrie)是trie树的一个简单而有效的实现,由两个整数数组构成,一个是base[],另一个是check[]。设数组下标为i,如果base[i],chec... 阅读全文
posted @ 2012-09-25 11:43 lexus 阅读(464) 评论(0) 推荐(0)

摘要: 实例讲解hadoop中的hive查询(python语言实现) - 实践检验真理 - 51CTO技术博客实例讲解hadoop中的hive查询(python语言实现)2011-12-05 16:47:51标签:数据挖掘 python hadoop 休闲 hive版权声明:原创作品,谢绝转载!否则将追究法律责任。条件,假设配置好了hadoop和hive,并可以正常运行首先,要外部查询hive,你需要安装... 阅读全文
posted @ 2012-09-25 11:05 lexus 阅读(436) 评论(0) 推荐(0)

摘要: The Ex CS Grad Student: Running HQL from Python without using the Hive Standalone ServerRunning HQL from Python without using the Hive Standalone ServerTo use a language other than Java (say python) w... 阅读全文
posted @ 2012-09-25 10:31 lexus 阅读(366) 评论(0) 推荐(0)

摘要: ./configure --without-csharp --without-erlang --without-perl --without-php --without-php_extension --without-haskell --without-rubysudo makesudo make install 阅读全文
posted @ 2012-09-25 10:26 lexus 阅读(209) 评论(0) 推荐(0)

摘要: shell脚本实现每秒执行一次任务 rsync命令使用 - 技术博客 - 博客频道 - CSDN.NETshell脚本实现每秒执行一次任务 rsync命令使用 分类: 分布式系统 2012-03-29 14:24 103人阅读 评论(0) 收藏 举报目的:编写脚本没秒钟同步一个log数据1.编写shell脚本vi /tmp/ceshi.sh #!/bin/sh while [ true ]; ... 阅读全文
posted @ 2012-09-25 09:28 lexus 阅读(899) 评论(0) 推荐(0)

摘要: 使用 inotify 监控文件系统的活动使用 inotify 监控文件系统的活动编写自己的应用程序或使用开源工具套件Martin Streicher , Web 开发人员, 自由职业者Martin Streicher 是一位自由 Web 开发人员,并且是 Linux Magazine 的前任主编。Martin 拥有 Purdue University 计算机科学的硕士学位,并从 1986 年开始编... 阅读全文
posted @ 2012-09-25 09:21 lexus 阅读(304) 评论(0) 推荐(0)

摘要: CentOS通过ssh免密码登录 - Linux安全网 - Linux操作系统_Linux 命令_Linux教程_Linux黑客linux经常会需要免密码登录另外一台机器,譬如安装hadoop集群,从a机器通过scp考文件到b机器等。 ssh 无密码登录要使用公钥与私钥。linux下可以用用ssh-keygen生成公钥/私钥对,以CentOS为例。 有机器A,B。现想A通过ssh免密码登录到B... 阅读全文
posted @ 2012-09-25 09:18 lexus 阅读(4356) 评论(0) 推荐(0)

2012年9月24日

摘要: 晒晒我们的开源项目 - robbin的自言自语 - ITeye技术网站晒晒我们的开源项目 博客分类:Tech我们的研发团队是一支mini型研发团队,目前共有研发人员13人。由于网站产品维护的历史原因,这13人的研发团队分为4支小组,分别是:Ruby研发小组5人;PHP研发小组4人;.net研发小组2人,Java搜索小组2人。 别看我们研发人员这么少,但是我们研发人员战斗力很强,我们维护和开发着... 阅读全文
posted @ 2012-09-24 23:52 lexus 阅读(331) 评论(0) 推荐(0)

摘要: A Basic Understanding Of screen On Centos | CentOS HelpA Basic Understanding Of screen On CentosScreen allows you to run scripts or commands in their own virtual window within the terminal, essentiall... 阅读全文
posted @ 2012-09-24 10:53 lexus 阅读(290) 评论(0) 推荐(0)

2012年9月23日

摘要: Installing NLTK — NLTK 2.0 documentationMac/Unix¶Open Finder>Applications>Utilities>Terminal and type python -V to find out what version of Python is installedInstall Setuptools: Download the correspo... 阅读全文
posted @ 2012-09-23 13:43 lexus 阅读(324) 评论(0) 推荐(0)

摘要: 相似度计算的若干函数 - 小小的世界相似度计算的若干函数from math import sqrtdef sim_distance(p1,p2): c=set(p1.keys())&set(p2.keys()) if not c:return 0 sum_of_squares=sum([pow(p1.get(sk)-p2.get(sk),2) for sk in c]) p=1/(1+sq... 阅读全文
posted @ 2012-09-23 10:15 lexus 阅读(357) 评论(0) 推荐(0)

摘要: Excel SUMPRODUCT formula - Syntax, Usage, Examples and Tutorial | Chandoo.org - Learn Microsoft Excel OnlineToday we will learn a new and exciting excel formula – the all powerful SUMPRODUCT.At the ou... 阅读全文
posted @ 2012-09-23 09:36 lexus 阅读(433) 评论(0) 推荐(0)

摘要: Cosine Similarity and Term Weight Tutorialosine Similarity and Term Weight TutorialAn Information Retrieval Tutorial on Cosine Similarity Measures, Dot Products and Term Weight Calculations.Dr. E. Gar... 阅读全文
posted @ 2012-09-23 09:02 lexus 阅读(698) 评论(0) 推荐(0)

摘要: RunningMapReduceExampleTFIDF - hadoop-clusternet - This document describes how to run the TF-IDF MapReduce example against ascii books. - This project is for those who wants to experiment hadoop as a ... 阅读全文
posted @ 2012-09-23 08:59 lexus 阅读(334) 评论(0) 推荐(0)

摘要: RunningMapReduceExampleTFIDF - hadoop-clusternet - This document describes how to run the TF-IDF MapReduce example against ascii books. - This project is for those who wants to experiment hadoop as a ... 阅读全文
posted @ 2012-09-23 08:58 lexus 阅读(182) 评论(0) 推荐(0)

摘要: 向量空间模型 - 维基百科,自由的百科全书向量空间模型 维基百科,自由的百科全书 跳转到: 导航, 搜索 向量空间模型 (或者 词组向量模型) 作为向量的标识符(比如索引),是一个用来表示文本文件的代数模型。它应用于信息过滤、信息检索、索引以及关联规则。SMART是第一个使用这个模型的信息检索系统。目录[隐藏]1 定义2 应用3 范例: tf-idf 权重4 优点5 局限6 基于模型的以及扩展的... 阅读全文
posted @ 2012-09-23 08:54 lexus 阅读(1593) 评论(0) 推荐(0)

摘要: MS Excel: COUNTIF Function (WS)MS Excel: COUNTIF Function (WS)In Excel, the COUNTIF function counts the number of cells in a range, that meets a given criteria.The syntax for the COUNTIF function is:C... 阅读全文
posted @ 2012-09-23 08:46 lexus 阅读(496) 评论(0) 推荐(0)

摘要: PhD Students of Karl Aberer Research Research topics Current Projects Past Projects Partners Awards Events Teaching Current Courses Student Project Offers Ongoing Student Projects Past Courses Complet... 阅读全文
posted @ 2012-09-23 08:24 lexus 阅读(427) 评论(0) 推荐(0)

摘要: Distributed Information SystemsLSIR course, winter semester 2005/2006 (last year's web page)Distributed Information SystemsDescriptionThis course introduces in detail several key technologies underlyi... 阅读全文
posted @ 2012-09-23 08:18 lexus 阅读(217) 评论(0) 推荐(0)

上一页 1 ··· 300 301 302 303 304 305 306 307 308 ··· 630 下一页