Skip to content

Commit adfa16e

Browse files
authored
files for creating train and testdataset
Hi All I am not the authors of of these two files authors can reachout to me
0 parents  commit adfa16e

2 files changed

+228
-0
lines changed

creating-files-data-and-name.py

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
2+
3+
"""
4+
Course: Training YOLO v3 for Objects Detection with Custom Data
5+
6+
Section-3
7+
Labelling new Dataset in YOLO format
8+
File: creating-files-data-and-name.py
9+
"""
10+
11+
12+
# Creating files labelled_data.data and classes.names
13+
# for training in Darknet framework
14+
#
15+
# Algorithm:
16+
# Setting up full paths --> Reading file classes.txt -->
17+
# --> Creating file classes.names -->
18+
# --> Creating file labelled_data.data
19+
#
20+
# Result:
21+
# Files classes.names and labelled_data.data needed to train
22+
# in Darknet framework
23+
24+
25+
"""
26+
Start of:
27+
Setting up full path to directory with labelled images
28+
"""
29+
30+
# Full or absolute path to the folder with images
31+
# Find it with Py file getting-full-path.py
32+
# Pay attention! If you're using Windows, yours path might looks like:
33+
# r'C:\Users\my_name\Downloads\video-to-annotate'
34+
# or:
35+
# 'C:\\Users\\my_name\\Downloads\\video-to-annotate'
36+
full_path_to_images = '/home/my_name/Downloads/video-to-annotate'
37+
38+
"""
39+
End of:
40+
Setting up full path to directory with labelled images
41+
"""
42+
43+
44+
"""
45+
Start of:
46+
Creating file classes.names
47+
"""
48+
49+
# Defining counter for classes
50+
c = 0
51+
52+
# Creating file classes.names from existing one classes.txt
53+
# Pay attention! If you're using Windows, it might need to change
54+
# this: + '/' +
55+
# to this: + '\' +
56+
# or to this: + '\\' +
57+
with open(full_path_to_images + '/' + 'classes.names', 'w') as names, \
58+
open(full_path_to_images + '/' + 'classes.txt', 'r') as txt:
59+
60+
# Going through all lines in txt file and writing them into names file
61+
for line in txt:
62+
names.write(line) # Copying all info from file txt to names
63+
64+
# Increasing counter
65+
c += 1
66+
67+
"""
68+
End of:
69+
Creating file classes.names
70+
"""
71+
72+
73+
"""
74+
Start of:
75+
Creating file labelled_data.data
76+
"""
77+
78+
# Creating file labelled_data.data
79+
# Pay attention! If you're using Windows, it might need to change
80+
# this: + '/' +
81+
# to this: + '\' +
82+
# or to this: + '\\' +
83+
with open(full_path_to_images + '/' + 'labelled_data.data', 'w') as data:
84+
# Writing needed 5 lines
85+
# Number of classes
86+
# By using '\n' we move to the next line
87+
data.write('classes = ' + str(c) + '\n')
88+
89+
# Location of the train.txt file
90+
data.write('train = ' + full_path_to_images + '/' + 'train.txt' + '\n')
91+
92+
# Location of the test.txt file
93+
data.write('valid = ' + full_path_to_images + '/' + 'test.txt' + '\n')
94+
95+
# Location of the classes.names file
96+
data.write('names = ' + full_path_to_images + '/' + 'classes.names' + '\n')
97+
98+
# Location where to save weights
99+
data.write('backup = backup')
100+
101+
"""
102+
End of:
103+
Creating file labelled_data.data
104+
"""

creating-train-and-test-txt-files.py

+124
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
2+
3+
"""
4+
Course: Training YOLO v3 for Objects Detection with Custom Data
5+
6+
Section-3
7+
Labelling new Dataset in YOLO format
8+
File: creating-train-and-test-txt-files.py
9+
"""
10+
11+
12+
# Creating files train.txt and test.txt
13+
# for training in Darknet framework
14+
#
15+
# Algorithm:
16+
# Setting up full paths --> List of paths -->
17+
# --> Extracting 15% of paths to save into test.txt file -->
18+
# --> Writing paths into train and test txt files
19+
#
20+
# Result:
21+
# Files train.txt and test.txt with full paths to images
22+
23+
24+
# Importing needed library
25+
import os
26+
27+
28+
"""
29+
Start of:
30+
Setting up full path to directory with labelled images
31+
"""
32+
33+
# Full or absolute path to the folder with images
34+
# Find it with Py file getting-full-path.py
35+
# Pay attention! If you're using Windows, yours path might looks like:
36+
# r'C:\Users\my_name\Downloads\video-to-annotate'
37+
# or:
38+
# 'C:\\Users\\my_name\\Downloads\\video-to-annotate'
39+
full_path_to_images = '/home/my_name/Downloads/video-to-annotate'
40+
41+
"""
42+
End of:
43+
Setting up full path to directory with labelled images
44+
"""
45+
46+
47+
"""
48+
Start of:
49+
Getting list of full paths to labelled images
50+
"""
51+
52+
# Check point
53+
# Getting the current directory
54+
# print(os.getcwd())
55+
56+
# Changing the current directory
57+
# to one with images
58+
os.chdir(full_path_to_images)
59+
60+
# Check point
61+
# Getting the current directory
62+
# print(os.getcwd())
63+
64+
# Defining list to write paths in
65+
p = []
66+
67+
# Using os.walk for going through all directories
68+
# and files in them from the current directory
69+
# Fullstop in os.walk('.') means the current directory
70+
for current_dir, dirs, files in os.walk('.'):
71+
# Going through all files
72+
for f in files:
73+
# Checking if filename ends with '.jpeg'
74+
if f.endswith('.jpeg'):
75+
# Preparing path to save into train.txt file
76+
# Pay attention!
77+
# If you're using Windows, it might need to change
78+
# this: + '/' +
79+
# to this: + '\' +
80+
# or to this: + '\\' +
81+
path_to_save_into_txt_files = full_path_to_images + '/' + f
82+
83+
# Appending the line into the list
84+
# We use here '\n' to move to the next line
85+
# when writing lines into txt files
86+
p.append(path_to_save_into_txt_files + '\n')
87+
88+
89+
# Slicing first 15% of elements from the list
90+
# to write into the test.txt file
91+
p_test = p[:int(len(p) * 0.15)]
92+
93+
# Deleting from initial list first 15% of elements
94+
p = p[int(len(p) * 0.15):]
95+
96+
"""
97+
End of:
98+
Getting list of full paths to labelled images
99+
"""
100+
101+
102+
"""
103+
Start of:
104+
Creating train.txt and test.txt files
105+
"""
106+
107+
# Creating file train.txt and writing 85% of lines in it
108+
with open('train.txt', 'w') as train_txt:
109+
# Going through all elements of the list
110+
for e in p:
111+
# Writing current path at the end of the file
112+
train_txt.write(e)
113+
114+
# Creating file test.txt and writing 15% of lines in it
115+
with open('test.txt', 'w') as test_txt:
116+
# Going through all elements of the list
117+
for e in p_test:
118+
# Writing current path at the end of the file
119+
test_txt.write(e)
120+
121+
"""
122+
End of:
123+
Creating train.txt and test.txt files
124+
"""

0 commit comments

Comments
 (0)