Source code for simpleml.constants

"""
Module to centralize all referenced constants in SimpleML
"""

[docs]__author__ = "Elisha Yadgaran"
# Package Constants
[docs]TRAIN_SPLIT: str = "TRAIN"
[docs]VALIDATION_SPLIT: str = "VALIDATION"
[docs]TEST_SPLIT: str = "TEST"
[docs]class SimpleMLConstants(object):
""" Class for constants referenced in the code base. Uses class attributes to better facilitate developer mutation """