Muhammad Ahsan Fillah Abadi
Results
2
comments of
Muhammad Ahsan Fillah Abadi
> ### Description > In retrain_classification_ptq_tf2.ipynb, there is a check `assert float(tf.__version__[:3]) >= 2.3` that should check whether the used tensorflow version is at least 2.3 or higher. Now colab...
> Version numbers as floats are always a bad idea. Something like this should fix it: > > ```python > from packaging import version > > assert version.parse(tf.__version__) >= version.parse("2.3"),...