UNPKG

3.28 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 Gaussian kernel, also known as the radial basis function (RBF) kernel
30 */
31var GaussianKernel = function (_Kernel) {
32 _inherits(GaussianKernel, _Kernel);
33
34 /**
35 * Initialize the Gaussian kernel with user-specified parameters
36 *
37 * @param {number} [sigmaSquared = 1] - Normalization parameter for exponential
38 */
39 function GaussianKernel() {
40 var sigmaSquared = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1;
41
42 _classCallCheck(this, GaussianKernel);
43
44 /**
45 * Normalization parameter for exponential
46 *
47 * @type {number}
48 */
49 var _this = _possibleConstructorReturn(this, (GaussianKernel.__proto__ || Object.getPrototypeOf(GaussianKernel)).call(this));
50
51 _this.sigmaSquared = sigmaSquared;
52 return _this;
53 }
54
55 /**
56 * @see {@link Kernel#apply}
57 */
58
59
60 _createClass(GaussianKernel, [{
61 key: 'apply',
62 value: function apply(x, y) {
63 // Gaussian
64 var diff = Arrays.sum(x, Arrays.scale(y, -1));
65 return Math.exp(-Arrays.dot(diff, diff) / (2 * this.sigmaSquared));
66 }
67 }]);
68
69 return GaussianKernel;
70}(_base2.default);
71
72exports.default = GaussianKernel;
73module.exports = exports.default;
\No newline at end of file