Eric Hanson

Results 156 issues of Eric Hanson

I wanted to have a cell that would insert a page break for customizing how PDFs render. I came up with ```julia page_break = html""" @media print { .noprint {...

Thanks for making this cool solver available! I've added it to [ConvexTests.jl](https://github.com/ericphanson/ConvexTests.jl), which uses test problems from Convex.jl and SumOfSquares.jl in order to test the reliability of Julia-accessible solvers. So...

I've come back to doing some supervised UMAP things, and had the need to use a different number of `n_neighbors` when building the fuzzy simplex representation of the "supervising" data...

It would be nice if UMAP.jl didn't require the input to be formatted as `X (a column-major matrix of shape (n_features, n_samples))`. For example, I have samples that I store...

Taking the example from the docs: ```julia julia> retest("greet", verbose=2) # run only tests related to `greet()` Pass MyPackage: greet | 1 ``` If `greet` was super slow, you'd get...

enhancement
good first issue

But not present on PRs or locally. First one I see is https://github.com/JuliaLogging/TensorBoardLogger.jl/runs/2764508008 but it doesn’t look like anything that the commit touched. Reported here: https://github.com/JuliaLogging/TensorBoardLogger.jl/pull/103#issuecomment-882048509

I was using tmux (manually) + the “connect to external repl” feature in the VSCode julia extension, with a long running session on a remote computer. I reconnected today, and...

Semi-related to #2043 😄. Custom model structs use ```julia @functor MyModel ``` to define `Functors.children` etc. It would be nice if there was also ```julia @define_layer_show MyModel ``` to generate...

The `show` methods are super nice, and especially the counts of parameters and arrays. Could functions getting the counts be pulled out as an API function? Looking at the source,...

Setup: ```julia using Arrow struct A0 end struct A1 x::Int end struct A2 x::Int y::Float64 end ArrowTypes.arrowname(::Type{A0}) = :A0 ArrowTypes.JuliaType(::Val{:A0}) = A0 ArrowTypes.arrowname(::Type{A1}) = :A1 ArrowTypes.JuliaType(::Val{:A1}) = A1 ArrowTypes.arrowname(::Type{A2}) =...