lukemovement

Results 11 comments of lukemovement
trafficstars

The solution I found to this, prior to Vite Alpha-11 was to provide all files as entry point within build -> rollupOptions -> input as well as correcting import paths...

Try using `import { loadModule } from "vue3-sfc-loader";`.

> No one has taken up the blocking issue, so no until that's done, nothing can be done really... And for that we need someone with node-gyp knowledge. It might...

These are also be removed from the `` of my index.html file. ` `

You haven't registered the weights from the child layers to the parent later In the build method. this.trainableWeights = [...this.childLayer.trainableWeights] Same goes for nonTrainableWeights We really need some documentation written...

> Thanks for the suggestion, @lukemovement. Your suggestion does work, however you also need to build each of the child layers: > > ```js > this.inProj.build(inputShape) > this.outProj.build(inputShape) > ```...

TypeScript is pretty similar to Java in regards to the type-hinting implementation. I'm slowly looking through the samples and found a few bits that I need. I'm actually unsure as...

> Hi @lukemovement! I've been playing with TypeScript this weekend and have tried to implement more models in TensorFlow.js, such as ViT and CLIP. They share common layers with GPT,...

> @lukemovement In your example, you pass layers as parameters to the custom layer? That's interesting! Did that work up to grads calculation and training? I mean `this.keyLayer` and other...

If anyone is still looking for a solution, this is what I'm using ```ts export class AppModule implements OnApplicationBootstrap { constructor(@InjectDataSource() private readonly dataSource: DataSource) {} public async onApplicationBootstrap(): Promise...