Spaces:
Running
Running
| """ | |
| The echonet package contains code for loading echocardiogram videos, and | |
| functions for training and testing segmentation and ejection fraction | |
| prediction models. | |
| """ | |
| import click | |
| from echonet.__version__ import __version__ | |
| from echonet.config import CONFIG as config | |
| import echonet.datasets as datasets | |
| import echonet.utils as utils | |
| def main(): | |
| """Entry point for command line interface.""" | |
| del click | |
| main.add_command(utils.segmentation.run) | |
| main.add_command(utils.video.run) | |
| __all__ = ["__version__", "config", "datasets", "main", "utils"] | |