Omar Aflak
Omar Aflak
You need to reshape your input as (64,1) before passing it in to the network. (64,) is considered different from (64,1).
Sorry I thought you were commenting on another repo. Actually you need a row matrix. So your input should be of size (1, 64). What you pass to the fit...
Thank you @LeonBlade , I'll try this.
This works. `socket.io` `v3.0.5` ### server ```js const io = require('socket.io')(3000) const ss = require('socket.io-stream') io.on('connection', socket => { ss(socket).on('file', (filename, stream) => { for (const [_, client] of io.of('/').sockets)...
> @OmarAflak i know this might be a really silly question but how do i use const fs = require('fs') in client side it gives an error saying require dosent...
> @OmarAflak im using nodejs aswell but const fs = require('fs') in client side it gives an error saying require dosent exist "require" works fine for the app.js When you...
Indeed, I have shut down the website. It won't be available anymore unfortunately. You can access whatever is left using web.archive.org though: https://web.archive.org/web/20200811124244/http://causeyourestuck.io/
Yeah sockets on windows are kind of messy. I did make another repo for sockets on UNIX systems though: https://github.com/omaraflak/async-socket However, this is more for educational purposes rather than actual...