(includeWeights = true)
| 1868 | private readonly includeWeights: boolean; |
| 1869 | |
| 1870 | constructor(includeWeights = true) { |
| 1871 | this.includeWeights = includeWeights; |
| 1872 | } |
| 1873 | |
| 1874 | async load(): Promise<io.ModelArtifacts> { |
| 1875 | return this.includeWeights ? {modelTopology, weightSpecs, weightData} : |
nothing calls this directly
no outgoing calls
no test coverage detected