resnet-unet-segmentation / run_evaluate.py
AndreCosta's picture
Initial clean commit with LFS configured
7b615ae
raw
history blame contribute delete
184 Bytes
import os
import sys
sys.path.append(os.path.abspath(os.path.dirname(__file__)))
from scripts.Segmentation import evaluate_model
if __name__ == '__main__':
evaluate_model.run()