Dan Ruta

Results 39 comments of Dan Ruta

@l3robot Have you had success replicating the code in Pytorch? If so, is there any chance it could be made public?

I got this working with tensorflowjs over here https://github.com/DanRuta/StyleSight, on a separate demo project. One thing I couldn't get working the same was the GPU -> GPU output rendering, to...

Nice one! :) Yep, that happens for me, also. I've noticed GPU memory leaks on several tensorflowjs projects (not just my own), so maybe there's an issue with tfjs. As...

At the moment, the input layer is just an FC layer which does not carry out any summing/activations. Input therefore needs to be flattened, into a one dimensional array. For...

In the MNIST example, the images happen to be grayscale, so it's only 1 channel. You'd be right in thinking that `channels` would be set to 3 for RGB images,...

I've committed an initial implementation for this. You should now be able to pass in input data as a volume. You can try this out on the dev branch, for...

Ah, I fixed the readme for the InputLayer. I think I mis-copy/pasted from dillinger. Let me know if changing it to a shape vector makes more sense. It would likely...

Having read more about 1D conv (I haven't personally used it before), I don't think that it would work with jsNet. At the moment, all filters and conv input are...

Sorry for the delayed reply, I just tried this out, and I wasn't actually able to replicate it. What I did was npm installed v3.4.1, navigated to `node_modules/jsnet/nodejsDemo.js`, and ran...

I'm using Windows, also, so that's probably not it. And both versions are loaded, and executed after each other, to show speed comparison, but are not otherwise interlinked. Are the...