mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Minor fix
This commit is contained in:
3
Makefile
3
Makefile
@ -23,6 +23,9 @@ OS := $(shell uname)
|
||||
# Tesla V100
|
||||
# ARCH= -gencode arch=compute_70,code=[sm_70,compute_70]
|
||||
|
||||
# GeForce RTX 2080 Ti, RTX 2080, RTX 2070 Quadro RTX 8000, Quadro RTX 6000, Quadro RTX 5000 Tesla T4
|
||||
# ARCH= -gencode arch=compute_75,code=[sm_75,compute_75]
|
||||
|
||||
# Jetson XAVIER
|
||||
# ARCH= -gencode arch=compute_72,code=[sm_72,compute_72]
|
||||
|
||||
|
@ -370,7 +370,7 @@ If you made you custom model that isn't based on other models, then you can trai
|
||||
|
||||
## When should I stop training:
|
||||
|
||||
Usually sufficient 2000 iterations for each class(object). But for a more precise definition when you should stop training, use the following manual:
|
||||
Usually sufficient 2000 iterations for each class(object), but not less than 4000 iterations in total. But for a more precise definition when you should stop training, use the following manual:
|
||||
|
||||
1. During training, you will see varying indicators of error, and you should stop when no longer decreases **0.XXXXXXX avg**:
|
||||
|
||||
|
@ -322,6 +322,11 @@ image image_data_augmentation(IplImage* ipl, int w, int h,
|
||||
sized *= dexp;
|
||||
}
|
||||
|
||||
//std::stringstream window_name;
|
||||
//window_name << "augmentation - " << ipl;
|
||||
//cv::imshow(window_name.str(), sized);
|
||||
//cv::waitKey(0);
|
||||
|
||||
// Mat -> IplImage -> image
|
||||
IplImage src = sized;
|
||||
image out = ipl_to_image(&src);
|
||||
|
Reference in New Issue
Block a user