File size: 250 Bytes
865fd8a
 
 
 
 
 
 
 
 
 
 
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'] = '2'
sys.path.append(os.getcwd())

from trainer import Trainer

if __name__ == '__main__':
    trainer = Trainer()
    trainer.train()