dgaff_ml 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NGE0MzE0NGI0NmQ1YjMxYmEwYzEwYWFiMjQ2YTBlZDEyZTg5YzE2Yw==
5
+ data.tar.gz: !binary |-
6
+ Yjg2MTJmYjlmZWIwMmNhOGNkZGI3ZDY5MDQ2ZGIyNTU3YzcyZDVjYQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZWFjZTg0OGFlMWRmOGM0NGVjNzZjNzkxMTZlM2FjODEzYzA4MDFlYzk3MWVi
10
+ NzAxODRkODFlZDY3YTAxZmNjODVmMjFiMGU4ZmY1NmYwNDg2ZDE4NWYzMWMy
11
+ ZTk1YzZhZjZmNWFiODQyZDk5M2M4ZjZjNmVjOGVhY2E5NGE2YWI=
12
+ data.tar.gz: !binary |-
13
+ M2YxNTM1NTU2NzY4NmM4NzU5MDExYmQyMzAwNmI2M2FlNjNhNWFjOTYzYmE5
14
+ NmNkOTc1Yjg4NDlhNWNmN2JlNWVhMGE1MDgzMDlhNWRmMTk4ZWY2ODZjZGEw
15
+ ZDI1ZjIzZmY3YTI4YTg2Yjc1ZTQxZmNhMjUyOWZjZWQ4ZDdlM2I=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in dgaff_ml.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2017 Devin Gaffney
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # DgaffMl
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'dgaff_ml'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install dgaff_ml
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/dgaff_ml/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/dgaff_ml.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dgaff_ml/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dgaff_ml"
8
+ spec.version = DgaffMl::VERSION
9
+ spec.authors = ["Devin Gaffney"]
10
+ spec.email = ["itsme@devingaffney.com"]
11
+ spec.summary = %q{Interface for API on machinelearning.devingaffney.com}
12
+ spec.description = %q{Interface for API on machinelearning.devingaffney.com}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rest-client", "~> 2.0.2"
24
+ spec.add_development_dependency "fast-stemmer", "~> 1.0.2"
25
+ end
data/echo.py ADDED
@@ -0,0 +1,3 @@
1
+ import sys
2
+ arg = sys.argv[1]
3
+ puts arg
@@ -0,0 +1,22 @@
1
+ require 'json'
2
+ require 'rest-client'
3
+ require 'fast-stemmer'
4
+ class DGaffML
5
+ class Client
6
+ def initialize(user_id)
7
+ @user = DGaffML::Request.login(user_id)
8
+ end
9
+
10
+ def models
11
+ DGaffML::Request.datasets(@user["id"])
12
+ end
13
+
14
+ def model(dataset_id)
15
+ DGaffML::Model.new(self, DGaffML::Request.dataset(@user["id"], dataset_id))
16
+ end
17
+
18
+ def predict(dataset_id, obs)
19
+ DGaffML::Request.predict(@user["id"], dataset_id, obs)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,103 @@
1
+ class DGaffML
2
+ class Model
3
+ attr_accessor :model
4
+ def initialize(client, model_response)
5
+ @client = client
6
+ @model = model_response
7
+ @dataset_id = @model["id"]
8
+ @user_id = @model["user_id"]
9
+ end
10
+
11
+ def predict(obs)
12
+ @client.predict(@dataset_id, translate_obs(obs))
13
+ end
14
+
15
+ def translate_obs(obs)
16
+ model_keys = self.model["conversion_pipeline"].keys.sort_by(&:to_i)
17
+ model_classes = model_keys.collect{|k| self.model["col_classes"][k.to_i]}
18
+ translated_rows = []
19
+ obs.each do |row|
20
+ translated_row = []
21
+ row.each_with_index do |el, i|
22
+ translated_row << cast_val(el, model_classes[i])
23
+ end
24
+ translated_rows << translated_row
25
+ end
26
+ self.convert(translated_rows, model_keys, model_classes)
27
+ end
28
+
29
+ def convert(rows, model_keys, model_classes)
30
+ transposed = rows.transpose
31
+ detexted = []
32
+ labels = []
33
+ transposed.each_with_index do |col, i|
34
+ if model_classes[i] == "Phrase" || model_classes[i] == "Text"
35
+ self.model["conversion_pipeline"][model_keys[i]]["unique_terms"].each do |term|
36
+ counted = []
37
+ col.each do |row|
38
+ row = [row.to_s] if row.nil?
39
+ counted << row.count(term)
40
+ end
41
+ detexted << counted
42
+ end
43
+ elsif model_classes[i] == "Categorical"
44
+ counted = []
45
+ col.each do |val|
46
+ counted << self.model["conversion_pipeline"][model_keys[i]]["unique_terms"].index(val.to_s)
47
+ end
48
+ detexted << counted
49
+ else
50
+ detexted << col.collect{|r| r||self.model["conversion_pipeline"][model_keys[i]]["average"]}
51
+ end
52
+ end
53
+ return detexted.transpose
54
+ end
55
+
56
+ def clean_str(string)
57
+ string.
58
+ gsub(/[^A-Za-z0-9(),!?\'\`]/, " ").
59
+ gsub(" ", " ").
60
+ gsub("\'s", " \'s").
61
+ gsub("", "").
62
+ gsub("\'ve", " \'ve").
63
+ gsub("n\'t", " n\'t").
64
+ gsub("\'re", " \'re").
65
+ gsub("\'d", " \'d").
66
+ gsub("\'ll", " \'ll").
67
+ gsub(",", " , ").
68
+ gsub("!", " ! ").
69
+ gsub("\(", " \\( ").
70
+ gsub("\)", " \\) ").
71
+ gsub(" \\\( \\\( \\\( ", " \(\(\( ").
72
+ gsub(" \\\) \\\) \\\) ", " \)\)\) ").
73
+ gsub("\?", " \? ").
74
+ gsub(/\s{2,}/, " ").
75
+ gsub(Regexp.new("http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+"), "<URL/>").
76
+ gsub("www", " ").
77
+ gsub("com", " ").
78
+ gsub("org", " ").
79
+ strip.
80
+ downcase
81
+ end
82
+
83
+ def cast_val(value, directive)
84
+ if directive == "Integer"
85
+ return value.to_i
86
+ elsif directive == "Float"
87
+ return value.to_f
88
+ elsif directive == "Time"
89
+ if value.length == 10 and value.scan(/\d/).count == 10
90
+ return Time.at(value).to_i
91
+ elsif value.length == 13 and value.scan(/\d/).count == 13
92
+ return Time.at(value).to_i
93
+ else
94
+ return Time.parse(value).to_i
95
+ end
96
+ elsif directive == "Text" or directive == "Phrase"
97
+ return clean_str(value).split(" ").collect{|word| Stemmer::stem_word(word)}
98
+ elsif directive == "Categorical"
99
+ return value
100
+ end
101
+ end
102
+ end
103
+ end
@@ -0,0 +1,23 @@
1
+ class DGaffML
2
+ class Request
3
+ def self.hostname
4
+ "http://machinelearning.devingaffney.com"
5
+ end
6
+
7
+ def self.login(user_id)
8
+ JSON.parse(RestClient.get(hostname+"/api/#{user_id}").body)
9
+ end
10
+
11
+ def self.dataset(user_id, dataset_id)
12
+ JSON.parse(RestClient.get(hostname+"/api/#{user_id}/dataset/#{dataset_id}").body)
13
+ end
14
+
15
+ def self.datasets(user_id)
16
+ JSON.parse(RestClient.get(hostname+"/api/#{user_id}/datasets").body)
17
+ end
18
+
19
+ def self.predict(user_id, dataset_id, obs)
20
+ JSON.parse(RestClient.post(hostname+"/api/#{user_id}/predict/#{dataset_id}", {data: obs.to_json}).body)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,3 @@
1
+ module DgaffMl
2
+ VERSION = "0.0.1"
3
+ end
data/lib/dgaff_ml.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "dgaff_ml/version"
2
+ require File.expand_path('../dgaff_ml/client', __FILE__)
3
+ require File.expand_path('../dgaff_ml/model', __FILE__)
4
+ require File.expand_path('../dgaff_ml/request', __FILE__)
5
+
6
+ module DgaffMl
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dgaff_ml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Devin Gaffney
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rest-client
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 2.0.2
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 2.0.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: fast-stemmer
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.0.2
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 1.0.2
69
+ description: Interface for API on machinelearning.devingaffney.com
70
+ email:
71
+ - itsme@devingaffney.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - dgaff_ml.gemspec
82
+ - echo.py
83
+ - lib/dgaff_ml.rb
84
+ - lib/dgaff_ml/client.rb
85
+ - lib/dgaff_ml/model.rb
86
+ - lib/dgaff_ml/request.rb
87
+ - lib/dgaff_ml/version.rb
88
+ homepage: ''
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ! '>='
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.4.2
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: Interface for API on machinelearning.devingaffney.com
112
+ test_files: []