< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.PhraseListFeatureInfo
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\PhraseListFeatureInfo.cs
Covered lines:4
Uncovered lines:4
Coverable lines:8
Total lines:88
Line coverage:50% (4 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Phrases()-100%100%
get_IsExchangeable()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\PhraseListFeatureInfo.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Phraselist Feature.
 18    /// </summary>
 19    public partial class PhraseListFeatureInfo : FeatureInfoObject
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the PhraseListFeatureInfo class.
 23        /// </summary>
 424        public PhraseListFeatureInfo()
 25        {
 26            CustomInit();
 427        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the PhraseListFeatureInfo class.
 31        /// </summary>
 32        /// <param name="id">A six-digit ID used for Features.</param>
 33        /// <param name="name">The name of the Feature.</param>
 34        /// <param name="isActive">Indicates if the feature is enabled.</param>
 35        /// <param name="enabledForAllModels">Indicates if the feature is
 36        /// enabled for all models in the application.</param>
 37        /// <param name="phrases">A list of comma-separated values.</param>
 38        /// <param name="isExchangeable">An exchangeable phrase list feature
 39        /// are serves as single feature to the LUIS underlying training
 40        /// algorithm. It is used as a lexicon lookup feature where its value
 41        /// is 1 if the lexicon contains a given word or 0 if it doesn’t. Think
 42        /// of an exchangeable as a synonyms list. A non-exchangeable phrase
 43        /// list feature has all the phrases in the list serve as separate
 44        /// features to the underlying training algorithm. So, if you your
 45        /// phrase list feature contains 5 phrases, they will be mapped to 5
 46        /// separate features. You can think of the non-exchangeable phrase
 47        /// list feature as an additional bag of words that you are willing to
 48        /// add to LUIS existing vocabulary features. Think of a
 49        /// non-exchangeable as set of different words. Default value is
 50        /// true.</param>
 51        public PhraseListFeatureInfo(int? id = default(int?), string name = default(string), bool? isActive = default(bo
 052            : base(id, name, isActive, enabledForAllModels)
 53        {
 054            Phrases = phrases;
 055            IsExchangeable = isExchangeable;
 56            CustomInit();
 057        }
 58
 59        /// <summary>
 60        /// An initialization method that performs custom operations like setting defaults
 61        /// </summary>
 62        partial void CustomInit();
 63
 64        /// <summary>
 65        /// Gets or sets a list of comma-separated values.
 66        /// </summary>
 67        [JsonProperty(PropertyName = "phrases")]
 568        public string Phrases { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets an exchangeable phrase list feature are serves as
 72        /// single feature to the LUIS underlying training algorithm. It is
 73        /// used as a lexicon lookup feature where its value is 1 if the
 74        /// lexicon contains a given word or 0 if it doesn’t. Think of an
 75        /// exchangeable as a synonyms list. A non-exchangeable phrase list
 76        /// feature has all the phrases in the list serve as separate features
 77        /// to the underlying training algorithm. So, if you your phrase list
 78        /// feature contains 5 phrases, they will be mapped to 5 separate
 79        /// features. You can think of the non-exchangeable phrase list feature
 80        /// as an additional bag of words that you are willing to add to LUIS
 81        /// existing vocabulary features. Think of a non-exchangeable as set of
 82        /// different words. Default value is true.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "isExchangeable")]
 585        public bool? IsExchangeable { get; set; }
 86
 87    }
 88}