tangram 0.1.3 → 0.3.0

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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +23 -19
  4. data/docs/Tangram.html +127 -0
  5. data/docs/Tangram/BagOfWordsFeatureContribution.html +507 -0
  6. data/docs/Tangram/Bigram.html +363 -0
  7. data/docs/Tangram/BinaryClassificationPredictOutput.html +493 -0
  8. data/docs/Tangram/FeatureContributions.html +435 -0
  9. data/docs/Tangram/IdentityFeatureContribution.html +435 -0
  10. data/docs/Tangram/LibTangram.html +160 -0
  11. data/docs/Tangram/LibTangram/TangramStringView.html +193 -0
  12. data/docs/Tangram/LoadModelOptions.html +291 -0
  13. data/docs/Tangram/Model.html +1250 -0
  14. data/docs/Tangram/MulticlassClassificationPredictOutput.html +565 -0
  15. data/docs/Tangram/NormalizedFeatureContribution.html +435 -0
  16. data/docs/Tangram/OneHotEncodedFeatureContribution.html +507 -0
  17. data/docs/Tangram/PredictOptions.html +421 -0
  18. data/docs/Tangram/RegressionPredictOutput.html +421 -0
  19. data/docs/Tangram/Unigram.html +291 -0
  20. data/docs/Tangram/WordEmbeddingFeatureContribution.html +435 -0
  21. data/docs/_index.html +310 -0
  22. data/docs/class_list.html +51 -0
  23. data/docs/css/common.css +1 -0
  24. data/docs/css/full_list.css +58 -0
  25. data/docs/css/style.css +497 -0
  26. data/docs/file.README.html +128 -0
  27. data/docs/file_list.html +56 -0
  28. data/docs/frames.html +17 -0
  29. data/docs/index.html +128 -0
  30. data/docs/js/app.js +314 -0
  31. data/docs/js/full_list.js +216 -0
  32. data/docs/js/jquery.js +4 -0
  33. data/docs/method_list.html +555 -0
  34. data/docs/top-level-namespace.html +110 -0
  35. data/examples/advanced.rb +49 -0
  36. data/examples/basic.rb +29 -0
  37. data/examples/heart_disease.tangram +0 -0
  38. data/lib/tangram.rb +1 -1
  39. data/lib/tangram/libtangram/aarch64-apple-darwin/libtangram.dylib +0 -0
  40. data/lib/tangram/libtangram/x86_64-apple-darwin/libtangram.dylib +0 -0
  41. data/lib/tangram/libtangram/x86_64-pc-windows-msvc/tangram.dll +0 -0
  42. data/lib/tangram/libtangram/x86_64-unknown-linux-gnu/libtangram.so +0 -0
  43. data/lib/tangram/libtangram/x86_64-unknown-linux-musl/libtangram.so +0 -0
  44. data/lib/tangram/tangram.rb +841 -0
  45. data/scripts/build +2 -4
  46. data/scripts/dev +4 -0
  47. data/scripts/docs +1 -0
  48. data/scripts/fmt +0 -0
  49. data/scripts/release +1 -0
  50. data/tangram.gemspec +10 -10
  51. metadata +52 -17
  52. data/examples/monitor/heart-disease.tangram +0 -0
  53. data/examples/monitor/main.rb +0 -52
  54. data/examples/predict/heart-disease.tangram +0 -0
  55. data/examples/predict/main.rb +0 -30
  56. data/lib/tangram/libtangram-0.1.3-linux-x86_64.so +0 -0
  57. data/lib/tangram/libtangram-0.1.3-macos-x86_64.dylib +0 -0
  58. data/lib/tangram/libtangram.rb +0 -24
  59. data/lib/tangram/model.rb +0 -133
  60. data/lib/tangram/tangram-0.1.3-windows-x86_64.dll +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cbbca9539d05f134e2e7ba0398b50c3610b567d5db99b39001b038c06035101
4
- data.tar.gz: 5b85cfc70d5a9ee0d3b209b951a5aa63af344f447020bfc9b970358c365e2885
3
+ metadata.gz: 6e9ad90eec0aa379aa164d2e6afad538d26c7ad8dbfb1f83edac6fa98ffb7ef3
4
+ data.tar.gz: 820062630f2882b1f399348073bcacc536ce4be3e691fb70a4d4ee0aa86b15f3
5
5
  SHA512:
6
- metadata.gz: 633884f7217d78f2ca19d6f1a29889c6e95e610a3ed93db2cf4210239590fb19f9df2d4d46feb7f5fe4b2366ef62f6ed012cc06130653e4003f4e5440548a1e4
7
- data.tar.gz: ee6a7a299e53433e4feccf03d4710a69dce5fab905aabf65c79c36eec6c0e04aef3e9079be33a73c945d8addae8263378cbcef8c4360921b39b0fc9d69a3c1ca
6
+ metadata.gz: 7a1ed9abef3cba7e3546763e4d7f0927617af3a361901cbc9cb7a9b080872c1b449c779fe80bef520b20ef973721cbf6bcbf0e4b5eef839ad19649f45cc3d6c5
7
+ data.tar.gz: fe6666f9ff59015f47f5515afbfd30eabb794dba362d2b6cef56ac259840e542b34ecafe8711150ccdec5961c60b97c8fb39542ec4249c2f8807e99893b90391
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2019 Tangram Inc
3
+ Copyright (c) 2020 Tangram, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # Tangram + Ruby
1
+ # Tangram for Ruby
2
2
 
3
- - [Watch the Video](https://www.tangramhq.com)
4
- - [Read the Docs](https://www.tangramhq.com/docs)
3
+ - [Watch the Video](https://www.tangram.xyz)
4
+ - [Read the Docs](https://www.tangram.xyz/docs)
5
5
 
6
- The Tangram Ruby library makes it easy to make predictions with your Tangram machine learning model from Ruby.
6
+ The Tangram Ruby gem makes it easy to make predictions with your Tangram machine learning model from Ruby.
7
7
 
8
8
  ## Usage
9
9
 
@@ -14,43 +14,47 @@ $ gem install tangram
14
14
  ```ruby
15
15
  require 'tangram'
16
16
 
17
- model = Tangram::Model.from_file('./heart-disease.tangram')
17
+ model = Tangram::Model.from_file('./heart_disease.tangram')
18
18
 
19
19
  input = {
20
- age: 63,
20
+ age: 63,
21
21
  gender: 'male',
22
22
  # ...
23
23
  }
24
24
 
25
25
  output = model.predict(input)
26
-
27
- puts(output)
28
26
  ```
29
27
 
30
- For more information, [read the docs](https://www.tangramhq.com/docs).
28
+ For more information, [read the docs](https://www.tangram.xyz/docs).
31
29
 
32
30
  ## Platform Support
33
31
 
34
- `tangram-ruby` is currently supported for Linux, macOS, and Windows on x64-64/amd64/x64 CPUs. Are you interested in another platform? Get in touch via email at help@tangramhq.com or with the chat bubble on our website at https://www.tangramhq.com.
32
+ Tangram for Ruby is currently supported on Linux, macOS, and Windows with AMD64 CPUs. Are you interested in another platform? [Open an issue](https://github.com/tangramxyz/tangram/issues/new) or send us an email at [help@tangram.xyz](mailto:help@tangram.xyz).
35
33
 
36
34
  ## Examples
37
35
 
38
- This repo contains two examples, [examples/predict]([examples/predict]) and [examples/monitor](examples/monitor).
36
+ The source for this gem contains two examples, `examples/predict` and `examples/monitor`.
37
+
38
+ ### Basic
39
+
40
+ The basic example demonstrates loading a model from a `.tangram` file and making a prediction.
39
41
 
40
- ### Predict
42
+ To run the example:
41
43
 
42
- This example demonstrates loading a model from a `.tangram` file and making a prediction.
44
+ ```
45
+ $ ruby examples/basic.rb
46
+ ```
43
47
 
44
- ### Monitor
48
+ ### Advanced
45
49
 
46
- This example demonstrates logging predictions and true values to the Tangram reporting and monitoring app. Before running the example, upload the `heart-disease.tangram` file in [examples/monitor/heart-disease.tangram](examples/monitor/heart-disease.tangram) to either https://app.tangramhq.com or your private instance. Then generate a token by clicking the "Tokens" link on the right side of the top bar.
50
+ The advanced example demonstrates logging predictions and true values to the Tangram app. Before running the example, run `tangram app` to start the app running locally, open `http://localhost:8080` in your browser, and upload the file `examples/heart_disease.tangram` to it.
47
51
 
48
- Then you can run the example:
52
+ To run the example:
49
53
 
50
54
  ```
51
- $ TANGRAM_TOKEN=<YOUR TOKEN HERE> ruby examples/monitor/main.rb
55
+ $ TANGRAM_URL=http://localhost:8080 ruby examples/advanced.rb
52
56
  ```
53
57
 
54
- Now if you refresh the production stats or production metrics tabs for the model you uploaded, you should see predictions and true values being reported.
58
+ Now if you refresh the production stats or production metrics tabs for the model you uploaded, you should see predictions and true values.
55
59
 
56
- For more information on reporting and monitoring, [read the docs](https://www.tangramhq.com/docs).
60
+ For more information, [read the docs](https://www.tangram.xyz/docs).
data/docs/Tangram.html ADDED
@@ -0,0 +1,127 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Module: Tangram
8
+
9
+ &mdash; Documentation by YARD 0.9.26
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "Tangram";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (T)</a> &raquo;
40
+
41
+
42
+ <span class="title">Tangram</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Module: Tangram
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ <dl>
80
+ <dt>Defined in:</dt>
81
+ <dd>lib/tangram/tangram.rb</dd>
82
+ </dl>
83
+
84
+ </div>
85
+
86
+ <h2>Overview</h2><div class="docstring">
87
+ <div class="discussion">
88
+ <p>This is the main module in the <code>tangram</code> gem.</p>
89
+
90
+
91
+ </div>
92
+ </div>
93
+ <div class="tags">
94
+
95
+
96
+ </div><h2>Defined Under Namespace</h2>
97
+ <p class="children">
98
+
99
+
100
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="Tangram/LibTangram.html" title="Tangram::LibTangram (module)">LibTangram</a></span>
101
+
102
+
103
+
104
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="Tangram/BagOfWordsFeatureContribution.html" title="Tangram::BagOfWordsFeatureContribution (class)">BagOfWordsFeatureContribution</a></span>, <span class='object_link'><a href="Tangram/Bigram.html" title="Tangram::Bigram (class)">Bigram</a></span>, <span class='object_link'><a href="Tangram/BinaryClassificationPredictOutput.html" title="Tangram::BinaryClassificationPredictOutput (class)">BinaryClassificationPredictOutput</a></span>, <span class='object_link'><a href="Tangram/FeatureContributions.html" title="Tangram::FeatureContributions (class)">FeatureContributions</a></span>, <span class='object_link'><a href="Tangram/IdentityFeatureContribution.html" title="Tangram::IdentityFeatureContribution (class)">IdentityFeatureContribution</a></span>, <span class='object_link'><a href="Tangram/LoadModelOptions.html" title="Tangram::LoadModelOptions (class)">LoadModelOptions</a></span>, <span class='object_link'><a href="Tangram/Model.html" title="Tangram::Model (class)">Model</a></span>, <span class='object_link'><a href="Tangram/MulticlassClassificationPredictOutput.html" title="Tangram::MulticlassClassificationPredictOutput (class)">MulticlassClassificationPredictOutput</a></span>, <span class='object_link'><a href="Tangram/NormalizedFeatureContribution.html" title="Tangram::NormalizedFeatureContribution (class)">NormalizedFeatureContribution</a></span>, <span class='object_link'><a href="Tangram/OneHotEncodedFeatureContribution.html" title="Tangram::OneHotEncodedFeatureContribution (class)">OneHotEncodedFeatureContribution</a></span>, <span class='object_link'><a href="Tangram/PredictOptions.html" title="Tangram::PredictOptions (class)">PredictOptions</a></span>, <span class='object_link'><a href="Tangram/RegressionPredictOutput.html" title="Tangram::RegressionPredictOutput (class)">RegressionPredictOutput</a></span>, <span class='object_link'><a href="Tangram/Unigram.html" title="Tangram::Unigram (class)">Unigram</a></span>, <span class='object_link'><a href="Tangram/WordEmbeddingFeatureContribution.html" title="Tangram::WordEmbeddingFeatureContribution (class)">WordEmbeddingFeatureContribution</a></span>
105
+
106
+
107
+ </p>
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+ </div>
118
+
119
+ <div id="footer">
120
+ Generated on Fri Apr 23 15:50:02 2021 by
121
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
122
+ 0.9.26 (ruby-3.0.1).
123
+ </div>
124
+
125
+ </div>
126
+ </body>
127
+ </html>
@@ -0,0 +1,507 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: Tangram::BagOfWordsFeatureContribution
8
+
9
+ &mdash; Documentation by YARD 0.9.26
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "Tangram::BagOfWordsFeatureContribution";
19
+ relpath = '../';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="../_index.html">Index (B)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../Tangram.html" title="Tangram (module)">Tangram</a></span></span>
41
+ &raquo;
42
+ <span class="title">BagOfWordsFeatureContribution</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="../class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Class: Tangram::BagOfWordsFeatureContribution
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName">Object</span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next">Tangram::BagOfWordsFeatureContribution</li>
78
+
79
+ </ul>
80
+ <a href="#" class="inheritanceTree">show all</a>
81
+
82
+ </dd>
83
+ </dl>
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ <dl>
96
+ <dt>Defined in:</dt>
97
+ <dd>lib/tangram/tangram.rb</dd>
98
+ </dl>
99
+
100
+ </div>
101
+
102
+ <h2>Overview</h2><div class="docstring">
103
+ <div class="discussion">
104
+ <p>This describes the contribution of a feature from a bag of words feature group.</p>
105
+
106
+
107
+ </div>
108
+ </div>
109
+ <div class="tags">
110
+
111
+
112
+ </div>
113
+
114
+
115
+
116
+ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
117
+ <ul class="summary">
118
+
119
+ <li class="public ">
120
+ <span class="summary_signature">
121
+
122
+ <a href="#column_name-instance_method" title="#column_name (instance method)">#<strong>column_name</strong> &#x21d2; Object </a>
123
+
124
+
125
+
126
+ </span>
127
+
128
+
129
+
130
+
131
+ <span class="note title readonly">readonly</span>
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+ <span class="summary_desc"><div class='inline'><p>This is the name of the source column for the feature group.</p>
142
+ </div></span>
143
+
144
+ </li>
145
+
146
+
147
+ <li class="public ">
148
+ <span class="summary_signature">
149
+
150
+ <a href="#feature_contribution_value-instance_method" title="#feature_contribution_value (instance method)">#<strong>feature_contribution_value</strong> &#x21d2; Object </a>
151
+
152
+
153
+
154
+ </span>
155
+
156
+
157
+
158
+
159
+ <span class="note title readonly">readonly</span>
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+ <span class="summary_desc"><div class='inline'><p>This is the amount that the feature contributed to the output.</p>
170
+ </div></span>
171
+
172
+ </li>
173
+
174
+
175
+ <li class="public ">
176
+ <span class="summary_signature">
177
+
178
+ <a href="#feature_value-instance_method" title="#feature_value (instance method)">#<strong>feature_value</strong> &#x21d2; Object </a>
179
+
180
+
181
+
182
+ </span>
183
+
184
+
185
+
186
+
187
+ <span class="note title readonly">readonly</span>
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+ <span class="summary_desc"><div class='inline'><p>This is the value of the feature.</p>
198
+ </div></span>
199
+
200
+ </li>
201
+
202
+
203
+ <li class="public ">
204
+ <span class="summary_signature">
205
+
206
+ <a href="#ngram-instance_method" title="#ngram (instance method)">#<strong>ngram</strong> &#x21d2; Object </a>
207
+
208
+
209
+
210
+ </span>
211
+
212
+
213
+
214
+
215
+ <span class="note title readonly">readonly</span>
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+ <span class="summary_desc"><div class='inline'><p>This is the ngram for the feature.</p>
226
+ </div></span>
227
+
228
+ </li>
229
+
230
+
231
+ </ul>
232
+
233
+
234
+
235
+
236
+
237
+ <h2>
238
+ Instance Method Summary
239
+ <small><a href="#" class="summary_toggle">collapse</a></small>
240
+ </h2>
241
+
242
+ <ul class="summary">
243
+
244
+ <li class="public ">
245
+ <span class="summary_signature">
246
+
247
+ <a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(column_name:, ngram:, feature_contribution_value:, feature_value:) &#x21d2; BagOfWordsFeatureContribution </a>
248
+
249
+
250
+
251
+ </span>
252
+
253
+
254
+ <span class="note title constructor">constructor</span>
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+ <span class="summary_desc"><div class='inline'><p>A new instance of BagOfWordsFeatureContribution.</p>
264
+ </div></span>
265
+
266
+ </li>
267
+
268
+
269
+ </ul>
270
+
271
+
272
+ <div id="constructor_details" class="method_details_list">
273
+ <h2>Constructor Details</h2>
274
+
275
+ <div class="method_details first">
276
+ <h3 class="signature first" id="initialize-instance_method">
277
+
278
+ #<strong>initialize</strong>(column_name:, ngram:, feature_contribution_value:, feature_value:) &#x21d2; <tt><span class='object_link'><a href="" title="Tangram::BagOfWordsFeatureContribution (class)">BagOfWordsFeatureContribution</a></span></tt>
279
+
280
+
281
+
282
+
283
+
284
+ </h3><div class="docstring">
285
+ <div class="discussion">
286
+ <p>Returns a new instance of BagOfWordsFeatureContribution.</p>
287
+
288
+
289
+ </div>
290
+ </div>
291
+ <div class="tags">
292
+
293
+
294
+ </div><table class="source_code">
295
+ <tr>
296
+ <td>
297
+ <pre class="lines">
298
+
299
+
300
+ 161
301
+ 162
302
+ 163
303
+ 164
304
+ 165
305
+ 166</pre>
306
+ </td>
307
+ <td>
308
+ <pre class="code"><span class="info file"># File 'lib/tangram/tangram.rb', line 161</span>
309
+
310
+ <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='label'>column_name:</span><span class='comma'>,</span> <span class='label'>ngram:</span><span class='comma'>,</span> <span class='label'>feature_contribution_value:</span><span class='comma'>,</span> <span class='label'>feature_value:</span><span class='rparen'>)</span>
311
+ <span class='ivar'>@column_name</span> <span class='op'>=</span> <span class='id identifier rubyid_column_name'>column_name</span>
312
+ <span class='ivar'>@ngram</span> <span class='op'>=</span> <span class='id identifier rubyid_ngram'>ngram</span>
313
+ <span class='ivar'>@feature_contribution_value</span> <span class='op'>=</span> <span class='id identifier rubyid_feature_contribution_value'>feature_contribution_value</span>
314
+ <span class='ivar'>@feature_value</span> <span class='op'>=</span> <span class='id identifier rubyid_feature_value'>feature_value</span>
315
+ <span class='kw'>end</span></pre>
316
+ </td>
317
+ </tr>
318
+ </table>
319
+ </div>
320
+
321
+ </div>
322
+
323
+ <div id="instance_attr_details" class="attr_details">
324
+ <h2>Instance Attribute Details</h2>
325
+
326
+
327
+ <span id=""></span>
328
+ <div class="method_details first">
329
+ <h3 class="signature first" id="column_name-instance_method">
330
+
331
+ #<strong>column_name</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
332
+
333
+
334
+
335
+
336
+
337
+ </h3><div class="docstring">
338
+ <div class="discussion">
339
+ <p>This is the name of the source column for the feature group.</p>
340
+
341
+
342
+ </div>
343
+ </div>
344
+ <div class="tags">
345
+
346
+
347
+ </div><table class="source_code">
348
+ <tr>
349
+ <td>
350
+ <pre class="lines">
351
+
352
+
353
+ 154
354
+ 155
355
+ 156</pre>
356
+ </td>
357
+ <td>
358
+ <pre class="code"><span class="info file"># File 'lib/tangram/tangram.rb', line 154</span>
359
+
360
+ <span class='kw'>def</span> <span class='id identifier rubyid_column_name'>column_name</span>
361
+ <span class='ivar'>@column_name</span>
362
+ <span class='kw'>end</span></pre>
363
+ </td>
364
+ </tr>
365
+ </table>
366
+ </div>
367
+
368
+
369
+ <span id=""></span>
370
+ <div class="method_details ">
371
+ <h3 class="signature " id="feature_contribution_value-instance_method">
372
+
373
+ #<strong>feature_contribution_value</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
374
+
375
+
376
+
377
+
378
+
379
+ </h3><div class="docstring">
380
+ <div class="discussion">
381
+ <p>This is the amount that the feature contributed to the output.</p>
382
+
383
+
384
+ </div>
385
+ </div>
386
+ <div class="tags">
387
+
388
+
389
+ </div><table class="source_code">
390
+ <tr>
391
+ <td>
392
+ <pre class="lines">
393
+
394
+
395
+ 160
396
+ 161
397
+ 162</pre>
398
+ </td>
399
+ <td>
400
+ <pre class="code"><span class="info file"># File 'lib/tangram/tangram.rb', line 160</span>
401
+
402
+ <span class='kw'>def</span> <span class='id identifier rubyid_feature_contribution_value'>feature_contribution_value</span>
403
+ <span class='ivar'>@feature_contribution_value</span>
404
+ <span class='kw'>end</span></pre>
405
+ </td>
406
+ </tr>
407
+ </table>
408
+ </div>
409
+
410
+
411
+ <span id=""></span>
412
+ <div class="method_details ">
413
+ <h3 class="signature " id="feature_value-instance_method">
414
+
415
+ #<strong>feature_value</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
416
+
417
+
418
+
419
+
420
+
421
+ </h3><div class="docstring">
422
+ <div class="discussion">
423
+ <p>This is the value of the feature.</p>
424
+
425
+
426
+ </div>
427
+ </div>
428
+ <div class="tags">
429
+
430
+
431
+ </div><table class="source_code">
432
+ <tr>
433
+ <td>
434
+ <pre class="lines">
435
+
436
+
437
+ 158
438
+ 159
439
+ 160</pre>
440
+ </td>
441
+ <td>
442
+ <pre class="code"><span class="info file"># File 'lib/tangram/tangram.rb', line 158</span>
443
+
444
+ <span class='kw'>def</span> <span class='id identifier rubyid_feature_value'>feature_value</span>
445
+ <span class='ivar'>@feature_value</span>
446
+ <span class='kw'>end</span></pre>
447
+ </td>
448
+ </tr>
449
+ </table>
450
+ </div>
451
+
452
+
453
+ <span id=""></span>
454
+ <div class="method_details ">
455
+ <h3 class="signature " id="ngram-instance_method">
456
+
457
+ #<strong>ngram</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
458
+
459
+
460
+
461
+
462
+
463
+ </h3><div class="docstring">
464
+ <div class="discussion">
465
+ <p>This is the ngram for the feature.</p>
466
+
467
+
468
+ </div>
469
+ </div>
470
+ <div class="tags">
471
+
472
+
473
+ </div><table class="source_code">
474
+ <tr>
475
+ <td>
476
+ <pre class="lines">
477
+
478
+
479
+ 156
480
+ 157
481
+ 158</pre>
482
+ </td>
483
+ <td>
484
+ <pre class="code"><span class="info file"># File 'lib/tangram/tangram.rb', line 156</span>
485
+
486
+ <span class='kw'>def</span> <span class='id identifier rubyid_ngram'>ngram</span>
487
+ <span class='ivar'>@ngram</span>
488
+ <span class='kw'>end</span></pre>
489
+ </td>
490
+ </tr>
491
+ </table>
492
+ </div>
493
+
494
+ </div>
495
+
496
+
497
+ </div>
498
+
499
+ <div id="footer">
500
+ Generated on Fri Apr 23 15:50:02 2021 by
501
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
502
+ 0.9.26 (ruby-3.0.1).
503
+ </div>
504
+
505
+ </div>
506
+ </body>
507
+ </html>