We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6570ff0 commit e927c88Copy full SHA for e927c88
2 files changed
.gitignore
@@ -1,3 +1,7 @@
1
.idea/
2
data/
3
models/
4
+__pycache__/
5
+custom_layers/__pycache__/
6
+label_dict.txt
7
+logs/
demo.py
@@ -33,6 +33,9 @@
33
num_samples = 20
34
samples = random.sample(test_images, num_samples)
35
36
+ if not os.path.exists('images'):
37
+ os.makedirs('images')
38
+
39
for i in range(len(samples)):
40
image_name = samples[i]
41
filename = os.path.join(test_path, image_name)
0 commit comments