Jack Gerrits

Results 111 comments of Jack Gerrits

@wmelton, we will probably not have the bandwidth to work on apt packages for VW for quite some time. My recommendation would be to follow the build instructions for Ubuntu...

It seems like we could reasonably implement this externally to the core library? Adding a Tensorboard dependency seems pretty heavy if it can be avoided

I am primarily referring to a sort of proxy object. It seems like the information required for this module to operate is available "externally" to the individual predict and learn...

Yes I believe it affects both json and dsjson

The system expects examples to be in the order shared,actions,slots. So slots must come last

This is somewhat by design due to the way the parser is implemented. This is not a bug per se, but a consequence of design. It is tech debt to...

Do you have any information on what the failures are for 236, 238 and 269?

The function `VW_Predict` returns the scalar prediction, however, you need the pdf value prediction produced by continuous actions. Unfortunately this is not available from the C API you referenced. The...

So a C++ solution would look something like this (I haven't tested it): ```C++ auto* ws = VW::initialize("-i nadwwadw.model"); auto* ex = VW::read_example(*ws, "ca | "); ws->predict(*ex); auto& prediction =...

It's a bit out of date so may need some tweaking but generally speaking this is an example of what it may look like to have a C++ project depend...