This algorithm is a legacy one. The API has changed since its implementation. New versions and forks will need to be updated.
This algorithm is splittable

Algorithms have at least one input and one output. All algorithm endpoints are organized in groups. Groups are used by the platform to indicate which inputs and outputs are synchronized together. The first group is automatically synchronized with the channel defined by the block in which the algorithm is deployed.

Group: main

Endpoint Name Data Format Nature
keystroke tutorial/atvs_keystroke/1 Input
template_id system/text/1 Input
keystroke_model aythamimm/keystroke_model/6 Output
xxxxxxxxxx
117
 
1
import numpy
2
##Del toolchain es la parte del modeling el cual tiene dos entradas que son keystroke y id que conectan con la base datos de templates con cuatro salidas.
3
## modeling tiene una salida llamada keystroke_model.
4
class Algorithm:##Trabajamos con objetos
5
6
    def __init__(self):
7
        self._features1 = [] ##variables globales definidas
8
        self._features2 = [] 
9
        self._features3 = [] 
10
        self._features4 = [] 
11
        self._features5 = []         
12
13
    def process(self, inputs, outputs):
14
15
        # collect all the features for the current template
16
        data = inputs['keystroke'].data#llamamos a la entrada y data para coger todos los valores de tutorial/atvs_keystroke/1(es como los ejemplos de cada  usuario)
17
        
18
        f1 = data.holdtime.given_name#En f1 tenemos los valores del holdtime de la parte del nombre
19
        f2 = data.rplatency.given_name#Igual pero con rplatency ver tutorial/atvs_keystroke/1 en data formats para tener mas claro de que tipo son las variables
20
        feature_vector=[]#creamos un vector
21
        l_f=len(f1)#comprobamos la longitud de f1 (numero de elementos) ya que esta definido como lista y no como array
22
        for i_k in range(l_f):#Creamos un for hasta el numero de elementos 
23
            feature_vector.append(float(f1[i_k]))#en feature_vector vamos poniendo los valores de f1 y transformandolos a float ya que son int32?
24
        
25
        l_f=len(f2)#igual que hicimos con f1
26
        for i_k in range(l_f):
27
            feature_vector.append(float(f2[i_k])) #creamos una fila con los holdtime del nombre seguido de los rplatency             
28
                
29
        self._features1.append(feature_vector)#en la variable global self.features1 anadimos todo lo de feature_vector por filas vamos teniendo en cada fila el   ejemplo de cada usuario 1.....6
30
                      
31
        f1 = data.holdtime.family_name#hacemos lo mismo con family_name
32
        f2 = data.rplatency.family_name
33
        feature_vector=[]
34
        l_f=len(f1)
35
        for i_k in range(l_f):
36
            feature_vector.append(float(f1[i_k]))
37
        
38
        l_f=len(f2)
39
        for i_k in range(l_f):
40
            feature_vector.append(float(f2[i_k]))              
41
                
42
        self._features2.append(feature_vector)
43
                
44
        f1 = data.holdtime.email#igual con email
45
        f2 = data.rplatency.email
46
        feature_vector=[]
47
        l_f=len(f1)
48
        for i_k in range(l_f):
49
            feature_vector.append(float(f1[i_k]))
50
        
51
        l_f=len(f2)
52
        for i_k in range(l_f):
53
            feature_vector.append(float(f2[i_k]))              
54
                
55
        self._features3.append(feature_vector)
56
        
57
        f1 = data.holdtime.nationality#igual con nationality
58
        f2 = data.rplatency.nationality 
59
        feature_vector=[]
60
        l_f=len(f1)
61
        for i_k in range(l_f):
62
            feature_vector.append(float(f1[i_k]))
63
        
64
        l_f=len(f2)
65
        for i_k in range(l_f):
66
            feature_vector.append(float(f2[i_k]))              
67
                
68
        self._features4.append(feature_vector)
69
        
70
        f1 = data.holdtime.id_number#con dni igual
71
        f2 = data.rplatency.id_number 
72
        feature_vector=[]
73
        l_f=len(f1)
74
        for i_k in range(l_f):
75
            feature_vector.append(float(f1[i_k]))
76
        
77
        l_f=len(f2)
78
        for i_k in range(l_f):
79
            feature_vector.append(float(f2[i_k]))              
80
                
81
        self._features5.append(feature_vector) 
82
                
83
        # Calculate mean and std
84
        if inputs["template_id"].isDataUnitDone():# En esta plataforma no existen los bucles asi que usamos esta operacion que usa la entrada template_id que es    como el usuario por el que va, comprueba si el usuario ya ha mandado todos los ejemplos de 1 hasta 6 y si es asi entra en el if.
85
            features11 = numpy.average(self._features1, axis=0)#guardamos en features11 el valor de usar la funcion de numpy average con axis=0 para que nos haga 
86
            #la media por columnas
87
            features12 = numpy.std(self._features1, axis=0)#desviacion tipica por columnas
88
            features21 = numpy.average(self._features2, axis=0)
89
            features22 = numpy.std(self._features2, axis=0)      
90
            features31 = numpy.average(self._features3, axis=0)
91
            features32 = numpy.std(self._features3, axis=0)      
92
            features41 = numpy.average(self._features4, axis=0)
93
            features42 = numpy.std(self._features4, axis=0)      
94
            features51 = numpy.average(self._features5, axis=0)
95
            features52 = numpy.std(self._features5, axis=0)      
96
            # outputs data
97
            outputs["keystroke_model"].write({#grabamos los datos de salida en keystroke_model con esta operacion
98
                'given_name_average':       features11,#guardamos en media del nombre el valor que teniamos en features11 que tiene que ser float64 ver  aythamimm/keystroke_model/6
99
                'given_name_std':           features12,
100
                'family_name_average':      features21,
101
                'family_name_std':          features22,
102
                'email_average':            features31,
103
                'email_std':                features32,
104
                'nationality_average':      features41,
105
                'nationality_std':          features42,
106
                'id_number_average':        features51,
107
                'id_number_std':            features52,
108
            }) 
109
            
110
            self._features1 = []#Reiniciamos las variables globales para un nuevo usuario
111
            self._features2 = []
112
            self._features3 = []
113
            self._features4 = []
114
            self._features5 = []
115
116
        return True
117

The code for this algorithm in Python
The ruler at 80 columns indicate suggested POSIX line breaks (for readability).
The editor will automatically enlarge to accomodate the entirety of your input
Use keyboard shortcuts for search/replace and faster editing. For example, use Ctrl-F (PC) or Cmd-F (Mac) to search through this box

This algorithm is designed to be used as a simple enrollment strategy. It enrolls a model from several features by computing the average of the enrollment features.

Note

All features must have the same length.

No experiments are using this algorithm.
Created with Raphaël 2.1.2[compare]aythamimm/enroll_keystroke/36robertodaza/enroll-keystroke-proof1-commented/1Jul2015Dec28
This algorithm was never executed.
Terms of Service | Contact Information | BEAT platform version 2.2.1b0 | © Idiap Research Institute - 2013-2025