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

com.mayabot.nlp.segment.lexer.perceptron.PerceptronSegmentPatch.kt Maven / Gradle / Ivy

package com.mayabot.nlp.segment.lexer.perceptron

import com.mayabot.nlp.MynlpEnv
import com.mayabot.nlp.common.injector.Singleton

@Singleton
class PerceptronSegmentPatch

constructor(val mynlpEnv: MynlpEnv) {

    val examples = ArrayList()

    init {
        examples += loadExample("patch/cws-default.txt")
        examples += loadExample("patch/cws.txt")
    }

    fun addExample(line: String) {
        examples += line
    }

    fun removeExample(line: String) {
        examples.remove(line)
    }

    fun addResources(rsName: String) {
        examples += loadExample(rsName)
    }

    private fun loadExample(rsName: String): List {
        val resource = mynlpEnv.tryLoadResource(rsName, Charsets.UTF_8)
        if (resource != null) {
            return resource.inputStream().bufferedReader().readLines()
                    .map { it.trim() }.filter {
                        it.isNotBlank() && !it.startsWith("#")
                    }
        }
        return listOf()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy