- JSON representation
- CreateIssueModelRequest
- IssueModel
- InputDataConfig
- CustomTaxonomy
- TaxonomyEntry
- IssueModelLabelStats
- IssueStats
Metadata for creating an issue model.
JSON representation |
---|
{
"createTime": string,
"endTime": string,
"request": {
object ( |
Fields | |
---|---|
createTime |
Output only. The time the operation was created. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
endTime |
Output only. The time the operation finished running. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
request |
The original request for creation. |
CreateIssueModelRequest
The request to create an issue model.
JSON representation |
---|
{
"parent": string,
"issueModel": {
object ( |
Fields | |
---|---|
parent |
Required. The parent resource of the issue model. |
issueModel |
Required. The issue model to create. |
IssueModel
The issue model resource.
JSON representation |
---|
{ "name": string, "displayName": string, "createTime": string, "updateTime": string, "issueCount": string, "state": enum ( |
Fields | |
---|---|
name |
Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issueModel} |
displayName |
The representative name for the issue model. |
createTime |
Output only. The time at which this issue model was created. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
updateTime |
Output only. The most recent time at which the issue model was updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
issueCount |
Output only. Number of issues in this issue model. |
state |
Output only. State of the model. |
inputDataConfig |
Configs for the input data that used to create the issue model. |
trainingStats |
Output only. Immutable. The issue model's label statistics on its training data. |
modelType |
Type of the model. |
languageCode |
Language of the model. |
multiLingualMatch |
Whether the model can be used for analysis with conversations in multiple languages. The topic names and descriptions will be in the |
InputDataConfig
Configs for the input data used to create the issue model.
JSON representation |
---|
{ "medium": enum ( |
Fields | |
---|---|
medium |
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 |
trainingConversationsCount |
Output only. Number of conversations used in training. Output only. |
filter |
A filter to reduce the conversations used for training the model to a specific subset. |
customTaxonomy |
Custom supplied taxonomy. |
issueGranularity |
Issue granularity preference for model training. |
industry |
Customer industry, used to improve specificity of the topic model. |
CustomTaxonomy
Structure for custom supplied taxonomy. A custom taxonomy consists of multiple taxonomy entries organized in a hierarchical way.
JSON representation |
---|
{
"taxonomyEntries": [
{
object ( |
Fields | |
---|---|
taxonomyEntries[] |
List of taxonomy entries. |
TaxonomyEntry
Structure for a taxonomy entry.
JSON representation |
---|
{ "id": string, "displayName": string, "parents": [ string ], "description": string } |
Fields | |
---|---|
id |
Immutable. The Id of the taxonomy entry |
displayName |
The content of the taxonomy entry. |
parents[] |
Ids of parent taxonomy entries. |
description |
The description of the taxonomy entry. |
IssueModelLabelStats
Aggregated statistics about an issue model.
JSON representation |
---|
{
"analyzedConversationsCount": string,
"unclassifiedConversationsCount": string,
"issueStats": {
string: {
object ( |
Fields | |
---|---|
analyzedConversationsCount |
Number of conversations the issue model has analyzed at this point in time. |
unclassifiedConversationsCount |
Number of analyzed conversations for which no issue was applicable at this point in time. |
issueStats |
Statistics on each issue. Key is the issue's resource name. An object containing a list of |
IssueStats
Aggregated statistics about an issue.
JSON representation |
---|
{ "issue": string, "labeledConversationsCount": string, "displayName": string } |
Fields | |
---|---|
issue |
Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issueModel}/issues/{issue} |
labeledConversationsCount |
Number of conversations attached to the issue at this point in time. |
displayName |
Display name of the issue. |