Open fedala56 opened 4 years ago
Hi @fedala56 ,
I don't speak French so I've used Google Translate on your post. I'm not sure if I understood the second point of your post correctly.
Assuming the model parameters are the same, the difference could be in the data split or how the confusion matrix is being calculated.
We are using K-fold cross validation in the sample app. The confusion matrix is built using results from the sklearn.model_selection.cross_val_predict method.
# Get cross validation predictions for the confusion matrix
y_pred = cross_val_predict(self.model.pipe, self.X_train, y_train, cv=self.model.cv, fit_params=fit_params)
In the app cv
is set to 3. So this method splits the data into 3 different train and test sets, trains an estimator on each train set and returns predictions from each test set. Each sample ends up in the test set once.
So we can use the full training data to build the confusion matrix. I'm using the sklearn.metrics.confusion_matrix
method.
To calculate metrics using a hold-out dataset you can use the PyTools.sklearn_Calculate_Metrics(model_name, n_features)
method. This is described here.
Cheers, Nabeel
Bonjour Je me permet de vous contacter une autre fois, pour un autre problème sur l’application « Sample-App-Forecasting-with-Keras » quand j’essaie de télécharger les données il m’affiche une erreur qui la suivante « il fait appel au modèle …v1.h5, mais quand je regarde le chemin d’enregistrement le modèle est enregstré …v1.joblib. Est-ce que vous pouvez m’aider à corriger cette erreur s’il vous plait. Vous trouverez aussi des captures d’ecran sur l’erreur et le chemin d’enregistrement Cordialement Nedjmila Fedala
[cid:image001.png@01D6A0B1.E9C92F20][cid:image003.jpg@01D6A0B1.E9C92F20]
Hi Nedjmila, the images failed to upload on GitHub so I can't see the screenshots. Can you please try to repost? Also, did you see any errors when reloading the app?
Bonjour Vous trouverez en pièce jointe et en forme PDF les captures d’écrans que j’ai envoyé la dernière fois , il m’affiche cette erreur la quand j’essaie de rechargé les données. Bien Cordialement Nedjmila Fedala
That didn't seem to work either. You'll have to login to GitHub to post the attachments as they do not seem to get uploaded when replying by email.
Bonjour voila le fichier que j'ai insérer l'erreur
erreur.pdf Merci
Hi, the error from Qlik doesn't tell us enough. Can you look at the logs from the terminal where you are running the SSE?
If the H5 file is missing there was an error while training or saving the Keras model. It may be an error in the installation of some required package like Keras or Tensorflow.
Bonjour, je me permets de vous écrire afin de vous exposer mon problème.