Conformer
Conformer copied to clipboard
error no module named CF
Hi, When I run from CF import Conformer, I keep getting error no module named CF. I am running the conformer in google colab. I have already downloaded the files. Please help how to resolve this issue
Conformer
is a class in CF.py
, which is in the Conformer
directory (after you've cloned it), so what you can do is run
import sys
sys.path.append('./Conformer')
from CF import Conformer
instead