Robin-33b / lmflow /models /base_model.py
hendrydong's picture
Upload 39 files
3455d37
raw
history blame
162 Bytes
#!/usr/bin/env python
# coding=utf-8
"""Base model class.
"""
from abc import ABC
class BaseModel(ABC):
def __init__(self, *args, **kwargs):
pass