-
Notifications
You must be signed in to change notification settings - Fork 1
/
classify.py
118 lines (104 loc) · 3.76 KB
/
classify.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import constants
import utilities
import pickle
import os
import sys
"""
The classify class is designed to be used for an unknown video that must be classed as either deepfake or real;
through Thirdeye using the currently active trained network.
"""
class Classifier:
"""
Initialise Class
-----------------------------------------------------------
model: Keras model object to be used for the classifcations
folder: Specifies the folder with the videos to be classified
frames: How many frames per sample for the network
"""
def __init__(self, model, folder, frames):
self.model = model
self.filenames = os.listdir(folder)
self.filenames.sort()
self.unknown_videos = utilities.retrieve_data(folder)
self.unknown_clips = utilities.split_frames(self.unknown_videos, frames)
"""
Classify unknown videos
-----------------------------------------------------------
Carries out the classifications once the class is Initialise and all the
parameters are set
"""
def classify_videos(self):
try:
if len(self.unknown_clips) == 0:
print('Error: there are no clips to predict')
pred = self.model.predict([self.unknown_clips])
n_averaged_elements = 6
averaged_array = []
a = pred
for i in range(0, len(a), n_averaged_elements):
slice_from_index = i
slice_to_index = slice_from_index + n_averaged_elements
slice = a[slice_from_index:slice_to_index]
class_1_avg = 0
class_2_avg = 0
for val in slice:
class_1_avg += val[0]
class_2_avg += val[1]
class_1_avg = class_1_avg/ n_averaged_elements
class_2_avg = class_2_avg/ n_averaged_elements
averaged_array.append([class_1_avg, class_2_avg])
pred_b = {}
# corr = 0
for index, video in enumerate(self.unknown_videos):
pred_b.update({self.filenames[index]: {'Real': averaged_array[index][0], 'Deepfake': averaged_array[index][1]}})
return pred_b
except:
print("Oops!",sys.exc_info()[0],"occured.")
"""
Set frames
-----------------------------------------------------------
Sets the frames per sample of the model
frames: number of frames per sample to switch to
"""
def set_frames(self, frames):
self.unknown_clips = utilities.split_frames(self.unknown_videos, frames)
"""
Set folder
-----------------------------------------------------------
Sets the folder to look for classified videos in
folder: new folder to set to
"""
def set_folder(self, folder):
self.filenames = os.listdir(folder)
self.filenames.sort()
self.unknown_videos = utilities.retrieve_data(folder)
self.unknown_clips = utilities.split_frames(self.unknown_videos, self.frames)
"""
Set model
-----------------------------------------------------------
Sets new Keras model object
model: new model object
"""
def set_model(self, model):
self.model = model
"""
Get frames
-----------------------------------------------------------
Returns the current frames per sample being used
"""
def get_frames(self):
return self.frames
"""
Get folder
-----------------------------------------------------------
Returns the current folder being looked into
"""
def get_folder(self):
return self.folder
"""
Get model
-----------------------------------------------------------
Returns the current model being used
"""
def get_model(self):
return self.model