car_web2 / models /__init__.py
wesam0099's picture
Back to original working version
1512569
raw
history blame contribute delete
402 Bytes
"""
Models Package
==============
MindSpore neural network models for accident prediction.
"""
from .mindspore_model import (
AccidentModelTrainer,
NumpyAccidentModel,
get_accident_type_name,
prepare_features,
MINDSPORE_AVAILABLE
)
__all__ = [
'AccidentModelTrainer',
'NumpyAccidentModel',
'get_accident_type_name',
'prepare_features',
'MINDSPORE_AVAILABLE'
]