Dave Challis

Results 17 comments of Dave Challis

Great, glad you found it, it took me a while to find those documents too. In case it helps, I also used that document to create velocystream data structures in...

@inzanez @fMeow yup, it's more compact and faster to serialise, but one of the big advantages is that ArangoDB itself can work with velocypack data internally without conversion, so it's...

There isn't at the moment, but that's something I'd like to add. Someone else had some good ideas about being able to find jobs by status to be able to...

Sounds like a good idea, I'll do a bit of digging to see if there would be any issues with it. This wasn't previously possible, since Ocypod used sync Redis...

@Frando I had a quick look into this, and realised the issue (turns out I'd made a note on this before). Blocking Redis commands still block the async redis connection,...

Thanks - I definitely agree here. It's a tricky one - we discussed this when working on the initial API, and went back and forth between using GET (a simpler...

rust-xgboost uses bindgen to autogenerate a lot of the xgboost C bindings at compile time, this uses clang under the hood to do a lot of that, so pulls it...

I think it might be because `out_dptr` is a double pointer in the C API (and marked as `const`). So making `out_dptr` a `ptr::null` instead of `null_mut` and passing in...

Yup, you'd generally just need to select one of the [regression objectives](https://docs.rs/xgboost/0.1.4/xgboost/parameters/learning/enum.Objective.html) when configuring the learning parameters (e.g. [`RegLinear`](https://docs.rs/xgboost/0.1.4/xgboost/parameters/learning/enum.Objective.html#variant.RegLinear)).

@neunhoef thanks, that makes things a bit clearer. My only suggestion could be to add it to the section where non-empty objects are defined, e.g. change from: ``` Non-empty objects...