All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.factorie.app.nlp.lexicon.iesl.IeslLexicon.scala Maven / Gradle / Ivy

Go to download

FACTORIE is a toolkit for deployable probabilistic modeling, implemented as a software library in Scala. It provides its users with a succinct language for creating relational factor graphs, estimating parameters and performing inference.

The newest version!
/* Copyright (C) 2008-2016 University of Massachusetts Amherst.
   This file is part of "FACTORIE" (Factor graphs, Imperative, Extensible)
   http://factorie.cs.umass.edu, http://github.com/factorie
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License. */
package cc.factorie.app.nlp.lexicon.iesl

import cc.factorie.app.nlp.lexicon.{TriePhraseLexicon, ProvidedTriePhraseLexicon}
import cc.factorie.util.ModelProvider

import scala.io.Source

/**
 * @author johnsullivan
 */
class Continents()(implicit mp: ModelProvider[Continents]) extends ProvidedTriePhraseLexicon[Continents]
class Country()(implicit mp: ModelProvider[Country]) extends ProvidedTriePhraseLexicon[Country]
class City()(implicit mp: ModelProvider[City]) extends ProvidedTriePhraseLexicon[City]
class UsState()(implicit mp: ModelProvider[UsState]) extends ProvidedTriePhraseLexicon[UsState]
class PlaceSuffix()(implicit mp: ModelProvider[PlaceSuffix]) extends ProvidedTriePhraseLexicon[PlaceSuffix]
class JobTitle()(implicit mp: ModelProvider[JobTitle]) extends ProvidedTriePhraseLexicon[JobTitle]
class Money()(implicit mp: ModelProvider[Money]) extends ProvidedTriePhraseLexicon[Money]
class Company()(implicit mp: ModelProvider[Company]) extends ProvidedTriePhraseLexicon[Company]
class OrgSuffix()(implicit mp: ModelProvider[OrgSuffix]) extends ProvidedTriePhraseLexicon[OrgSuffix]
class Month()(implicit mp: ModelProvider[Month]) extends ProvidedTriePhraseLexicon[Month]
class Day()(implicit mp: ModelProvider[Day]) extends ProvidedTriePhraseLexicon[Day]
class PersonHonorific()(implicit mp: ModelProvider[PersonHonorific]) extends ProvidedTriePhraseLexicon[PersonHonorific]
class PersonFirstHighest()(implicit mp: ModelProvider[PersonFirstHighest]) extends ProvidedTriePhraseLexicon[PersonFirstHighest]
class PersonFirstHigh()(implicit mp: ModelProvider[PersonFirstHigh]) extends ProvidedTriePhraseLexicon[PersonFirstHigh]
class PersonFirstMedium()(implicit mp: ModelProvider[PersonFirstMedium]) extends ProvidedTriePhraseLexicon[PersonFirstMedium]
class PersonLastHighest()(implicit mp: ModelProvider[PersonLastHighest]) extends ProvidedTriePhraseLexicon[PersonLastHighest]
class PersonLastHigh()(implicit mp: ModelProvider[PersonLastHigh]) extends ProvidedTriePhraseLexicon[PersonLastHigh]
class PersonLastMedium()(implicit mp: ModelProvider[PersonLastMedium]) extends ProvidedTriePhraseLexicon[PersonLastMedium]
class Say()(implicit mp: ModelProvider[Say]) extends ProvidedTriePhraseLexicon[Say]
class Demonym()(implicit mp: ModelProvider[Demonym]) extends TriePhraseLexicon(classOf[Demonym].getName) {
  synchronized {
    Source.fromInputStream(mp.provide)(io.Codec.UTF8).getLines().flatMap(_.trim.split("\t")).foreach(this.+=)
  }
}

class DemonymMap()(implicit mp:ModelProvider[Demonym]) extends scala.collection.mutable.HashMap[String,String] {
  synchronized {
    Source.fromInputStream(mp.provide)(io.Codec.UTF8).getLines().foreach { line =>
      val entries = line.trim.split("\t")
      val value = entries.head
      entries.foreach(e => this.update(e, value))
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy