UNPKG

3.65 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 Sigmoid kernel. The formula of this kernel is as follows:
30 * tanh(gamma * <x, y> + coef0)
31 */
32var SigmoidKernel = function (_Kernel) {
33 _inherits(SigmoidKernel, _Kernel);
34
35 /**
36 * Initialize the Sigmoid 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 */
42 function SigmoidKernel() {
43 var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
44 _ref$gamma = _ref.gamma,
45 gamma = _ref$gamma === undefined ? 0.01 : _ref$gamma,
46 _ref$coef = _ref.coef0,
47 coef0 = _ref$coef === undefined ? 0 : _ref$coef;
48
49 _classCallCheck(this, SigmoidKernel);
50
51 /**
52 * Normalization parameter of basic dot product
53 * @type {number}
54 */
55 var _this = _possibleConstructorReturn(this, (SigmoidKernel.__proto__ || Object.getPrototypeOf(SigmoidKernel)).call(this));
56
57 _this.gamma = gamma;
58
59 /**
60 * Bias coefficient (not part of the dot product)
61 * @type {number}
62 */
63 _this.coef0 = coef0;
64 return _this;
65 }
66
67 /**
68 * @see {@link Kernel#apply}
69 */
70
71
72 _createClass(SigmoidKernel, [{
73 key: 'apply',
74 value: function apply(x, y) {
75 return Math.tanh(this.gamma * Arrays.dot(x, y) + this.coef0);
76 }
77 }]);
78
79 return SigmoidKernel;
80}(_base2.default);
81
82exports.default = SigmoidKernel;
83module.exports = exports.default;
\No newline at end of file