Jack Gerrits
Jack Gerrits
There are many different linux distros out there so it is difficult to provide instructions for each. Since Ubuntu is (probably) the most common, most projects will at least provide...
It's also worth mentioning that the Java Jars are produced on a CentOS image: https://github.com/VowpalWabbit/docker-images/blob/master/vowpal_wabbit/centos7_6_1810-build.Dockerfile Build script here: https://github.com/VowpalWabbit/vowpal_wabbit/blob/master/.scripts/linux/build-static-java.sh
I think using vcpkg as described [here](https://github.com/VowpalWabbit/vowpal_wabbit/wiki/Building#option-2-using-vcpkg) would be the easiest path forward for usage on CentOS
@lokitoth Is there a way to reproduce this isssue?
In the linked location the option in the command line is replaced with `mtr` and then the place where parsing had recorded the other value is overwritten with `mtr` as...
Hi @Sandy4321, VW doesn't support non negative ridge regression. This is a patches welcome item for sure 😄 It wouldn't be too involved to get this implemented, when the weights...
@eisber do you know if the Java bindings need GCC? It looks like the spark bindings added the `--enable-new-dtags` flag
### Let's try a mitigation: @ClementeOcejo can you try just removing the flag here: https://github.com/VowpalWabbit/vowpal_wabbit/blob/2a4317daa2806ee4830eb278215f001c86febdc7/java/CMakeLists.txt#L58 So the line should become: ```cmake target_link_libraries(vw_jni PUBLIC -fPIC -Wl,-rpath,\"\$ORIGIN\" vw) ``` ### Thoughts: It...
Given that on MacOS `--enable-new-dtags` isn't supported I think it is a valid fix. `--enable-new-dtags` is used to ensure the binary uses the newer DT_RUNPATH, and the point of this...
Yes, it looks like there is an assumption around the target platform being Linux. It looks like it was introduced with the Spark bindings but is affecting use for the...