Replies: 1 comment 2 replies
-
Since you're having problems with that repo...why don't you ask them instead? It is unlikely you'll find help in this repo about a different one. There is no help command, but the command line options are described in the readme. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi folks,
I'm trying to set up this project to run on my Jetson Nano device. The code seems to ship with
.so
files, but they're linked against OpenCV 3.3 so I can't use them on my device, which has OpenCV 4.X installed - I know this because when I start up my container, I get this error:So I'm trying to produce new
.so
files usingdarknet
- but honestly I haven't really had much luck in finding comprehensive documentation that covers all the options available for thedarknet
binary - there doesn't seem to be adarknet help
command or a manual page or anything. It looks likebuild.sh
is there to build darknet itself, but I want to compile a whole model as a.so
file, unless somehow I'm misunderstanding what these files are for.The code I'm using does seem to ship with some files that seem like the inputs that
darknet
wants, but there aren't any instructions there either for turning those files into the.so
files that I guess are there to compile the model into a server (or dynamically link it in or whatever).Any advice / pointers greatly appreciated for figuring out how to do this.
Beta Was this translation helpful? Give feedback.
All reactions