MachineLearningLifeScience / poli

A library of discrete objectives
MIT License
14 stars 1 forks source link

Force `gfp_cbas` to always run isolated #122

Closed miguelgondu closed 9 months ago

miguelgondu commented 9 months ago

Inside the __init__.py of objective_repository we are eagerly importing gfp_cbas if we can. As a side-effect, we end up running into tf warnings (and compatibility issues).

Should we always force gfp_cbas to run in isolation? This can be achieved by just removing the try-except block that imports it inside said __init__.py.

miguelgondu commented 9 months ago

Let me know what you think, @RMichae1 .