Denis Barucic
Denis Barucic
Only a tiny change. After cloning a repository, a new directory named by the repository is created. So it is required to enter that directory first.
It is currently possible to show/hide code using the quite small "eye" button next to the cell. I frequently use it to hide code containing markdown to display only the...
This is still work-in-progress. Apart from the script that generates tables, this is now just a copy of @johnnychen94's tentative proposals to give a rough idea what is the end...
Introduce a new semantic wrapper, `Label`, which represents a target class label of an instance. No operations are applied to this wrapper.
**tl;dr** Remove `augmentbatch!` and have `augment` and `augment!` support batch inputs. I think it's doable but there are some issues. ---- Currently we have - `augment(imgs, pl)`, - `augment!(outs, imgs,...
Hi, the package provides a `Manifest.toml` currently. It was introduced to the repo in #99 and last updated in #110 but does not seem to be necessary. Can we maybe...
Fixes #50 Note that my understanding of the grammar rules is very limited. I got it working by trial-and-error mostly.
Hi, I am using `tree-sitter-julia` via the neovim tree-sitter plugin. I stumbled upon a piece of valid Julia code that neovim fails to highlight correctly. I am not sure why...
When using `FFplay_jll` to play audio files on linux as follows ```julia using FFplay_jll mp3_path = "sample.mp3" ffplay() do exe run(`$exe $path`) end ``` `ffplay` does not play any sound...