Ejemplo n.º 1
0
  private void prepareAndClassifyWords(ConvPhrase pCp) {
    int wordPos = 0;

    // First create all the processed word instances
    for (ConvWord thisWord : pCp.getAllWords()) {
      ProcessedWord newPw = ProcessedWord.createFrom(thisWord, wordPos++);
      this.allWords.add(newPw);
    }

    // Then classify the processed words
    for (ProcessedWord thisWord : this.allWords) {
      thisWord.classify(this.ac, getConvConfig());
    }
  }
Ejemplo n.º 2
0
  protected void interpretQuestion() {
    this.phrase = ConvPhrase.createNewPhrase(this.ac, getQuestionText());

    prepareAndClassifyWords(this.phrase);
  }