eulerreich
eulerreich
I have the following code for the TCP server (modified from the example) in a file named `tcp-server.lua`. ``` lua async = require 'async' async.tcp.listen({host='localhost', port=4321}, function(client) -- Receive: client.ondata(function(chunk)...
I have a python TCP server adapted from the example in https://docs.python.org/2/library/socketserver.html. ``` python class CommandTCPHandler(SocketServer.StreamRequestHandler): def handle(self): # self.rfile is a file-like object created by the handler; # we...
Currently, if I want to randomly generate sequences of bits as input and some transform of these sequences as output, I'd have to do this all at once before training,...
I'm running this on the latest Jupyter version and get the following error ``` /usr/local/lib/python2.7/dist-packages/IPython/nbformat.py:13: ShimWarning: The `IPython.nbformat` package has been deprecated. You should impor t from nbformat instead. "You...
`types.is_type(OrderedMap(), Map)` returns false, so it seems that the behavior of `is_type` is to check literally if the object is of the specified type, rather than whether it's derived from...
I'm using the android library from SymmetricDS through pyjnius. Specifically, there's a registry class containing a private static hashmap. I've modified it to log program states, as follows: ``` java...
I just downloaded luna and the line number is broken.
I modified the copy task to save the model every 100 iterations. After doing `th tasks/copy.lua` with the default parameters, I played around with the model and it is clear...
I'm getting the following error when installing with `luarocks install https://raw.githubusercontent.com/soumith/lua---audio/master/audio-0.1-0.rockspec` ``` Using https://raw.githubusercontent.com/soumith/lua---audio/master/audio-0.1-0.rockspec... switching to 'build' mode Cloning into 'lua---audio'... remote: Counting objects: 16, done. remote: Compressing objects: 100%...