Exemplo n.º 1
0
        ///<summary>
        ///Advances the parse by assigning it POS tags and returns multiple tag sequences.
        ///</summary>
        ///<param name="inputParse">
        ///The parse to be tagged.
        ///</param>
        ///<returns>
        ///Parses with different pos-tag sequence assignments.
        ///</returns>
        private Parse[] AdvanceTags(Parse inputParse)
        {
            Parse[] children      = inputParse.GetChildren();
            var     words         = children.Select(ch => ch.ToString()).ToArray();
            var     probabilities = new double[words.Length];

            Util.Sequence[] tagSequences = posTagger.TopKSequences(words);
            if (tagSequences.Length == 0)
            {
                Console.Error.WriteLine("no tag sequence");
            }
            var newParses = new Parse[tagSequences.Length];

            for (int tagSequenceIndex = 0; tagSequenceIndex < tagSequences.Length; tagSequenceIndex++)
            {
                string[] tags = tagSequences[tagSequenceIndex].Outcomes.ToArray();
                tagSequences[tagSequenceIndex].GetProbabilities(probabilities);
                newParses[tagSequenceIndex] = (Parse)inputParse.Clone();                  //copies top level
                //if (CreateDerivationString)
                //{
                //	newParses[tagSequenceIndex].AppendDerivationBuffer(tagSequenceIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
                //	newParses[tagSequenceIndex].AppendDerivationBuffer(".");
                //}
                for (int wordIndex = 0; wordIndex < words.Length; wordIndex++)
                {
                    Parse wordParse = children[wordIndex];
                    //System.Console.Error.WriteLine("inserting tag " + tags[wordIndex]);
                    double wordProbability = probabilities[wordIndex];
                    newParses[tagSequenceIndex].Insert(new Parse(wordParse.Text, wordParse.Span, tags[wordIndex], wordProbability));
                    newParses[tagSequenceIndex].AddProbability(Math.Log(wordProbability));
                    //newParses[tagSequenceIndex].Show();
                }
            }
            return(newParses);
        }
Exemplo n.º 2
0
        ///<summary>
        ///Returns the top chunk sequences for the specified parse.
        ///</summary>
        ///<param name="inputParse">
        ///A pos-tag assigned parse.
        ///</param>
        /// <param name="minChunkScore">
        /// the minimum probability for an allowed chunk sequence.
        /// </param>
        ///<returns>
        ///The top chunk assignments to the specified parse.
        ///</returns>
        private Parse[] AdvanceChunks(Parse inputParse, double minChunkScore)
        {
            // chunk
            Parse[] children      = inputParse.GetChildren();
            var     words         = new string[children.Length];
            var     parseTags     = new string[words.Length];
            var     probabilities = new double[words.Length];

            for (int childParseIndex = 0, childParseCount = children.Length; childParseIndex < childParseCount; childParseIndex++)
            {
                Parse currentChildParse = children[childParseIndex];
                words[childParseIndex]     = currentChildParse.Head.ToString();
                parseTags[childParseIndex] = currentChildParse.Type;
            }
            //System.Console.Error.WriteLine("adjusted min chunk score = " + (minChunkScore - inputParse.Probability));
            Util.Sequence[] chunkerSequences = basalChunker.TopKSequences(words, parseTags, minChunkScore - inputParse.Probability);
            var             newParses        = new Parse[chunkerSequences.Length];

            for (int sequenceIndex = 0, sequenceCount = chunkerSequences.Length; sequenceIndex < sequenceCount; sequenceIndex++)
            {
                newParses[sequenceIndex] = (Parse)inputParse.Clone();                  //copies top level
                if (CreateDerivationString)
                {
                    newParses[sequenceIndex].AppendDerivationBuffer(sequenceIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
                    newParses[sequenceIndex].AppendDerivationBuffer(".");
                }
                string[] tags = chunkerSequences[sequenceIndex].Outcomes.ToArray();
                chunkerSequences[sequenceIndex].GetProbabilities(probabilities);
                int    start = -1;
                int    end   = 0;
                string type  = null;
                //System.Console.Error.Write("sequence " + sequenceIndex + " ");
                for (int tagIndex = 0; tagIndex <= tags.Length; tagIndex++)
                {
                    //if (tagIndex != tags.Length)
                    //{
                    //	System.Console.Error.WriteLine(words[tagIndex] + " " + parseTags[tagIndex] + " " + tags[tagIndex] + " " + probabilities[tagIndex]);
                    //}
                    if (tagIndex != tags.Length)
                    {
                        newParses[sequenceIndex].AddProbability(Math.Log(probabilities[tagIndex]));
                    }
                    if (tagIndex != tags.Length && tags[tagIndex].StartsWith(ContinuePrefix))
                    {                     // if continue just update end chunking tag don't use mContinueTypeMap
                        end = tagIndex;
                    }
                    else
                    {                     //make previous constituent if it exists
                        if (type != null)
                        {
                            //System.Console.Error.WriteLine("inserting tag " + tags[tagIndex]);
                            Parse startParse = children[start];
                            Parse endParse   = children[end];
                            //System.Console.Error.WriteLine("Putting " + type + " at " + start + "," + end + " " + newParses[sequenceIndex].Probability);
                            var consitituents = new Parse[end - start + 1];
                            consitituents[0] = startParse;
                            //consitituents[0].Label = "Start-" + type;
                            if (end - start != 0)
                            {
                                consitituents[end - start] = endParse;
                                //consitituents[end - start].Label = "Cont-" + type;
                                for (int constituentIndex = 1; constituentIndex < end - start; constituentIndex++)
                                {
                                    consitituents[constituentIndex] = children[constituentIndex + start];
                                    //consitituents[constituentIndex].Label = "Cont-" + type;
                                }
                            }
                            newParses[sequenceIndex].Insert(new Parse(startParse.Text, new Util.Span(startParse.Span.Start, endParse.Span.End), type, 1, headRules.GetHead(consitituents, type)));
                        }
                        if (tagIndex != tags.Length)
                        {                         //update for new constituent
                            if (tags[tagIndex].StartsWith(StartPrefix))
                            {                     // don't use mStartTypeMap these are chunk tags
                                type  = tags[tagIndex].Substring(StartPrefix.Length);
                                start = tagIndex;
                                end   = tagIndex;
                            }
                            else
                            {                             // other
                                type = null;
                            }
                        }
                    }
                }
                //newParses[sequenceIndex].Show();
                //System.Console.Out.WriteLine();
            }
            return(newParses);
        }
Exemplo n.º 3
0
        ///<summary>
        ///Advances the specified parse and returns the an array advanced parses whose probability accounts for
        ///more than the speicficed amount of probability mass, Q.
        ///</summary>
        ///<param name="inputParse">
        ///The parse to advance.
        ///</param>
        ///<param name="qParam">
        ///The amount of probability mass that should be accounted for by the advanced parses.
        ///</param>
        private Parse[] AdvanceParses(Parse inputParse, double qParam, double[] buildProbabilities, double[] checkProbabilities)
        {
            double qOpp           = 1 - qParam;
            Parse  lastStartNode  = null;               // The closest previous node which has been labeled as a start node.
            int    lastStartIndex = -1;                 // The index of the closest previous node which has been labeled as a start node.
            string lastStartType  = null;               // The type of the closest previous node which has been labeled as a start node.
            int    advanceNodeIndex;                    // The index of the node which will be labeled in this iteration of advancing the parse.
            Parse  advanceNode = null;                  // The node which will be labeled in this iteration of advancing the parse.

            Parse[] children  = inputParse.GetChildren();
            int     nodeCount = children.Length;

            //determines which node needs to be labeled and prior labels.
            for (advanceNodeIndex = 0; advanceNodeIndex < nodeCount; advanceNodeIndex++)
            {
                advanceNode = children[advanceNodeIndex];
                if (advanceNode.Label == null)
                {
                    break;
                }
                else if (startTypeMap.ContainsKey(advanceNode.Label))
                {
                    lastStartType  = startTypeMap[advanceNode.Label];
                    lastStartNode  = advanceNode;
                    lastStartIndex = advanceNodeIndex;
                }
            }
            var newParsesList = new List <Parse>(buildModel.OutcomeCount);

            //call build
            buildModel.Evaluate(buildContextGenerator.GetContext(children, advanceNodeIndex), buildProbabilities);
            double buildProbabilitiesSum = 0;

            while (buildProbabilitiesSum < qParam)
            {
                //  The largest unadvanced labeling.
                int highestBuildProbabilityIndex = 0;
                for (int probabilityIndex = 1; probabilityIndex < buildProbabilities.Length; probabilityIndex++)
                {                 //for each build outcome
                    if (buildProbabilities[probabilityIndex] > buildProbabilities[highestBuildProbabilityIndex])
                    {
                        highestBuildProbabilityIndex = probabilityIndex;
                    }
                }
                if (buildProbabilities[highestBuildProbabilityIndex] == 0)
                {
                    break;
                }

                double highestBuildProbability = buildProbabilities[highestBuildProbabilityIndex];

                buildProbabilities[highestBuildProbabilityIndex] = 0;                 //zero out so new max can be found
                buildProbabilitiesSum += highestBuildProbability;

                string tag = buildModel.GetOutcomeName(highestBuildProbabilityIndex);
                //System.Console.Out.WriteLine("trying " + tag + " " + buildProbabilitiesSum + " lst=" + lst);
                if (highestBuildProbabilityIndex == topStartIndex)
                {                 // can't have top until complete
                    continue;
                }
                //System.Console.Error.WriteLine(probabilityIndex + " " + tag + " " + highestBuildProbability);
                if (startTypeMap.ContainsKey(tag))
                {                 //update last start
                    lastStartIndex = advanceNodeIndex;
                    lastStartNode  = advanceNode;
                    lastStartType  = startTypeMap[tag];
                }
                else if (continueTypeMap.ContainsKey(tag))
                {
                    if (lastStartNode == null || lastStartType != continueTypeMap[tag])
                    {
                        continue;                         //Cont must match previous start or continue
                    }
                }
                var newParse1 = (Parse)inputParse.Clone();                  //clone parse
                if (CreateDerivationString)
                {
                    newParse1.AppendDerivationBuffer(highestBuildProbabilityIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
                    newParse1.AppendDerivationBuffer("-");
                }
                newParse1.SetChild(advanceNodeIndex, tag);                 //replace constituent labeled

                newParse1.AddProbability(Math.Log(highestBuildProbability));
                //check
                checkModel.Evaluate(checkContextGenerator.GetContext(newParse1.GetChildren(), lastStartType, lastStartIndex, advanceNodeIndex), checkProbabilities);
                //System.Console.Out.WriteLine("check " + mCheckProbabilities[mCompleteIndex] + " " + mCheckProbabilities[mIncompleteIndex]);
                Parse newParse2 = newParse1;
                if (checkProbabilities[completeIndex] > qOpp)
                {                 //make sure a reduce is likely
                    newParse2 = (Parse)newParse1.Clone();
                    if (CreateDerivationString)
                    {
                        newParse2.AppendDerivationBuffer("1");
                        newParse2.AppendDerivationBuffer(".");
                    }
                    newParse2.AddProbability(System.Math.Log(checkProbabilities[1]));
                    var  constituent = new Parse[advanceNodeIndex - lastStartIndex + 1];
                    bool isFlat      = true;
                    //first
                    constituent[0] = lastStartNode;
                    if (constituent[0].Type != constituent[0].Head.Type)
                    {
                        isFlat = false;
                    }
                    //last
                    constituent[advanceNodeIndex - lastStartIndex] = advanceNode;
                    if (isFlat && constituent[advanceNodeIndex - lastStartIndex].Type != constituent[advanceNodeIndex - lastStartIndex].Head.Type)
                    {
                        isFlat = false;
                    }
                    //middle
                    for (int constituentIndex = 1; constituentIndex < advanceNodeIndex - lastStartIndex; constituentIndex++)
                    {
                        constituent[constituentIndex] = children[constituentIndex + lastStartIndex];
                        if (isFlat && constituent[constituentIndex].Type != constituent[constituentIndex].Head.Type)
                        {
                            isFlat = false;
                        }
                    }
                    if (!isFlat)
                    {                     //flat chunks are done by chunker
                        newParse2.Insert(new Parse(inputParse.Text, new Util.Span(lastStartNode.Span.Start, advanceNode.Span.End), lastStartType, checkProbabilities[1], headRules.GetHead(constituent, lastStartType)));
                        newParsesList.Add(newParse2);
                    }
                }
                if (checkProbabilities[incompleteIndex] > qOpp)
                {                 //make sure a shift is likely
                    if (CreateDerivationString)
                    {
                        newParse1.AppendDerivationBuffer("0");
                        newParse1.AppendDerivationBuffer(".");
                    }
                    if (advanceNodeIndex != nodeCount - 1)
                    {                     //can't shift last element
                        newParse1.AddProbability(Math.Log(checkProbabilities[0]));
                        newParsesList.Add(newParse1);
                    }
                }
            }
            Parse[] newParses = newParsesList.ToArray();
            return(newParses);
        }
Exemplo n.º 4
0
		///<summary>
		///Advances the parse by assigning it POS tags and returns multiple tag sequences.
		///</summary>
		///<param name="inputParse">
		///The parse to be tagged.
		///</param>
		///<returns>
		///Parses with different pos-tag sequence assignments.
		///</returns>
		private Parse[] AdvanceTags(Parse inputParse) 
		{
			Parse[] children = inputParse.GetChildren();
		    var words = children.Select(ch => ch.ToString()).ToArray();
            var probabilities = new double[words.Length];

			Util.Sequence[] tagSequences = posTagger.TopKSequences(words);
			if (tagSequences.Length == 0) 
			{
				Console.Error.WriteLine("no tag sequence");
			}
			var newParses = new Parse[tagSequences.Length];
			for (int tagSequenceIndex = 0; tagSequenceIndex < tagSequences.Length; tagSequenceIndex++) 
			{
				string[] tags = tagSequences[tagSequenceIndex].Outcomes.ToArray();
				tagSequences[tagSequenceIndex].GetProbabilities(probabilities);
				newParses[tagSequenceIndex] = (Parse) inputParse.Clone(); //copies top level
				if (CreateDerivationString)
				{
					newParses[tagSequenceIndex].AppendDerivationBuffer(tagSequenceIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
					newParses[tagSequenceIndex].AppendDerivationBuffer(".");
				}
				for (int wordIndex = 0; wordIndex < words.Length; wordIndex++) 
				{
					Parse wordParse = children[wordIndex];
					//System.Console.Error.WriteLine("inserting tag " + tags[wordIndex]);
					double wordProbability = probabilities[wordIndex];
					newParses[tagSequenceIndex].Insert(new Parse(wordParse.Text, wordParse.Span, tags[wordIndex], wordProbability));
					newParses[tagSequenceIndex].AddProbability(Math.Log(wordProbability));
					//newParses[tagSequenceIndex].Show();
				}
			}
			return newParses;
		}
Exemplo n.º 5
0
		///<summary>
		///Returns the top chunk sequences for the specified parse.
		///</summary>
		///<param name="inputParse">
		///A pos-tag assigned parse.
		///</param>
		/// <param name="minChunkScore">
		/// the minimum probability for an allowed chunk sequence.
		/// </param>
		///<returns>
		///The top chunk assignments to the specified parse.
		///</returns>
		private Parse[] AdvanceChunks(Parse inputParse, double minChunkScore) 
		{
			// chunk
			Parse[] children = inputParse.GetChildren();
			var words = new string[children.Length];
			var parseTags = new string[words.Length];
			var probabilities = new double[words.Length];
		    for (int childParseIndex = 0, childParseCount = children.Length; childParseIndex < childParseCount; childParseIndex++) 
			{
				Parse currentChildParse = children[childParseIndex];
				words[childParseIndex] = currentChildParse.Head.ToString();
				parseTags[childParseIndex] = currentChildParse.Type;
			}
			//System.Console.Error.WriteLine("adjusted min chunk score = " + (minChunkScore - inputParse.Probability));
			Util.Sequence[] chunkerSequences = basalChunker.TopKSequences(words, parseTags, minChunkScore - inputParse.Probability);
			var newParses = new Parse[chunkerSequences.Length];
			for (int sequenceIndex = 0, sequenceCount = chunkerSequences.Length; sequenceIndex < sequenceCount; sequenceIndex++) 
			{
				newParses[sequenceIndex] = (Parse) inputParse.Clone(); //copies top level
				if (CreateDerivationString)
				{
					newParses[sequenceIndex].AppendDerivationBuffer(sequenceIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
					newParses[sequenceIndex].AppendDerivationBuffer(".");
				}
				string[] tags = chunkerSequences[sequenceIndex].Outcomes.ToArray();
				chunkerSequences[sequenceIndex].GetProbabilities(probabilities);
				int start = -1;
				int end = 0;
				string type = null;
				//System.Console.Error.Write("sequence " + sequenceIndex + " ");
				for (int tagIndex = 0; tagIndex <= tags.Length; tagIndex++) 
				{
					//if (tagIndex != tags.Length)
					//{
					//	System.Console.Error.WriteLine(words[tagIndex] + " " + parseTags[tagIndex] + " " + tags[tagIndex] + " " + probabilities[tagIndex]);
					//}
					if (tagIndex != tags.Length) 
					{
						newParses[sequenceIndex].AddProbability(Math.Log(probabilities[tagIndex]));
					}
					if (tagIndex != tags.Length && tags[tagIndex].StartsWith(ContinuePrefix)) 
					{ // if continue just update end chunking tag don't use mContinueTypeMap
						end = tagIndex;
					}
					else 
					{ //make previous constituent if it exists
						if (type != null) 
						{
							//System.Console.Error.WriteLine("inserting tag " + tags[tagIndex]);
							Parse startParse = children[start];
							Parse endParse = children[end];
							//System.Console.Error.WriteLine("Putting " + type + " at " + start + "," + end + " " + newParses[sequenceIndex].Probability);
							var consitituents = new Parse[end - start + 1];
							consitituents[0] = startParse;
							//consitituents[0].Label = "Start-" + type;
							if (end - start != 0) 
							{
								consitituents[end - start] = endParse;
								//consitituents[end - start].Label = "Cont-" + type;
								for (int constituentIndex = 1; constituentIndex < end - start; constituentIndex++) 
								{
									consitituents[constituentIndex] = children[constituentIndex + start];
									//consitituents[constituentIndex].Label = "Cont-" + type;
								}
							}
							newParses[sequenceIndex].Insert(new Parse(startParse.Text, new Util.Span(startParse.Span.Start, endParse.Span.End), type, 1, headRules.GetHead(consitituents, type)));
						}
						if (tagIndex != tags.Length) 
						{ //update for new constituent
							if (tags[tagIndex].StartsWith(StartPrefix)) 
							{ // don't use mStartTypeMap these are chunk tags
								type = tags[tagIndex].Substring(StartPrefix.Length);
								start = tagIndex;
								end = tagIndex;
							}
							else 
							{ // other 
								type = null;
							}
						}
					}
				}
				//newParses[sequenceIndex].Show();
				//System.Console.Out.WriteLine();
			}
			return newParses;
		}
Exemplo n.º 6
0
		///<summary>
		///Advances the specified parse and returns the an array advanced parses whose probability accounts for
		///more than the speicficed amount of probability mass, Q.
		///</summary>
		///<param name="inputParse">
		///The parse to advance.
		///</param>
		///<param name="qParam">
		///The amount of probability mass that should be accounted for by the advanced parses.
		///</param> 
		private Parse[] AdvanceParses(Parse inputParse, double qParam, double[] buildProbabilities, double[] checkProbabilities) 
		{
			double qOpp = 1 - qParam;
			Parse lastStartNode = null;		// The closest previous node which has been labeled as a start node.
			int lastStartIndex = -1;			// The index of the closest previous node which has been labeled as a start node. 
			string lastStartType = null;	// The type of the closest previous node which has been labeled as a start node.
			int advanceNodeIndex;			// The index of the node which will be labeled in this iteration of advancing the parse.
			Parse advanceNode = null;		// The node which will be labeled in this iteration of advancing the parse.
            
			Parse[] children = inputParse.GetChildren();
			int nodeCount = children.Length;

			//determines which node needs to be labeled and prior labels.
			for (advanceNodeIndex = 0; advanceNodeIndex < nodeCount; advanceNodeIndex++) 
			{
				advanceNode = children[advanceNodeIndex];
				if (advanceNode.Label == null) 
				{
					break;
				}
				else if (startTypeMap.ContainsKey(advanceNode.Label)) 
				{
					lastStartType = startTypeMap[advanceNode.Label];
					lastStartNode = advanceNode;
					lastStartIndex = advanceNodeIndex;
				}
			}
            var newParsesList = new List<Parse>(buildModel.OutcomeCount);
			//call build
			buildModel.Evaluate(buildContextGenerator.GetContext(children, advanceNodeIndex), buildProbabilities);
			double buildProbabilitiesSum = 0;
			while (buildProbabilitiesSum < qParam) 
			{
				//  The largest unadvanced labeling.
				int highestBuildProbabilityIndex = 0;
				for (int probabilityIndex = 1; probabilityIndex < buildProbabilities.Length; probabilityIndex++) 
				{ //for each build outcome
					if (buildProbabilities[probabilityIndex] > buildProbabilities[highestBuildProbabilityIndex]) 
					{
						highestBuildProbabilityIndex = probabilityIndex;
					}
				}
				if (buildProbabilities[highestBuildProbabilityIndex] == 0) 
				{
					break;
				}

				double highestBuildProbability = buildProbabilities[highestBuildProbabilityIndex];		

				buildProbabilities[highestBuildProbabilityIndex] = 0; //zero out so new max can be found
				buildProbabilitiesSum += highestBuildProbability;

				string tag = buildModel.GetOutcomeName(highestBuildProbabilityIndex);
				//System.Console.Out.WriteLine("trying " + tag + " " + buildProbabilitiesSum + " lst=" + lst);
				if (highestBuildProbabilityIndex == topStartIndex) 
				{ // can't have top until complete
					continue;
				}
				//System.Console.Error.WriteLine(probabilityIndex + " " + tag + " " + highestBuildProbability);
				if (startTypeMap.ContainsKey(tag)) 
				{ //update last start
					lastStartIndex = advanceNodeIndex;
					lastStartNode = advanceNode;
					lastStartType = startTypeMap[tag];
				}
				else if (continueTypeMap.ContainsKey(tag)) 
				{
					if (lastStartNode == null || lastStartType != continueTypeMap[tag]) 
					{
						continue; //Cont must match previous start or continue
					}
				}
				var newParse1 = (Parse) inputParse.Clone(); //clone parse
				if (CreateDerivationString)
				{
					newParse1.AppendDerivationBuffer(highestBuildProbabilityIndex.ToString(System.Globalization.CultureInfo.InvariantCulture));
					newParse1.AppendDerivationBuffer("-");
				}
				newParse1.SetChild(advanceNodeIndex, tag); //replace constituent labeled

				newParse1.AddProbability(Math.Log(highestBuildProbability));
				//check
				checkModel.Evaluate(checkContextGenerator.GetContext(newParse1.GetChildren(), lastStartType, lastStartIndex, advanceNodeIndex), checkProbabilities);
				//System.Console.Out.WriteLine("check " + mCheckProbabilities[mCompleteIndex] + " " + mCheckProbabilities[mIncompleteIndex]);
				Parse newParse2 = newParse1;
				if (checkProbabilities[completeIndex] > qOpp) 
				{ //make sure a reduce is likely
					newParse2 = (Parse) newParse1.Clone();
					if (CreateDerivationString)
					{
						newParse2.AppendDerivationBuffer("1");
						newParse2.AppendDerivationBuffer(".");
					}
					newParse2.AddProbability(System.Math.Log(checkProbabilities[1]));
					var constituent = new Parse[advanceNodeIndex - lastStartIndex + 1];
					bool isFlat = true;
					//first
					constituent[0] = lastStartNode;
					if (constituent[0].Type != constituent[0].Head.Type)
					{
						isFlat = false;
					}
					//last
					constituent[advanceNodeIndex - lastStartIndex] = advanceNode;
					if (isFlat && constituent[advanceNodeIndex - lastStartIndex].Type != constituent[advanceNodeIndex - lastStartIndex].Head.Type) 
					{
						isFlat = false;
					}
					//middle
					for (int constituentIndex = 1; constituentIndex < advanceNodeIndex - lastStartIndex; constituentIndex++) 
					{
						constituent[constituentIndex] = children[constituentIndex + lastStartIndex];
						if (isFlat && constituent[constituentIndex].Type != constituent[constituentIndex].Head.Type) 
						{
							isFlat = false;
						}
					}
					if (!isFlat) 
					{ //flat chunks are done by chunker
						newParse2.Insert(new Parse(inputParse.Text, new Util.Span(lastStartNode.Span.Start, advanceNode.Span.End), lastStartType, checkProbabilities[1], headRules.GetHead(constituent, lastStartType)));
						newParsesList.Add(newParse2);
					}
				}
				if (checkProbabilities[incompleteIndex] > qOpp) 
				{ //make sure a shift is likely
					if (CreateDerivationString)
					{
						newParse1.AppendDerivationBuffer("0");
						newParse1.AppendDerivationBuffer(".");
					}
					if (advanceNodeIndex != nodeCount - 1) 
					{ //can't shift last element
						newParse1.AddProbability(Math.Log(checkProbabilities[0]));
						newParsesList.Add(newParse1);
					}
				}
			}
			Parse[] newParses = newParsesList.ToArray();
			return newParses;
		}