This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'visibility' occured 1 times and in 1 job descriptions | |
| 'external' occured 1 times and in 1 job descriptions | |
| 'particular' occured 1 times and in 1 job descriptions | |
| 'party' occured 1 times and in 1 job descriptions | |
| 'prototyping' occured 1 times and in 1 job descriptions | |
| 'semantics' occured 1 times and in 1 job descriptions | |
| 'tens' occured 1 times and in 1 job descriptions | |
| 'salary' occured 1 times and in 1 job descriptions | |
| 'else' occured 1 times and in 1 job descriptions | |
| 'essential' occured 1 times and in 1 job descriptions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| f=open('/tmp/file.dat') | |
| words = {} | |
| for line in f: | |
| print line | |
| line_words = line.split() // returns an array of words separated by whitespace | |
| for word in line_words: | |
| // get the value | |
| val = words.get(word, false) | |
| if val: | |
| val++; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| from sklearn.linear_model import LogisticRegression | |
| import csv_io | |
| import math | |
| import scipy | |
| def main(): | |
| #read in the training file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| from sklearn.ensemble import RandomForestClassifier | |
| import csv_io | |
| import scipy | |
| def main(): | |
| #read in the training file | |
| train = csv_io.read_data("train.csv") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sklearn.ensemble import RandomForestClassifier | |
| from sklearn.ensemble import GradientBoostingClassifier | |
| from sklearn.ensemble import ExtraTreesClassifier | |
| from sklearn import cross_validation | |
| import csv_io as csv | |
| import llfun as logloss | |
| import numpy as np | |
| def main(): | |
| #read in data, parse into training and target sets |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AppID | AppName | ReleaseDate | DevHours | TestHours | SITDefects | UATDefects | ProdDefects | ReportDate | |
|---|---|---|---|---|---|---|---|---|---|
| app1 | Application 1 | 2012-10-02 | 57 | 0 | 29 | 11 | 3 | 2012-10-24 | |
| app2 | Application 2 | 2012-10-02 | 198 | 0 | 88 | 17 | 13 | 2012-10-24 | |
| app3 | Application 3 | 2012-10-02 | 354 | 0 | 134 | 25 | 17 | 2012-10-24 | |
| app4 | Application 4 | 2012-10-02 | 358 | 0 | 117 | 36 | 20 | 2012-10-24 | |
| app5 | Application 5 | 2012-10-02 | 695 | 0 | 227 | 55 | 32 | 2012-10-24 | |
| app1 | Application 1 | 2012-11-02 | 109 | 0 | 25 | 16 | 1 | 2012-11-24 | |
| app2 | Application 2 | 2012-11-02 | 213 | 0 | 53 | 17 | 13 | 2012-11-24 | |
| app3 | Application 3 | 2012-11-02 | 412 | 0 | 158 | 43 | 15 | 2012-11-24 | |
| app4 | Application 4 | 2012-11-02 | 357 | 0 | 123 | 35 | 18 | 2012-11-24 |