mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-05 19:41:59 +08:00
17 lines
356 B
Python
17 lines
356 B
Python
# -*- encoding: utf-8 -*-
|
|
'''
|
|
@File : __init__.py
|
|
@Time : 2022/03/02 13:57:09
|
|
@Author : Ming Ding
|
|
@Contact : dm18@mails.tsinghua.edu.cn
|
|
'''
|
|
|
|
# here put the import lib
|
|
import os
|
|
import sys
|
|
import math
|
|
import random
|
|
|
|
from .direct_sr import DirectSuperResolution
|
|
from .iterative_sr import IterativeSuperResolution
|
|
from .sr_group import SRGroup |