-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
Description
Two attempts by two contributors have failed to make this work. The problem is that everything works fine until you use MLJModels from another package (in our case MLJ). Then you get lot's of these:
WARNING: eval into closed module MLJModels:
true
** incremental compilation may be fatally broken for this module **
It seems one cannot have calls to eval
in an __init__
function, if the module is to be used by another package. The metadata contains stuff that needs to be eval
uated, so there is no quick fix I can think of.
Any ideas welcome.