sicara/tf-explain

saved files are .v2 files

lilianmarey opened this issue · 4 comments

Hi !

I was trying to use tf-explain on my pretrained neural nets, it seems it worked, however, after running my code, the saved files are ".v2" files. I really don't know how to open this type of files, or how to convert it into .png for example.

I wanted to know if getting this type of files was normal, and if it is, how to open it.

Thanks anyway for sharing the library

Those are probably tensorboard files. Can you provide which methods/callbacks you're using?

I'm using OcclusionSensitivityCallback and IntegratedGradientsCallback, I had .v2 files for both.
Here is also the architecture of my net and the code I ran
Capture d’écran 2021-07-07 à 15 56 47
Capture d’écran 2021-07-07 à 15 56 40

All callbacks are made to draw images directly into tensorboard. You have to open a tensorboard with tensorboard --logdir path_to_logs and go to the images tab

Ok, it worked, thanks a lot !