thtrieu / darkflow

Translate darknet to tensorflow. Load trained weights, retrain/fine-tune using tensorflow, export constant graph def to mobile devices
GNU General Public License v3.0
6.13k stars 2.08k forks source link

what's the difference between darknet et darkflow ? #1009

Open hakS07 opened 5 years ago

hakS07 commented 5 years ago

Can anyone please help me to distinguish between darknet and darkflow.

skofot commented 5 years ago

"Darknet is an open source neural network framework written in C and CUDA.", from their website. It is, to my understanding, the original implementation of YOLO. Darkflow is a translation of darknet to TensorFlow, another framework for neural networks.

For more reading https://pjreddie.com/ has several publications on YOLO and https://www.tensorflow.org/ has everything you need to know about TensorFlow.

hakS07 commented 5 years ago

@skofot Thanks for your reply.