File size: 463 Bytes
e6769bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
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",
]