David Buchaca Prats

Results 23 issues of David Buchaca Prats

I have seen that your function only seems to update dW for the weights but not for all the other parameters. Is it what you intented to do? ```julia function...

Hello, I've seen the other thread about installation but did not find an answer to my problem. I can install swig and numpy but when I do `python3 setup.py install`...

@jjlatval mentioned that providing `None` value in columns can cause unnexpected behaviours. The following snippet can be executed ```python from docarray import Document, DocumentArray DA_CONFIG = { "storage": "weaviate", "config":...

I have looked at the `convolution!` code but there are some details I am missing. - Can the kernel have any shape? - It seems the method returns the same...

good first issue

Hello I have observed a 10x difference when loading the iris dataset in 2 different machines. Loading times are a bit unreasonable, is there anything I can do to speed...

Hello, I tried to load a small dataset and it seems to take a lot of time to do so. It also seems that `using Queryverse` takes a significant amount...

enhancement
upstream

Hi, Do you have any guidelines for adding new estimators? I have implemented a multiclass perceptron [perceptron implementation](https://github.com/davidbp/MulticlassPerceptron.jl/blob/master/src/MulticlassPerceptron.jl) I would like to know how I could adapt it and leave...

I have installed OpenCL.jl but the tests are not passed... Has anyone with an Apple computer succesfully used the package? ```julia julia> Pkg.test("OpenCL") INFO: Testing OpenCL Test Summary: | Pass...

Hello, I have installed the package without any errors and made the following test: ```julia using CLArrays sizes = [100,500,1000] for s in sizes srand(123) X = rand(Float32,s,s) Xcl =...

Hello, I was trying to use `imfilter!` with an array `gx` preallocated before calling the function with the hope of not allocating memory. I see 2.31 MiB allocated. Why is...