-
Notifications
You must be signed in to change notification settings - Fork 22
Add dependency workaround for Intel-based Macs #227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thank you for opening this PR. Since this is a release branch, the PR must complete the release checklist, below:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## release/v1.8 #227 +/- ##
===============================================
Coverage ? 83.69%
===============================================
Files ? 103
Lines ? 10961
Branches ? 0
===============================================
Hits ? 9174
Misses ? 1787
Partials ? 0 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ba9fedb
to
be447d0
Compare
NOTE: This is a backup option in case the transition from
tensorflow
toPyTorch
doesn't worktensorflow
is needed to enable data-driven features in Progpy. However, we need a dependency workaround using an older version oftensorflow
at2.16.2
since newer versions like2.18.0
are not available for Intel-based Macs. Older versions oftensorflow
may have issues with newer versions ofnumpy
andnumpoly
.The workaround thus includes a know working combination of of
tensorflow==2.16.2
,numpy==1.26.4
, andnumpoly==1.2.12
.More information on
tensorflow
support, refer to tensorflow/tensorflow#78836