File size: 356 Bytes
5003662 4467900 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import sys
# add current folder to the python path
sys.path.append(os.path.dirname(__file__))
# this is required to dynamically load the PIE models
from pie_modules.models import * # noqa: F403
from pie_modules.taskmodules import * # noqa: F403
from pytorch_ie.models import * # noqa: F403
from pytorch_ie.taskmodules import * # noqa: F403
|