:py:mod:`abacusai.model_upload`
===============================

.. py:module:: abacusai.model_upload


Module Contents
---------------

Classes
~~~~~~~

.. autoapisummary::

   abacusai.model_upload.ModelUpload




.. py:class:: ModelUpload(client, modelId=None, modelVersion=None, status=None, createdAt=None, modelUploadId=None, embeddingsUploadId=None, artifactsUploadId=None, verificationsUploadId=None, defaultItemsUploadId=None, modelFileUploadId=None, modelStateUploadId=None, inputPreprocessorUploadId=None, requirementsUploadId=None, resourcesUploadId=None)

   Bases: :py:obj:`abacusai.return_class.AbstractApiClass`

   A model version that includes the upload identifiers for the various required files.

   :param client: An authenticated API Client instance
   :type client: ApiClient
   :param modelId: A reference to the model this version belongs to.
   :type modelId: str
   :param modelVersion: A unique identifier for the model version.
   :type modelVersion: str
   :param status: The current status of the model.
   :type status: str
   :param createdAt: The timestamp at which the model version was created, in ISO-8601 format.
   :type createdAt: str
   :param modelUploadId: An upload identifier to be used when uploading the TensorFlow Saved Model.
   :type modelUploadId: str
   :param embeddingsUploadId: An upload identifier to be used when uploading the embeddings CSV.
   :type embeddingsUploadId: str
   :param artifactsUploadId: An upload identifier to be used when uploading the artifacts JSON file.
   :type artifactsUploadId: str
   :param verificationsUploadId: An upload identifier to be used when uploading the verifications JSON file.
   :type verificationsUploadId: str
   :param defaultItemsUploadId: An upload identifier to be used when uploading the default items JSON file.
   :type defaultItemsUploadId: str
   :param modelFileUploadId: An upload identifier to be used when uploading the model JSON file.
   :type modelFileUploadId: str
   :param modelStateUploadId: An upload identifier to be used when uploading the model state JSON file.
   :type modelStateUploadId: str
   :param inputPreprocessorUploadId: An upload identifier to be used when uploading the input preprocessor JSON file.
   :type inputPreprocessorUploadId: str
   :param requirementsUploadId: An upload identifier to be used when uploading the requirements JSON file.
   :type requirementsUploadId: str
   :param resourcesUploadId: An upload identifier to be used when uploading the resources JSON file.
   :type resourcesUploadId: str

   .. py:method:: __repr__()

      Return repr(self).


   .. py:method:: to_dict()

      Get a dict representation of the parameters in this class

      :returns: The dict value representation of the class parameters
      :rtype: dict



