ExpandingMan

Results 126 issues of ExpandingMan

A model saved via `XGBoosterSaveModelToBuffer` can be loaded by creating a booster object with the parameter `model_buffer`, however, attempting to load this model into a booster object using `XGBoosterLoadModelFromBuffer` gives...

status: need update

https://json5.org/ I'm sure it would be a huge amount of work to fully implement this, but I thought it was deserving of an issue. Since it's a superset, my understanding...

For example, see the behavior of JSON.jl ```julia julia> A = [1 0 0 1] 2×2 Array{Int64,2}: 1 0 0 1 julia> JSON.json(A) "[[1,0],[0,1]]" julia> A = rand(2,2,2) 2×2×2 Array{Float64,3}:...

Fixed in JSON.jl 1.0

Hello all. I haven't dug too far into the source code yet, but I'm wondering if it's possible to do regressions where the "label" (target value) consists of multi-dimensional data...

So, it turns out that `flatc` has a (seemingly undocumented) option to generate the schema as a JSON. This introduces the possibility of writing a pure Julia compiler for flatbuffer...

Alright, no clue what's happening here: I'm trying to write ``` table Field { /// Name is not required, in i.e. a List name: string; /// Whether or not this...

Hey guys, I've been having an issue with reading from buffers which I've finally figured out. So, I'm trying to read [something](https://arrow.apache.org/docs/format/IPC.html) which has a 4-byte `Int32` followed by a...

I'm not sure I really understand what's going on here yet, so forgive me if this is a stupid question, but it [seems to me](https://google.github.io/flatbuffers/) that FlatBuffer fields are always...

A number of binary formats contain dictionary encoded data with the references as 0-indexed integers. PooledArrays currently can't be used to wrap these because, if I understand correctly, the references...

Perhaps I'm misunderstanding the intention of `CustomStruct` but I believe it is missing a `constructfrom` method. Even after defining the required methods I get, e.g. ```julia ◖◗ ST.constructfrom(Dict{String,Any}, c) ERROR:...