Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 204 Bytes
e1c08c5 |
1 2 3 4 5 6 7 |
""" Module import helper.
Modifies PATH in order to allow us to import the torchmoji directory.
"""
import sys
from os.path import abspath, dirname
sys.path.insert(0, dirname(dirname(abspath(__file__))))
|