nlptoolkit-classification 1.0.8 → 1.0.9

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 (178) hide show
  1. package/dist/Attribute/Attribute.js +6 -16
  2. package/dist/Attribute/Attribute.js.map +1 -1
  3. package/dist/Attribute/AttributeType.js +22 -32
  4. package/dist/Attribute/AttributeType.js.map +1 -1
  5. package/dist/Attribute/BinaryAttribute.js +14 -24
  6. package/dist/Attribute/BinaryAttribute.js.map +1 -1
  7. package/dist/Attribute/ContinuousAttribute.js +46 -55
  8. package/dist/Attribute/ContinuousAttribute.js.map +1 -1
  9. package/dist/Attribute/DiscreteAttribute.js +38 -48
  10. package/dist/Attribute/DiscreteAttribute.js.map +1 -1
  11. package/dist/Attribute/DiscreteIndexedAttribute.js +47 -55
  12. package/dist/Attribute/DiscreteIndexedAttribute.js.map +1 -1
  13. package/dist/DataSet/DataDefinition.js +115 -123
  14. package/dist/DataSet/DataDefinition.js.map +1 -1
  15. package/dist/DataSet/DataSet.js +268 -245
  16. package/dist/DataSet/DataSet.js.map +1 -1
  17. package/dist/DistanceMetric/DistanceMetric.js +2 -12
  18. package/dist/DistanceMetric/EuclidianDistance.js +27 -37
  19. package/dist/DistanceMetric/EuclidianDistance.js.map +1 -1
  20. package/dist/DistanceMetric/MahalanobisDistance.js +27 -36
  21. package/dist/DistanceMetric/MahalanobisDistance.js.map +1 -1
  22. package/dist/Experiment/BootstrapRun.js +31 -40
  23. package/dist/Experiment/BootstrapRun.js.map +1 -1
  24. package/dist/Experiment/Experiment.js +46 -53
  25. package/dist/Experiment/Experiment.js.map +1 -1
  26. package/dist/Experiment/KFoldRun.js +45 -54
  27. package/dist/Experiment/KFoldRun.js.map +1 -1
  28. package/dist/Experiment/KFoldRunSeparateTest.js +48 -58
  29. package/dist/Experiment/KFoldRunSeparateTest.js.map +1 -1
  30. package/dist/Experiment/MultipleRun.js +2 -12
  31. package/dist/Experiment/MxKFoldRun.js +31 -40
  32. package/dist/Experiment/MxKFoldRun.js.map +1 -1
  33. package/dist/Experiment/MxKFoldRunSeparateTest.js +35 -44
  34. package/dist/Experiment/MxKFoldRunSeparateTest.js.map +1 -1
  35. package/dist/Experiment/SingleRun.js +2 -12
  36. package/dist/Experiment/SingleRunWithK.js +39 -48
  37. package/dist/Experiment/SingleRunWithK.js.map +1 -1
  38. package/dist/Experiment/StratifiedKFoldRun.js +26 -36
  39. package/dist/Experiment/StratifiedKFoldRun.js.map +1 -1
  40. package/dist/Experiment/StratifiedKFoldRunSeparateTest.js +30 -40
  41. package/dist/Experiment/StratifiedKFoldRunSeparateTest.js.map +1 -1
  42. package/dist/Experiment/StratifiedMxKFoldRun.js +29 -39
  43. package/dist/Experiment/StratifiedMxKFoldRun.js.map +1 -1
  44. package/dist/Experiment/StratifiedMxKFoldRunSeparateTest.js +34 -43
  45. package/dist/Experiment/StratifiedMxKFoldRunSeparateTest.js.map +1 -1
  46. package/dist/Experiment/StratifiedSingleRunWithK.js +27 -36
  47. package/dist/Experiment/StratifiedSingleRunWithK.js.map +1 -1
  48. package/dist/FeatureSelection/BackwardSelection.js +26 -36
  49. package/dist/FeatureSelection/BackwardSelection.js.map +1 -1
  50. package/dist/FeatureSelection/FeatureSubSet.js +72 -82
  51. package/dist/FeatureSelection/FeatureSubSet.js.map +1 -1
  52. package/dist/FeatureSelection/FloatingSelection.js +25 -35
  53. package/dist/FeatureSelection/FloatingSelection.js.map +1 -1
  54. package/dist/FeatureSelection/ForwardSelection.js +25 -35
  55. package/dist/FeatureSelection/ForwardSelection.js.map +1 -1
  56. package/dist/FeatureSelection/SubSetSelection.js +69 -78
  57. package/dist/FeatureSelection/SubSetSelection.js.map +1 -1
  58. package/dist/Filter/DiscreteToContinuous.js +50 -60
  59. package/dist/Filter/DiscreteToContinuous.js.map +1 -1
  60. package/dist/Filter/DiscreteToIndexed.js +40 -50
  61. package/dist/Filter/DiscreteToIndexed.js.map +1 -1
  62. package/dist/Filter/FeatureFilter.js +23 -32
  63. package/dist/Filter/FeatureFilter.js.map +1 -1
  64. package/dist/Filter/LaryFilter.js +46 -55
  65. package/dist/Filter/LaryFilter.js.map +1 -1
  66. package/dist/Filter/LaryToBinary.js +48 -58
  67. package/dist/Filter/LaryToBinary.js.map +1 -1
  68. package/dist/Filter/Normalize.js +33 -41
  69. package/dist/Filter/Normalize.js.map +1 -1
  70. package/dist/Filter/Pca.js +86 -96
  71. package/dist/Filter/Pca.js.map +1 -1
  72. package/dist/Filter/TrainedFeatureFilter.js +14 -24
  73. package/dist/Filter/TrainedFeatureFilter.js.map +1 -1
  74. package/dist/Instance/CompositeInstance.js +46 -56
  75. package/dist/Instance/CompositeInstance.js.map +1 -1
  76. package/dist/Instance/Instance.js +145 -154
  77. package/dist/Instance/Instance.js.map +1 -1
  78. package/dist/InstanceList/InstanceList.js +466 -443
  79. package/dist/InstanceList/InstanceList.js.map +1 -1
  80. package/dist/InstanceList/InstanceListOfSameClass.js +23 -32
  81. package/dist/InstanceList/InstanceListOfSameClass.js.map +1 -1
  82. package/dist/InstanceList/Partition.js +167 -177
  83. package/dist/InstanceList/Partition.js.map +1 -1
  84. package/dist/Model/DecisionTree/DecisionCondition.js +71 -80
  85. package/dist/Model/DecisionTree/DecisionCondition.js.map +1 -1
  86. package/dist/Model/DecisionTree/DecisionNode.js +302 -311
  87. package/dist/Model/DecisionTree/DecisionNode.js.map +1 -1
  88. package/dist/Model/DecisionTree/DecisionStump.js +22 -32
  89. package/dist/Model/DecisionTree/DecisionStump.js.map +1 -1
  90. package/dist/Model/DecisionTree/DecisionTree.js +89 -98
  91. package/dist/Model/DecisionTree/DecisionTree.js.map +1 -1
  92. package/dist/Model/DummyModel.js +64 -73
  93. package/dist/Model/DummyModel.js.map +1 -1
  94. package/dist/Model/Ensemble/BaggingModel.js +34 -44
  95. package/dist/Model/Ensemble/BaggingModel.js.map +1 -1
  96. package/dist/Model/Ensemble/RandomForestModel.js +31 -41
  97. package/dist/Model/Ensemble/RandomForestModel.js.map +1 -1
  98. package/dist/Model/Ensemble/TreeEnsembleModel.js +55 -64
  99. package/dist/Model/Ensemble/TreeEnsembleModel.js.map +1 -1
  100. package/dist/Model/Model.js +130 -140
  101. package/dist/Model/Model.js.map +1 -1
  102. package/dist/Model/NeuralNetwork/DeepNetworkModel.js +162 -169
  103. package/dist/Model/NeuralNetwork/DeepNetworkModel.js.map +1 -1
  104. package/dist/Model/NeuralNetwork/LinearPerceptronModel.js +69 -78
  105. package/dist/Model/NeuralNetwork/LinearPerceptronModel.js.map +1 -1
  106. package/dist/Model/NeuralNetwork/MultiLayerPerceptronModel.js +112 -120
  107. package/dist/Model/NeuralNetwork/MultiLayerPerceptronModel.js.map +1 -1
  108. package/dist/Model/NeuralNetwork/NeuralNetworkModel.js +197 -201
  109. package/dist/Model/NeuralNetwork/NeuralNetworkModel.js.map +1 -1
  110. package/dist/Model/NonParametric/KnnInstance.js +21 -29
  111. package/dist/Model/NonParametric/KnnInstance.js.map +1 -1
  112. package/dist/Model/NonParametric/KnnModel.js +101 -108
  113. package/dist/Model/NonParametric/KnnModel.js.map +1 -1
  114. package/dist/Model/Parametric/GaussianModel.js +82 -91
  115. package/dist/Model/Parametric/GaussianModel.js.map +1 -1
  116. package/dist/Model/Parametric/KMeansModel.js +59 -67
  117. package/dist/Model/Parametric/KMeansModel.js.map +1 -1
  118. package/dist/Model/Parametric/LdaModel.js +83 -91
  119. package/dist/Model/Parametric/LdaModel.js.map +1 -1
  120. package/dist/Model/Parametric/NaiveBayesModel.js +119 -132
  121. package/dist/Model/Parametric/NaiveBayesModel.js.map +1 -1
  122. package/dist/Model/Parametric/QdaModel.js +70 -79
  123. package/dist/Model/Parametric/QdaModel.js.map +1 -1
  124. package/dist/Model/RandomModel.js +85 -92
  125. package/dist/Model/RandomModel.js.map +1 -1
  126. package/dist/Model/ValidatedModel.js +21 -31
  127. package/dist/Model/ValidatedModel.js.map +1 -1
  128. package/dist/Parameter/ActivationFunction.js +9 -19
  129. package/dist/Parameter/ActivationFunction.js.map +1 -1
  130. package/dist/Parameter/BaggingParameter.js +24 -33
  131. package/dist/Parameter/BaggingParameter.js.map +1 -1
  132. package/dist/Parameter/C45Parameter.js +34 -42
  133. package/dist/Parameter/C45Parameter.js.map +1 -1
  134. package/dist/Parameter/DeepNetworkParameter.js +48 -56
  135. package/dist/Parameter/DeepNetworkParameter.js.map +1 -1
  136. package/dist/Parameter/KMeansParameter.js +29 -38
  137. package/dist/Parameter/KMeansParameter.js.map +1 -1
  138. package/dist/Parameter/KnnParameter.js +25 -34
  139. package/dist/Parameter/KnnParameter.js.map +1 -1
  140. package/dist/Parameter/LinearPerceptronParameter.js +56 -62
  141. package/dist/Parameter/LinearPerceptronParameter.js.map +1 -1
  142. package/dist/Parameter/MultiLayerPerceptronParameter.js +38 -46
  143. package/dist/Parameter/MultiLayerPerceptronParameter.js.map +1 -1
  144. package/dist/Parameter/Parameter.js +21 -30
  145. package/dist/Parameter/Parameter.js.map +1 -1
  146. package/dist/Parameter/RandomForestParameter.js +25 -34
  147. package/dist/Parameter/RandomForestParameter.js.map +1 -1
  148. package/dist/Performance/ClassificationPerformance.js +24 -33
  149. package/dist/Performance/ClassificationPerformance.js.map +1 -1
  150. package/dist/Performance/ConfusionMatrix.js +149 -158
  151. package/dist/Performance/ConfusionMatrix.js.map +1 -1
  152. package/dist/Performance/DetailedClassificationPerformance.js +23 -32
  153. package/dist/Performance/DetailedClassificationPerformance.js.map +1 -1
  154. package/dist/Performance/ExperimentPerformance.js +184 -161
  155. package/dist/Performance/ExperimentPerformance.js.map +1 -1
  156. package/dist/Performance/Performance.js +21 -30
  157. package/dist/Performance/Performance.js.map +1 -1
  158. package/dist/StatisticalTest/Combined5x2F.js +41 -51
  159. package/dist/StatisticalTest/Combined5x2F.js.map +1 -1
  160. package/dist/StatisticalTest/Combined5x2t.js +42 -52
  161. package/dist/StatisticalTest/Combined5x2t.js.map +1 -1
  162. package/dist/StatisticalTest/Paired5x2t.js +40 -50
  163. package/dist/StatisticalTest/Paired5x2t.js.map +1 -1
  164. package/dist/StatisticalTest/PairedTest.js +31 -41
  165. package/dist/StatisticalTest/PairedTest.js.map +1 -1
  166. package/dist/StatisticalTest/Pairedt.js +38 -48
  167. package/dist/StatisticalTest/Pairedt.js.map +1 -1
  168. package/dist/StatisticalTest/Sign.js +50 -60
  169. package/dist/StatisticalTest/Sign.js.map +1 -1
  170. package/dist/StatisticalTest/StatisticalTestResult.js +65 -73
  171. package/dist/StatisticalTest/StatisticalTestResult.js.map +1 -1
  172. package/dist/StatisticalTest/StatisticalTestResultType.js +11 -21
  173. package/dist/StatisticalTest/StatisticalTestResultType.js.map +1 -1
  174. package/dist/index.js +95 -101
  175. package/dist/index.js.map +1 -1
  176. package/package.json +7 -6
  177. package/tsconfig.json +4 -3
  178. package/source/tsconfig.json +0 -13
@@ -1,170 +1,161 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "../Attribute/Attribute", "../Attribute/ContinuousAttribute", "../Attribute/DiscreteAttribute", "nlptoolkit-math/dist/Vector"], factory);
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Instance = void 0;
4
+ const Attribute_1 = require("../Attribute/Attribute");
5
+ const ContinuousAttribute_1 = require("../Attribute/ContinuousAttribute");
6
+ const DiscreteAttribute_1 = require("../Attribute/DiscreteAttribute");
7
+ const Vector_1 = require("nlptoolkit-math/dist/Vector");
8
+ class Instance {
9
+ classLabel;
10
+ attributes = new Array();
11
+ /**
12
+ * Constructor for a single instance. Given the attributes and class label, it generates a new instance.
13
+ *
14
+ * @param classLabel Class label of the instance.
15
+ * @param attributes Attributes of the instance.
16
+ */
17
+ constructor(classLabel, attributes) {
18
+ this.classLabel = classLabel;
19
+ if (attributes != undefined) {
20
+ this.attributes = attributes;
21
+ }
8
22
  }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.Instance = void 0;
13
- const Attribute_1 = require("../Attribute/Attribute");
14
- const ContinuousAttribute_1 = require("../Attribute/ContinuousAttribute");
15
- const DiscreteAttribute_1 = require("../Attribute/DiscreteAttribute");
16
- const Vector_1 = require("nlptoolkit-math/dist/Vector");
17
- class Instance {
18
- /**
19
- * Constructor for a single instance. Given the attributes and class label, it generates a new instance.
20
- *
21
- * @param classLabel Class label of the instance.
22
- * @param attributes Attributes of the instance.
23
- */
24
- constructor(classLabel, attributes) {
25
- this.attributes = new Array();
26
- this.classLabel = classLabel;
27
- if (attributes != undefined) {
28
- this.attributes = attributes;
29
- }
23
+ /**
24
+ * Adds a new attribute.
25
+ *
26
+ * @param value Attribute to be added.
27
+ */
28
+ addAttribute(value) {
29
+ if (value instanceof Attribute_1.Attribute) {
30
+ this.attributes.push(value);
30
31
  }
31
- /**
32
- * Adds a new attribute.
33
- *
34
- * @param value Attribute to be added.
35
- */
36
- addAttribute(value) {
37
- if (value instanceof Attribute_1.Attribute) {
38
- this.attributes.push(value);
32
+ else {
33
+ if (!Number.isNaN(value)) {
34
+ this.attributes.push(new ContinuousAttribute_1.ContinuousAttribute(value));
39
35
  }
40
36
  else {
41
- if (!Number.isNaN(value)) {
42
- this.attributes.push(new ContinuousAttribute_1.ContinuousAttribute(value));
43
- }
44
- else {
45
- this.attributes.push(new DiscreteAttribute_1.DiscreteAttribute(value));
46
- }
37
+ this.attributes.push(new DiscreteAttribute_1.DiscreteAttribute(value));
47
38
  }
48
39
  }
49
- /**
50
- * Adds a {@link Vector} of continuous attributes.
51
- *
52
- * @param vector {@link Vector} that has the continuous attributes.
53
- */
54
- addVectorAttribute(vector) {
55
- for (let i = 0; i < vector.size(); i++) {
56
- this.attributes.push(new ContinuousAttribute_1.ContinuousAttribute(vector.getValue(i)));
57
- }
58
- }
59
- /**
60
- * Removes attribute with the given index from the attributes list.
61
- *
62
- * @param index Index of the attribute to be removed.
63
- */
64
- removeAttribute(index) {
65
- this.attributes.splice(index, 1);
66
- }
67
- /**
68
- * Removes all the attributes from the attributes list.
69
- */
70
- removeAllAttributes() {
71
- this.attributes = new Array();
72
- }
73
- /**
74
- * Accessor for a single attribute.
75
- *
76
- * @param index Index of the attribute to be accessed.
77
- * @return Attribute with index 'index'.
78
- */
79
- getAttribute(index) {
80
- return this.attributes[index];
81
- }
82
- /**
83
- * Returns the number of attributes in the attributes list.
84
- *
85
- * @return Number of attributes in the attributes list.
86
- */
87
- attributeSize() {
88
- return this.attributes.length;
40
+ }
41
+ /**
42
+ * Adds a {@link Vector} of continuous attributes.
43
+ *
44
+ * @param vector {@link Vector} that has the continuous attributes.
45
+ */
46
+ addVectorAttribute(vector) {
47
+ for (let i = 0; i < vector.size(); i++) {
48
+ this.attributes.push(new ContinuousAttribute_1.ContinuousAttribute(vector.getValue(i)));
89
49
  }
90
- /**
91
- * Returns the number of continuous and discrete indexed attributes in the attributes list.
92
- *
93
- * @return Number of continuous and discrete indexed attributes in the attributes list.
94
- */
95
- continuousAttributeSize() {
96
- let size = 0;
97
- for (let attribute of this.attributes) {
98
- size += attribute.continuousAttributeSize();
99
- }
100
- return size;
50
+ }
51
+ /**
52
+ * Removes attribute with the given index from the attributes list.
53
+ *
54
+ * @param index Index of the attribute to be removed.
55
+ */
56
+ removeAttribute(index) {
57
+ this.attributes.splice(index, 1);
58
+ }
59
+ /**
60
+ * Removes all the attributes from the attributes list.
61
+ */
62
+ removeAllAttributes() {
63
+ this.attributes = new Array();
64
+ }
65
+ /**
66
+ * Accessor for a single attribute.
67
+ *
68
+ * @param index Index of the attribute to be accessed.
69
+ * @return Attribute with index 'index'.
70
+ */
71
+ getAttribute(index) {
72
+ return this.attributes[index];
73
+ }
74
+ /**
75
+ * Returns the number of attributes in the attributes list.
76
+ *
77
+ * @return Number of attributes in the attributes list.
78
+ */
79
+ attributeSize() {
80
+ return this.attributes.length;
81
+ }
82
+ /**
83
+ * Returns the number of continuous and discrete indexed attributes in the attributes list.
84
+ *
85
+ * @return Number of continuous and discrete indexed attributes in the attributes list.
86
+ */
87
+ continuousAttributeSize() {
88
+ let size = 0;
89
+ for (let attribute of this.attributes) {
90
+ size += attribute.continuousAttributeSize();
101
91
  }
102
- /**
103
- * The continuousAttributes method creates a new {@link Array} result and it adds the continuous attributes of the
104
- * attributes list and also it adds 1 for the discrete indexed attributes
105
- * .
106
- *
107
- * @return result {@link Array} that has continuous and discrete indexed attributes.
108
- */
109
- continuousAttributes() {
110
- let result = new Array();
111
- for (let attribute of this.attributes) {
112
- for (let continuousAttribute of attribute.continuousAttributes()) {
113
- result.push(continuousAttribute);
114
- }
92
+ return size;
93
+ }
94
+ /**
95
+ * The continuousAttributes method creates a new {@link Array} result and it adds the continuous attributes of the
96
+ * attributes list and also it adds 1 for the discrete indexed attributes
97
+ * .
98
+ *
99
+ * @return result {@link Array} that has continuous and discrete indexed attributes.
100
+ */
101
+ continuousAttributes() {
102
+ let result = new Array();
103
+ for (let attribute of this.attributes) {
104
+ for (let continuousAttribute of attribute.continuousAttributes()) {
105
+ result.push(continuousAttribute);
115
106
  }
116
- return result;
117
- }
118
- /**
119
- * Accessor for the class label.
120
- *
121
- * @return Class label of the instance.
122
- */
123
- getClassLabel() {
124
- return this.classLabel;
125
107
  }
126
- /**
127
- * Converts instance to a {@link String}.
128
- *
129
- * @return A string of attributes separated with comma character.
130
- */
131
- toString() {
132
- let result = "";
133
- for (let attribute of this.attributes) {
134
- result = result + attribute.toString() + ",";
135
- }
136
- result = result + this.classLabel;
137
- return result;
108
+ return result;
109
+ }
110
+ /**
111
+ * Accessor for the class label.
112
+ *
113
+ * @return Class label of the instance.
114
+ */
115
+ getClassLabel() {
116
+ return this.classLabel;
117
+ }
118
+ /**
119
+ * Converts instance to a {@link String}.
120
+ *
121
+ * @return A string of attributes separated with comma character.
122
+ */
123
+ toString() {
124
+ let result = "";
125
+ for (let attribute of this.attributes) {
126
+ result = result + attribute.toString() + ",";
138
127
  }
139
- /**
140
- * The getSubSetOfFeatures method takes a {@link FeatureSubSet} as an input. First it creates a result {@link Instance}
141
- * with the class label, and adds the attributes of the given featureSubSet to it.
142
- *
143
- * @param featureSubSet {@link FeatureSubSet} an {@link Array} of indices.
144
- * @return result Instance.
145
- */
146
- getSubSetOfFeatures(featureSubSet) {
147
- let result = new Instance(this.classLabel);
148
- for (let i = 0; i < featureSubSet.size(); i++) {
149
- result.addAttribute(this.attributes[featureSubSet.get(i)]);
150
- }
151
- return result;
128
+ result = result + this.classLabel;
129
+ return result;
130
+ }
131
+ /**
132
+ * The getSubSetOfFeatures method takes a {@link FeatureSubSet} as an input. First it creates a result {@link Instance}
133
+ * with the class label, and adds the attributes of the given featureSubSet to it.
134
+ *
135
+ * @param featureSubSet {@link FeatureSubSet} an {@link Array} of indices.
136
+ * @return result Instance.
137
+ */
138
+ getSubSetOfFeatures(featureSubSet) {
139
+ let result = new Instance(this.classLabel);
140
+ for (let i = 0; i < featureSubSet.size(); i++) {
141
+ result.addAttribute(this.attributes[featureSubSet.get(i)]);
152
142
  }
153
- /**
154
- * The toVector method returns a {@link Vector} of continuous attributes and discrete indexed attributes.
155
- *
156
- * @return {@link Vector} of continuous attributes and discrete indexed attributes.
157
- */
158
- toVector() {
159
- let values = new Array();
160
- for (let attribute of this.attributes) {
161
- for (let continuousAttribute of attribute.continuousAttributes()) {
162
- values.push(continuousAttribute);
163
- }
143
+ return result;
144
+ }
145
+ /**
146
+ * The toVector method returns a {@link Vector} of continuous attributes and discrete indexed attributes.
147
+ *
148
+ * @return {@link Vector} of continuous attributes and discrete indexed attributes.
149
+ */
150
+ toVector() {
151
+ let values = new Array();
152
+ for (let attribute of this.attributes) {
153
+ for (let continuousAttribute of attribute.continuousAttributes()) {
154
+ values.push(continuousAttribute);
164
155
  }
165
- return new Vector_1.Vector(values);
166
156
  }
157
+ return new Vector_1.Vector(values);
167
158
  }
168
- exports.Instance = Instance;
169
- });
159
+ }
160
+ exports.Instance = Instance;
170
161
  //# sourceMappingURL=Instance.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Instance.js","sourceRoot":"","sources":["../../source/Instance/Instance.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Instance.js","sourceRoot":"","sources":["../../source/Instance/Instance.ts"],"names":[],"mappings":"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"}