Skip to content

Commit 92525ad

Browse files
author
Biparnak Roy
committed
dataset
1 parent 77c3706 commit 92525ad

File tree

3 files changed

+29
-12
lines changed

3 files changed

+29
-12
lines changed

README.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,13 @@ If you already have the darknet built in your system then ommit ```--recurse-sub
1616

1717
### Libraries
1818

19-
There are some library dependencies : opencv-python, numpy, math, argparse, imutils, requests.
19+
There are some library dependencies : opencv-python, numpy, math, argparse, imutils, requests, os-sys.
2020

2121
You can install these libraries by executing the following command **(recomended)**
2222

2323
```
2424
pip install -r requirements.txt
2525
```
26-
else you can also use:
27-
```
28-
pip install opencv-python
29-
pip install numpy
30-
pip install math
31-
pip install argparse
32-
```
3326

3427
## Building Darknet
3528

@@ -177,6 +170,7 @@ mobile: 63% (left_x: 489 top_y: 239 width: 21 height: 28)
177170
bag: 48% (left_x: 597 top_y: 212 width: 20 height: 25)
178171
```
179172
- Coverting to YOLO labels format
173+
180174
The detections stored in the text file need to be converted to the YOLO label format for this we have to configure ```yolo.sh```
181175

182176
```
@@ -186,7 +180,7 @@ do
186180
done
187181
188182
```
189-
Here in place of ```<num list>``` paste the number list generated by ```count.py``` and in places of ```data``` put your name of images.(not manditory)
183+
Here in place of ```<num list>``` paste the number list generated by ```count.py``` and in places of ```data``` put your name of images (only if a differenr name for the dataset was used).
190184

191185
Now we have to run this script by running following commands:
192186

@@ -198,9 +192,18 @@ After this script completes running all the labels in the YOLO format will be st
198192

199193
Thus we successfully created the dataset!!!
200194

201-
# Retraing the model using our dataset
195+
# Retraining the model using our dataset
202196

203197
To train the model using the new dataset run the following commands.
198+
- To generate ```train.txt```
204199

205200
```
206-
```
201+
python3 generate_train.py
202+
```
203+
- To start training
204+
205+
```
206+
cd darknet
207+
./darknet detector train data/obj.data ../cfg/<your cfg file> ../weights/<your pretrained weight file>
208+
```
209+
You should find the checkpoints of the weights being stored in the ```new_weights``` directory.

generate_train.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import os
2+
3+
image_files = []
4+
os.chdir("dataset")
5+
for filename in os.listdir(os.getcwd()):
6+
if filename.endswith(".jpg"):
7+
image_files.append("dataset/" + filename)
8+
os.chdir("..")
9+
with open("train.txt", "w") as outfile:
10+
for image in image_files:
11+
outfile.write(image)
12+
outfile.write("\n")
13+
outfile.close()

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ numpy
33
math
44
argparse
55
imutils
6-
requests
6+
requests
7+
os-sys

0 commit comments

Comments
 (0)