Antonello Lobianco

Results 49 issues of Antonello Lobianco

Change the loop order in cache/predict of the AutoEncoder to allow convolutional layers with non-array output in layers

Add PAM (or FastPAM) to fit the KMedoidsClusterer see https://github.com/mthelm85/PAM.jl/issues/3

I understood how to write files to the zip or read files in a zip, but how can I extract a file in a zip archive to disk (or, equivalently,...

When creating a new zip file (Julia v1.1, ZipFile v0.8.3), an error will be issued on the first write operation when several files has been added to the zip: ```...

This work: ``` key = @NT(a="aaa") key = merge(key, @NT(b=1)) ``` But this doesn't: ``` key = @NT(a) key = merge(key, @NT(b)) ``` or ``` key = @NT() key =...

Hello, sorry to bother you... I have a [Julia tutorial](https://syl1.gitbook.io/julia-language-a-concise-tutorial/) on gitbook.com and I would like to add PUBLIC comments to it. Is this plugin for that ? How do...

As from the title, the `download` function doesn't like spaces in the filename : ```julia julia> using FTPClient julia> ftp_init(); julia> ftp = FTP(hostname = "palantir.boku.ac.at", username = "anonymous", password...

Hello, I implemented a function to download all files in a given FTP directory, recursively or not. Let me know if you would be interested, I'll clean it up a...

Hello, as I needed some more info that just item names from the `readdir` directlry, I have implemented the following customisations to (a) allow the listing of any directory (not...

As from the title, the `download` function using an absolute path doesn't work if the FTP current directory is not root: ```julia julia> ftp = FTP(hostname = "palantir.boku.ac.at", username =...