Did TensorFlowV2Classifier get migrated somewhere in new 1.8.0 version of ART? #1336
-
ref: ART: 1.8.0 Getting this error: ModuleNotFoundError: No module named 'art.classifiers' I see that the package art.classifiers was removed in 1.8.0 art.preprocessing.expectation_over_transformation, art.estimators.classification and art.estimators.classification.QueryEfficientGradientEstimationClassifier |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @thungp Yes, |
Beta Was this translation helpful? Give feedback.
Hi @thungp Yes,
art.classifiers
has been deprecated and removed with ART 1.8.0. Please update imports withfrom art.estimators.classification import TensorFlowV2Classifier
, for example.