Conformer icon indicating copy to clipboard operation
Conformer copied to clipboard

error no module named CF

Open utkarsh0902311047 opened this issue 2 years ago • 1 comments

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

utkarsh0902311047 avatar Mar 16 '22 10:03 utkarsh0902311047

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

dlccyes avatar Mar 26 '22 17:03 dlccyes