Open rmoyav opened 1 year ago
I'm using your model for academic purposes and I had some issues with your eval.py function until I saw you have a little mistake in line 23.
Where you have: fidx = rname.rsplit("_sr")[0] It should be: fidx = fname.rsplit("_sr")[0]
fidx = rname.rsplit("_sr")[0]
fidx = fname.rsplit("_sr")[0]
Hope it helps!
I'm using your model for academic purposes and I had some issues with your eval.py function until I saw you have a little mistake in line 23.
Where you have:
fidx = rname.rsplit("_sr")[0]
It should be:fidx = fname.rsplit("_sr")[0]
Hope it helps!