pygod-team / pygod

A Python Library for Graph Outlier Detection (Anomaly Detection)
https://pygod.org
BSD 2-Clause "Simplified" License
1.31k stars 127 forks source link

Is any method to track metrics like loss? #88

Closed jialec1909 closed 11 months ago

jialec1909 commented 11 months ago

Is it possible to build logger information tracker inside logger function ? I am looking for some visualization tools to track the loss or scores during each epoch. And I find the logger function embedded which can print those information. Do you think it is possible to add the metrics tracking function inside fit()/logger() ?

BR

kayzliu commented 11 months ago

We do have the logger you required. If you initialize the detector with different verbose levels from 0 to 3, it will show you various amount of information. For example, detector = DOMINANT(verbose=3).