mirror of
https://github.com/OpenBMB/MiniCPM-V.git
synced 2026-02-05 02:09:20 +08:00
17 lines
234 B
Python
17 lines
234 B
Python
try:
|
|
import torch
|
|
except ImportError:
|
|
pass
|
|
|
|
from .smp import *
|
|
from .api import *
|
|
from .dataset import *
|
|
from .utils import *
|
|
from .vlm import *
|
|
from .config import *
|
|
from .tools import cli
|
|
|
|
load_env()
|
|
|
|
__version__ = '0.2rc1'
|