Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb 
Overview
Configs for the input data used to create the issue model.
Instance Attribute Summary collapse
- 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A filter to reduce the conversations used for training the model to a specific subset.
 - 
  
    
      #medium  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Medium of conversations used in training data.
 - 
  
    
      #training_conversations_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig.
      2811 2812 2813  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2811 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#filter ⇒ String
A filter to reduce the conversations used for training the model to a specific
subset.
Corresponds to the JSON property filter
      2797 2798 2799  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2797 def filter @filter end  | 
  
#medium ⇒ String
Medium of conversations used in training data. This field is being deprecated.
To specify the medium to be used in training a new issue model, set the 
medium field on filter.
Corresponds to the JSON property medium
      2804 2805 2806  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2804 def medium @medium end  | 
  
#training_conversations_count ⇒ Fixnum
Output only. Number of conversations used in training. Output only.
Corresponds to the JSON property trainingConversationsCount
      2809 2810 2811  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2809 def training_conversations_count @training_conversations_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2816 2817 2818 2819 2820  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2816 def update!(**args) @filter = args[:filter] if args.key?(:filter) @medium = args[:medium] if args.key?(:medium) @training_conversations_count = args[:training_conversations_count] if args.key?(:training_conversations_count) end  |