UNPKG

3.96 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8
9var _base = require('./base');
10
11var _base2 = _interopRequireDefault(_base);
12
13var _arrays = require('../arrays');
14
15var Arrays = _interopRequireWildcard(_arrays);
16
17function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
18
19function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20
21function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
22
23function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
24
25function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } // Internal dependencies
26
27
28/**
29 * The Polynomial kernel. The formula of this kernel is as follows:
30 * (gamma * <x, y> + coef0)^degree
31 */
32var PolynomialKernel = function (_Kernel) {
33 _inherits(PolynomialKernel, _Kernel);
34
35 /**
36 * Initialize the Polynomial kernel with user-specified parameters
37 *
38 * @param {Object} [options] - User-defined options
39 * @param {number} [options.gamma = 1] - Normalization parameter of basic dot product
40 * @param {number} [options.coef0 = 1] - Bias coefficient (not part of the dot product)
41 * @param {number} [options.degree = 2] - Degree of the polynomial
42 */
43 function PolynomialKernel() {
44 var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
45 _ref$gamma = _ref.gamma,
46 gamma = _ref$gamma === undefined ? 1 : _ref$gamma,
47 _ref$coef = _ref.coef0,
48 coef0 = _ref$coef === undefined ? 0 : _ref$coef,
49 _ref$degree = _ref.degree,
50 degree = _ref$degree === undefined ? 2 : _ref$degree;
51
52 _classCallCheck(this, PolynomialKernel);
53
54 /**
55 * Normalization parameter of basic dot product
56 * @type {number}
57 */
58 var _this = _possibleConstructorReturn(this, (PolynomialKernel.__proto__ || Object.getPrototypeOf(PolynomialKernel)).call(this));
59
60 _this.gamma = gamma;
61
62 /**
63 * Bias coefficient (not part of the dot product)
64 * @type {number}
65 */
66 _this.coef0 = coef0;
67
68 /**
69 * Degree of the polynomial
70 * @type {number}
71 */
72 _this.degree = degree;
73 return _this;
74 }
75
76 /**
77 * @see {@link Kernel#apply}
78 */
79
80
81 _createClass(PolynomialKernel, [{
82 key: 'apply',
83 value: function apply(x, y) {
84 return Math.pow(this.gamma * Arrays.dot(x, y) + this.coef0, this.degree);
85 }
86 }]);
87
88 return PolynomialKernel;
89}(_base2.default);
90
91exports.default = PolynomialKernel;
92module.exports = exports.default;
\No newline at end of file