mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-23 23:26:25 +01:00
Update headers
This commit is contained in:
parent
33f85baa1e
commit
b18fd7aab9
@ -7,8 +7,8 @@
|
||||
void help(char* call);
|
||||
|
||||
/*
|
||||
* Fonction utilisée à des fins de développement du réseau convolutif
|
||||
* Fonction principale
|
||||
*/
|
||||
void dev_conv();
|
||||
int main(int argc, char* argv[]);
|
||||
|
||||
#endif
|
@ -6,7 +6,7 @@
|
||||
|
||||
#define EPOCHS 10
|
||||
#define BATCHES 500
|
||||
//#define USE_MULTITHREADING
|
||||
#define USE_MULTITHREADING
|
||||
#define LEARNING_RATE 0.05
|
||||
|
||||
|
||||
@ -23,11 +23,16 @@ typedef struct TrainParameters {
|
||||
int height; // Hauteur des images
|
||||
int dataset_type; // Type de dataset
|
||||
int start; // Début des images
|
||||
int nb_images; // Nombre d'images àn traiter
|
||||
int nb_images; // Nombre d'images à traiter
|
||||
float accuracy; // Accuracy (à renvoyer)
|
||||
float loss; // Loss (à renvoyer)
|
||||
} TrainParameters;
|
||||
|
||||
/*
|
||||
* Partie entière supérieure de a/b
|
||||
*/
|
||||
int div_up(int a, int b);
|
||||
|
||||
|
||||
/*
|
||||
* Fonction auxiliaire d'entraînement destinée à être exécutée sur plusieurs threads à la fois
|
||||
|
Loading…
Reference in New Issue
Block a user