File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -189,8 +189,14 @@ const createLayerlist = async () => {
189
189
}
190
190
types . sort ( ( a , b ) => ( a . type < b . type ? - 1 : 1 ) )
191
191
let typeCode = `
192
- import Matrix from '../../../util/matrix.js'
193
- import Tensor from '../../../util/tensor.js'
192
+ /**
193
+ * @ignore
194
+ * @typedef {import("../../../util/matrix").default} Matrix
195
+ * @ignore
196
+ * @typedef {import("../../../util/tensor").default} Tensor
197
+ * @ignore
198
+ * @typedef {import("../../neuralnetwork").default} NeuralNetwork
199
+ */
194
200
/**
195
201
* @typedef {(
196
202
`
Original file line number Diff line number Diff line change @@ -102,8 +102,14 @@ export { default as TransposeLayer } from './transpose.js'
102
102
export { default as VariableLayer } from './variable.js'
103
103
export { default as VarLayer } from './variance.js'
104
104
105
- import Matrix from '../../../util/matrix.js'
106
- import Tensor from '../../../util/tensor.js'
105
+ /**
106
+ * @ignore
107
+ * @typedef {import("../../../util/matrix").default } Matrix
108
+ * @ignore
109
+ * @typedef {import("../../../util/tensor").default } Tensor
110
+ * @ignore
111
+ * @typedef {import("../../neuralnetwork").default } NeuralNetwork
112
+ */
107
113
/**
108
114
* @typedef {(
109
115
* { type: 'abs' } |
You can’t perform that action at this time.
0 commit comments