-
Notifications
You must be signed in to change notification settings - Fork 65
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
Implementing yolo v3 #10
base: master
Are you sure you want to change the base?
Conversation
…nto latest version of yolo would be cool..
nice effort and a lot of code changes! if this is the first time you start using C with R you probably took a difficult project :) Some questions
|
I'm aware of the scope of this project. So I started slowly by cloning @pjreddie's code, see commit
|
Hi @jwijffels, I just checked Windows compatibility today. Both, your and my updated version of |
Hi @georoen |
Hi @jwijffels |
Had to skip this for the time being due to other priorities. Is there already a yolo v4? |
Hi @jwijffels, Nevertheless, meanwhile there were no changes in the official YOLO repo or website and I guess my pull request is still up to date from this aspect. Let me know how it goes. |
This PR proposes an updated engine for image.darknet. It:
What I did is practically:
pjreddie/darknet
intoinst/include/
inst/include/darknet/src
intosrc/
src/
by looking atinst/include/darknet/examples/detector.c
The last step however involved changing some pointers. As I may be into R packages, I am new to C and have some questions why. Sometimes I had to just add an
&
, some other times I had to change&net.w
tonet->w
? Long story short, it would be cool if you take a particular look at the changes insrc/__R_API_detector.c
,src/__R_API_classifier.c
andsrc/compare.c
, before merging.Best wishes!