Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 8.2% on proxy.golang.org

proxy.golang.org : github.com/killer-djon/golinear

Package golinear trains and applies linear classifiers. The package is a binding against liblinear with a Go-ish interface. Trained models can be saved to and loaded from disk, to avoid the (potentially) costly training process. A model is trained using a problem. A problem consists of training instances, where each training instance has a class label and a feature vector. The training procedure attempts to find one or more functions that separate the instances of two classes. This model can then predict the class of unseen instances. Consider for instance that we would like to do sentiment analysis, using the following, humble, training corpus: To represent this as a problem, we have to convert the classses (positive/negative) to an integral class labels and extract features. In this case, we can simply label the classes as positive: 0, negative: 1. We will use the words as our features (a: 1, beautiful: 2, album: 3, crappy: 4, ugly: 5) and use booleans as our feature values. In other words, the sentences will have the following feature vectors: We can now construct the problem using this representation: The problem is used to train a linear classifier using a set of parameters to choose the type of solver, constraint violation cost, etc. We will use the default parameters, which train a L2-regularized L2-loss support vector classifier. Of course, now we would like to use this model to classify other sentences. For instance: We map this sentence to the feature vector that we used during training, simply ignoring words that we did not encounter while training the model: The Predict method of the model is used to predict the label of this feature vector. As expected, the model will predict the sentence to be positive (0).

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/killer-djon/golinear
Keywords: classification-algorithm, go, golinear, linear-models, svc
License: BSD-3-Clause
Latest release: almost 6 years ago
First release: almost 6 years ago
Namespace: github.com/killer-djon
Stars: 0 on GitHub
Forks: 0 on GitHub
See more repository details: repos.ecosyste.ms
Last synced: 29 days ago

    Loading...
    Readme
    Loading...