標籤:參考:http://www.cnblogs.com/captain_jack/archive/2011/01/11/1933366.htmlhttps://docs.python.org/2/library/optparse.htmleg:# This is the blocking Get Poetry Now! client.import datetime, optparse, socketdef parse_args(): usage = """usage: %prog
標籤:KNN的是“k Nearest Neighbors”的簡稱,中文就是“最近鄰分類器”。基本思路就是,對於未知樣本,計算該樣本和訓練集合中每一個樣本之間的距離,選擇距離最近的k個樣本,用這k個樣本所對應的類別結果進行投票,最終多數票的類別就是該未知樣本的分類結果。選擇什麼樣的度量來衡量樣本之間的距離是關鍵。一、從文本中讀取樣本的特徵和分類結果。'''kNN: k Nearest Neighbors'''import numpy as np
標籤:繼續之前的寫。三、對單個樣本進行分類。'''function: classify the input sample by voting from its K nearest neighborinput:1. the input feature vector2. the feature matrix3. the label list4. the value of kreturn: the result label'''def
標籤:樣本我就用的《machine learning in action》中提供的資料範例,據說是婚戀網站上各個候選人的特徵,以及當前人對這些人的喜歡程度。一共1k條資料,前900條作為訓練樣本,後100條作為測試樣本。資料格式如下:468933.5629760.445386didntLike81783.2304821.331698smallDoses557833.6125481.551911didntLike11480.0000000.332365smallDoses100623
標籤:python心靈雞湯:1,今天的苦逼是為了不這樣一直苦逼下去!2,今天之所以苦逼,是因為之前不夠努力!3,今天的你,是由幾年前的你決定的!4,Be a loser for now,or forever!(一時的屌絲or永遠的屌絲)5,不要和傻逼去講道理,傻逼會把你拉到和他一個水平上,然後用他的經驗把你來打敗,來說服。####################################### python特性
標籤:兩種迴圈:for x in ……whilerange(n) 產生整數序列,並且是從0開始一直到n-1的整數raw_input() 讀取的內容永遠以字串的形式,必須先用 int() 把字串轉換為我們想要的整數 int(raw_input())記錄配置eclipse 下的python環境list and tuple 2種列表 前者可變用“[]”初始化,後者不可變 用“()”初始化dict and set
標籤:You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it