-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dataset.c
185 lines (170 loc) · 6.73 KB
/
Dataset.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include "Dataset.h"
Dataset *Dataset_readFromFile(char *filename)
{
FILE *file = fopen(filename, "r");
if (file == NULL)
abort();
int instanceCount = 0;
int classCount = 0;
int featureCount = 0;
// On récupère les données de la première ligne du fichier (instanceCount/classCount/featureCount)
int test = fscanf(file, "%d %d %d", &instanceCount, &classCount, &featureCount);
if (test != 3)
abort();
// On alloue la structure data
Dataset *dataset = (Dataset *)calloc(1, sizeof(Dataset));
// On alloue le tableau d'instances
// dataset->instances = (Instance *)calloc(instanceCount, sizeof(Instance));
dataset->instances = (Instance *)malloc(instanceCount * sizeof(Instance));
for (int i = 0; i < instanceCount; i++)
{
// On alloue le tableau de values de chaque instance
// dataset->instances[i].values = calloc(featureCount, sizeof(int));
dataset->instances[i].values = malloc(featureCount * sizeof(int));
}
// On remplit le tableau d'instances avec les values
for (int i = 0; i < instanceCount; i++)
{
test = fscanf(file, "%d\t", &dataset->instances[i].classID);
if (test != 1)
abort();
for (int j = 0; j < featureCount; j++)
{
test = fscanf(file, "%d ", &dataset->instances[i].values[j]);
if (test != 1)
abort();
}
}
fclose(file);
dataset->instanceCount = instanceCount;
dataset->classCount = classCount;
dataset->featureCount = featureCount;
// printf("Dataset : %d instances, %d features, %d classes\n", dataset->instanceCount, dataset->featureCount, dataset->classCount);
// On renvoie dataset
return dataset;
}
void Dataset_destroy(Dataset *data)
{
if (!data)
abort();
// On libère d'abord toutes les valeurs du tableau d'instances
for (int i = 0; i < data->instanceCount; i++)
free(data->instances[i].values);
// On libère ensuite le tableau d'instances
free(data->instances);
// Puis la structure data
free(data);
}
Subproblem *Subproblem_create(int maximumCapacity, int featureCount, int classCount)
{
if (maximumCapacity <= 0 || featureCount <= 0 || classCount <= 0)
abort();
// On alloue la structure subproblem
// Subproblem *subproblem = (Subproblem *)calloc(1, sizeof(Subproblem));
Subproblem *subproblem = (Subproblem *)malloc(sizeof(Subproblem));
subproblem->capacity = maximumCapacity;
// On récupère les valeurs données dans les paramètres
subproblem->featureCount = featureCount;
subproblem->classCount = classCount;
// On alloue le tableau d'instances de subproblem
subproblem->instances = (Instance **)calloc(maximumCapacity, sizeof(Instance *));
// On alloue la structure class de suproblem
subproblem->classes = (SubproblemClass *)calloc(subproblem->classCount, sizeof(SubproblemClass));
// On alloue les tableaux d'instances des class
for (int i = 0; i < classCount; i++)
subproblem->classes[i].instances = (Instance **)calloc(maximumCapacity, sizeof(Instance *));
// On renvoie subproblem
return subproblem;
}
void Subproblem_destroy(Subproblem *subproblem)
{
if (!subproblem)
abort();
// On libère les tableaux d'instances des class de subproblem
for (int i = 0; i < subproblem->classCount; i++)
free(subproblem->classes[i].instances);
// On libère la structure class
free(subproblem->classes);
// On libère le tableau instances de subproblem
free(subproblem->instances);
// On libère la structure subproblem
free(subproblem);
}
void Subproblem_insert(Subproblem *subproblem, Instance *instance)
{
if (!subproblem || !instance)
abort();
// On vérifie qu'on ne dépasse pas la capacité d'instances du subproblem
if (subproblem->instanceCount < subproblem->capacity)
{
// On ajoute l'instance en paramètre au tableau d'instances de subproblem
subproblem->instances[subproblem->instanceCount] = instance;
// On augmente le nombre d'instances dans subproblem
subproblem->instanceCount++;
// On cherche la classe de l'instance que l'on veut ajouter
for (int i = 0; i < subproblem->classCount; i++)
{
// Quand on l'a trouvée
if (instance->classID == i)
{
// On ajoute l'instance en paramètre au tableau d'instances de class de subproblem
subproblem->classes[i].instances[subproblem->classes[i].instanceCount] = instance;
// On augmente le nombre d'instances dans class de subproblem
subproblem->classes[i].instanceCount++;
}
}
}
}
Subproblem *Dataset_getSubproblem(Dataset *data)
{
if (data == NULL)
abort();
// On crée une structure subproblem avec data
Subproblem *subproblem = Subproblem_create(data->instanceCount, data->featureCount, data->classCount);
// On insère toutes les instances de data dans la structure subproblem créée
for (int i = 0; i < data->instanceCount; i++)
Subproblem_insert(subproblem, &data->instances[i]);
// On renvoie subproblem
return subproblem;
}
void Subproblem_print(Subproblem *subproblem)
{
if (!subproblem)
abort();
// On renvoie le nombre de feature, le nombre de class, le nombre d'instance
printf("Nb Features = %d, Nb classes = %d, Nb instances = %d \n", subproblem->featureCount, subproblem->classCount, subproblem->instanceCount);
// On renvoie le nombre d'instances par class
for (int i = 0; i < subproblem->classCount; i++)
printf("Class %d : %d instances\n", i, subproblem->classes[i].instanceCount);
}
Subproblem *Dataset_bagging(Dataset *data, float proportion)
{
if (data == NULL || proportion <= 0)
abort();
// On crée une structure subproblem avec data
Subproblem *subproblem = Subproblem_create(data->instanceCount * proportion, data->featureCount, data->classCount);
// On insère toutes les instances de data dans la structure subproblem créée
for (int i = 0; i < data->instanceCount * proportion; i++)
{
int random = rand() % data->instanceCount;
Subproblem_insert(subproblem, &data->instances[random]);
}
// On renvoie subproblem
return subproblem;
}
// Renvoie une
bool *Dataset_bagging_features(Dataset *data, float proportion)
{
if (data == NULL || proportion <= 0)
abort();
bool *features = (bool *)calloc(data->featureCount * proportion, sizeof(int));
for (int i = 0; i < data->featureCount * proportion; i++)
{
int random = rand() % data->featureCount;
features[random] = true;
}
return features;
}