We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5120741 commit e195473Copy full SHA for e195473
src/index.js
@@ -249,6 +249,13 @@ DD.prototype.deleteTrain = function deleteTrain(sname, job = 1) {
249
250
/* API Predict */
251
252
+// Makes prediction from data and model
253
+//
254
+// @param {Object} postData prediction parameters
255
+DD.prototype.postPredict = function postPredict(postData) {
256
+ return this._post(this.urls.predict, postData);
257
+};
258
+
259
// Makes prediction from data and model
260
//
261
// @param {String} name service name as a resource
0 commit comments