Comment on Using aligned word vectors for instant translations with Python and RustparentComments−habibur5yFor Linux, in the Makefile change the copy command tocp target/release/libinstant_distance.so instant-distance-py/test/instant_distance.soand it works. Built and running. The main tree was MacOS only.Here's resource consumption in a sample run.Time: 4.49s, Memory: 1552 mb.Single word. Three langs including en.−planckscnst5yHow did you figure this out? I've done lots of Linux software build troubleshooting as a result of using Gentoo, BuildRoot, and pacaur, but this doesn't ring any bells for a common issue−fnord1235yThey probably tried it, it couldn't find a dynlib which is a Macos shared object file, opened the three line makefile, and then fixed it to copy a .so
Comments
For Linux, in the Makefile change the copy command to
cp target/release/libinstant_distance.so instant-distance-py/test/instant_distance.so
and it works. Built and running. The main tree was MacOS only.
Here's resource consumption in a sample run.
Time: 4.49s, Memory: 1552 mb.
Single word. Three langs including en.
How did you figure this out? I've done lots of Linux software build troubleshooting as a result of using Gentoo, BuildRoot, and pacaur, but this doesn't ring any bells for a common issue
They probably tried it, it couldn't find a dynlib which is a Macos shared object file, opened the three line makefile, and then fixed it to copy a .so