Spaces:
Sleeping
Sleeping
""" | |
Gregg Shorthand Recognition | |
A comprehensive package for recognizing Gregg shorthand using deep learning models. | |
""" | |
__version__ = "1.0.0" | |
__author__ = "a0a7" | |
__email__ = "[email protected]" | |
from .recognizer import GreggRecognition | |
from .models import Seq2SeqModel, ImageToTextModel | |
from .config import Seq2SeqConfig, ImageToTextConfig | |
__all__ = [ | |
"GreggRecognition", | |
"Seq2SeqModel", | |
"ImageToTextModel", | |
"Seq2SeqConfig", | |
"ImageToTextConfig", | |
] | |