Avik Sengupta

Results 49 issues of Avik Sengupta

They are currently not documented.

Should this be called KerasLoader or something along those lines? There is this: https://github.com/invenia/Keras.jl , which IS a wrapper around Keras.

The `sources.list` file was updated in this commit: https://github.com/JuliaLang/WinRPM.jl/commit/cb12a4136e9afb2a158ff888bc8ea81d3e72e619 When I updated WinRPM today via a `Pkg.update()`, it failed to build, trying to download the old URL. This turned out...

It would be useful to be able to create auth tokens (and potentially cache them) through this package. Julia base has some code to do that here: https://github.com/JuliaLang/julia/blob/master/base/pkg/github.jl#L48

In the current version of Gumbo, it seems to be impossible to use the `children` method without qualifying it. This seems perverse when `Gumbo` extends `children` from `AbstractTrees`. I don't...

My number one wishlist for this is the ability to have a single ZMQ listener, dispatching the method call accross multiple julia processes. So maybe round robin, but dropping processes...

The documentation says to use `DBInterface.execute` but there exists a `SQLite.execute` which is different, so this is an easy mistake to make. Using a different module when using this package...

https://gerardnico.com/db/hive/transport#http

Using the sqlite driver and the sample toursdb database, flights table (see package tests for details) ``` @time DataFrame(collect(JDBCRowIterator(rs))) 0.100710 seconds (451.67 k allocations: 20.420 MiB) @time JDBC.load(DataFrame, rs) 0.770983...