Spaces:
Running
Running
File size: 250 Bytes
99afdfe |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import sys
# os.chdir('/home/jovyan/Co-Speech-Motion-Generation/src')
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
sys.path.append(os.getcwd())
from trainer import Trainer
if __name__ == '__main__':
trainer = Trainer()
trainer.train() |