File size: 311 Bytes
feba2ad
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Model Package

This Package contains Pico models (currently only the Pico Decoder). We plan to implement other
architectures in the future.

If you have other models you'd like to implement, we recommend you add modules to this package.
"""

from .pico_decoder import PicoDecoder

__all__ = ["PicoDecoder"]