Jerry Ling
Jerry Ling
fix #4549 related to #3004 and refactored a bit of code ```julia barplot([1,2,3,1,2,3], [1,2,3,1,2,3], stack=[1,1,1,2,2,2], color=[1,1,1,2,2,2], gap=0; axis=(; yscale=log)) ``` ## Before  ## After 
```julia julia> using CairoMakie julia> @time begin fig = Figure() limits = (nothing, nothing, 1, 1e7) ax = Axis(fig[1, 1]; yminorticksvisible=true, yticks=0.5:0.5:1.5, limits) ylims!(0.5, 1.5) fig end; 2.586539 seconds (35.98...
We seem to have two kinds of "bold + italic" style name: 1. https://github.com/MakieOrg/Makie.jl/blob/c3bccd4b1e5ced8523d7d5072e01805497c0b044/src/theming.jl#L33 2. https://github.com/MakieOrg/Makie.jl/blob/c3bccd4b1e5ced8523d7d5072e01805497c0b044/src/themes/theme_latexfonts.jl#L5 should they be harmonized? or are they following some kind of upstream convention
```julia julia> h = fit(Histogram, rand(1000), [0.0, 0.1, 0.2, 0.5, 1.0]) Histogram{Int64, 1, Tuple{Vector{Float64}}} edges: [0.0, 0.1, 0.2, 0.5, 1.0] weights: [90, 88, 311, 511] closed: left isdensity: false julia>...
After saving and loading a machine, it runs inference on GPU (specifically, for XGBoost), is there an interface to move the model back to GPU?
fix #3528 the root cause is that the trick for `float` does not work for `double` due to, eh, IEEE754 ... My understanding is you can't cast `double` into `long...
Right now, the histogram example https://github.com/JuliaGPU/KernelAbstractions.jl/blob/110d78475861281298ec930c7292af903e8360d0/examples/histogram.jl assumes the data value range is small, something like 0-128 or 0-1024 etc. In reality, we would probably have a pre-defined binning and so...
> I think conceptually it should be possible to do `should_simplify` inside each component of the `Template Expression`, maybe I should open an issue to track that? _Originally posted by...
https://github.com/JuliaDebug/TerminalRegressionTests.jl/issues/17#issuecomment-2491344752
running `curl | sh` is a security hazard, it's more convenient for some people to just `wget` from a github URL and move binary file around.