0 votes
par dans Installation FIDLE

Bonjour,

j'essaie d'exécuter le premier notebook (K3WINE1) sur un Mac (intel Corei9 sous sonoma).

j'obtiens l'erreur suivante quand j'essaie d'entrainer le modèle (ie, d'exécuter:

history = model.fit(x_train,
                    y_train,
                    epochs          = 50,
                    batch_size      = 10,
                    verbose         = fit_verbosity,
                    validation_data = (x_test, y_test),
                    callbacks       = [savemodel_callback]):

######### erreur
NotImplementedError: The operator 'aten::_foreach_mul_.Scalar' is not currently implemented for the MPS device. If you want this op to be added in priority during the prototype phase of this feature, please comment on https://github.com/pytorch/pytorch/issues/77764. As a temporary fix, you can set the environment variable `PYTORCH_ENABLE_MPS_FALLBACK=1` to use the CPU as a fallback for this op. WARNING: this will be slower than running natively on MPS.

######################
J'ai essayé différentes réinstallations, et d'ajouter comme recommandé: 
os.environ['PYTORCH_ENABLE_MPS_FALLBACK'] = '1'
mais sans succès.

Si quelqu'un a été confronté au même problème et connait la solution, je suis preneur!

Bonne journée

1 Réponse

0 votes
par Vétéran du GPU 🐋 (68.8k points) il y a
 
Meilleure réponse
je cloture votre réponse (cela me simplifie la modération)
...