Documer\Documer::train PHP Method

train() public method

This is our training method, that parses the text and push the keywords to DB
public train ( $label, $text )
$label
$text
    public function train($label, $text)
    {
        $keywords = $this->parse($text);
        $this->getStorage()->insertLabel($label);
        foreach ($keywords as $k) {
            $this->getStorage()->insertWord($k, $label);
        }
    }