Ejemplo n.º 1
0
 private Util.Set <string> ConstructModifierSet(Mention.IParse[] tokens, int headIndex)
 {
     Util.Set <string> modifierSet = new Util.HashSet <string>();
     for (int tokenIndex = 0; tokenIndex < headIndex; tokenIndex++)
     {
         Mention.IParse token = tokens[tokenIndex];
         modifierSet.Add(token.ToString().ToLower());
     }
     return(modifierSet);
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Returns a list of word features for the specified tokens.
        /// </summary>
        /// <param name="token">
        /// The token for which features are to be computed.
        /// </param>
        /// <returns>
        /// a list of word features for the specified tokens.
        /// </returns>
        public static List <string> GetWordFeatures(Mention.IParse token)
        {
            List <string> wordFeatures = new List <string>();
            string        word         = token.ToString().ToLower();
            string        wordFeature  = string.Empty;

            if (mEndsWithPeriod.IsMatch(word))
            {
                wordFeature = @",endWithPeriod";
            }

            string tokenTag = token.SyntacticType;

            wordFeatures.Add("w=" + word + ",t=" + tokenTag + wordFeature);
            wordFeatures.Add("t=" + tokenTag + wordFeature);
            return(wordFeatures);
        }
Ejemplo n.º 3
0
        private void Initialize(Mention.IHeadFinder headFinder)
        {
            Mention.IParse        head      = headFinder.GetLastHead(Parse);
            List <Mention.IParse> tokenList = head.Tokens;

            this.HeadTokenIndex = headFinder.GetHeadIndex(head);
            Mention.IParse headToken = headFinder.GetHeadToken(head);
            _tokens            = tokenList.ToArray();
            this.HeadTokenTag  = headToken.SyntacticType;
            this.HeadTokenText = headToken.ToString();
            if (PartsOfSpeech.IsNoun(this.HeadTokenTag) && !PartsOfSpeech.IsProperNoun(this.HeadTokenTag))
            {
                this.Synsets = GetSynsetSet(this);
            }
            else
            {
                this.Synsets = new Util.HashSet <string>();
            }
        }
Ejemplo n.º 4
0
        private void Initialize(Mention.IHeadFinder headFinder)
        {
            Mention.IParse        head      = headFinder.GetLastHead(Parse);
            List <Mention.IParse> tokenList = head.Tokens;

            mHeadTokenIndex = headFinder.GetHeadIndex(head);
            Mention.IParse headToken = headFinder.GetHeadToken(head);
            mTokens        = tokenList.ToArray();
            mHeadTokenTag  = headToken.SyntacticType;
            mHeadTokenText = headToken.ToString();
            if (mHeadTokenTag.StartsWith("NN") && !mHeadTokenTag.StartsWith("NNP"))
            {
                mSynsets = GetSynsetSet(this);
            }
            else
            {
                mSynsets = new Util.HashSet <string>();
            }
        }
Ejemplo n.º 5
0
        private string ExcludedDeterminerMentionString(Mention.MentionContext entityContext)
        {
            System.Text.StringBuilder output = new System.Text.StringBuilder();
            bool first = true;

            Mention.IParse[] mentionTokenParses = entityContext.TokenParses;
            for (int tokenIndex = 0; tokenIndex < mentionTokenParses.Length; tokenIndex++)
            {
                Mention.IParse token = mentionTokenParses[tokenIndex];
                string         tag   = token.SyntacticType;
                if (tag != "DT")
                {
                    if (!first)
                    {
                        output.Append(" ");
                    }
                    output.Append(token.ToString());
                    first = false;
                }
            }
            return(output.ToString());
        }