You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the listeners in linkpred.evaluation.listeners use fixed file names (well, they change, depending on dataset, predictor and time stamp, but it's not really possible to specify your own name). That sucks.
My original thought was that base class Listener would just accept an extra argument in its ctor, which could then be used by all descendant classes. The problematic cases, however, are CachePredictionListener and CacheEvaluationListener, since they can actually generate multiple files (e.g., one per predictor). Possibilities:
change them to deliver all their output to one file
figure out how we'd like to handle them
The text was updated successfully, but these errors were encountered:
At the moment, the listeners in
linkpred.evaluation.listeners
use fixed file names (well, they change, depending on dataset, predictor and time stamp, but it's not really possible to specify your own name). That sucks.My original thought was that base class
Listener
would just accept an extra argument in its ctor, which could then be used by all descendant classes. The problematic cases, however, areCachePredictionListener
andCacheEvaluationListener
, since they can actually generate multiple files (e.g., one per predictor). Possibilities:The text was updated successfully, but these errors were encountered: