-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cant use cargo +nightly build --release #50
Comments
The issue is with the private_in_public lint. You can remove the line that contains it in
|
i did remove that line and in my opinion i think not doing nightly rustup might fix it running a current version of rust should fix the issue did not test it yet though |
i remove the line last week and still had issues |
That line occurs in another file as well, then it asked for llvm config. I managed to run the tests and benchmark, then it was possible to perform the inference with one of the models in the repository. The tests and benchmark look really odd tho, but they aren't exiting with an error. |
I was able to follow the instructions up to the build and test phase. However, when integrating TensorBoard, running the model, and extracting weights, I encountered an error. I suspect that this GitHub repository hasn't been thoroughly tested with a fresh installation in the past two years, leading to compatibility issues. I appreciate the authors' initial work on this proof of concept but understand they might have moved on to other projects. |
o to fix llvm config do this The warning about llvm-config --prefix indicates that the LLVM configuration is missing. You need to install LLVM and set the LLVM_CONFIG_PATH environment variable. sudo apt-get install llvm Compiler Flags: Check if the compiler flags or environment variables are set correctly. The missing CXX variable indicates the C++ compiler might not be properly specified. Set the appropriate compiler in your environment: export CXX=g++ then when in delphi/rust do also make sure your memory as much and you can reasonable give it |
The text was updated successfully, but these errors were encountered: