Skip to content

Commit

Permalink
Merge pull request #10 from GopherML/prepare-for-v0.4.0
Browse files Browse the repository at this point in the history
Prepare for v0.4.0
  • Loading branch information
itsmontoya authored Jul 16, 2024
2 parents 796895a + 03c6ffa commit 2c15fb3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bag [![GoDoc](https://godoc.org/github.com/itsmontoya/bag?status.svg)](https://godoc.org/github.com/itsmontoya/bag) ![Status](https://img.shields.io/badge/status-beta-yellow.svg) [![Go Report Card](https://goreportcard.com/badge/github.com/itsmontoya/bag)](https://goreportcard.com/report/github.com/itsmontoya/bag) ![Go Test Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)
# Bag [![GoDoc](https://godoc.org/github.com/GopherML/bag?status.svg)](https://godoc.org/github.com/GopherML/bag) ![Status](https://img.shields.io/badge/status-beta-yellow.svg) [![Go Report Card](https://goreportcard.com/badge/github.com/GopherML/bag)](https://goreportcard.com/report/github.com/GopherML/bag) ![Go Test Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)
Bag is a `bag of words` (`BoW`) implementation written in Go, utilizing a Naive Bayes classifier. Currently, it functions as a library that can be integrated into Go code. The goal is to offer a file format that provides bag of words functionality as code. In the future, it will be usable as a command line tool, allowing it to be called from any programming language.

## What is Bag of Words (BoW)?
Expand Down
2 changes: 1 addition & 1 deletion bag-cli/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/itsmontoya/bag"
"github.com/GopherML/bag"
)

type app struct {
Expand Down
2 changes: 1 addition & 1 deletion bag-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"os"

"github.com/GopherML/bag"
"github.com/go-yaml/yaml"
"github.com/itsmontoya/bag"
)

func main() {
Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
module github.com/itsmontoya/bag
module github.com/GopherML/bag

go 1.22.4

require github.com/go-yaml/yaml v2.1.0+incompatible

require (
github.com/go-yaml/yaml v2.1.0+incompatible
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

0 comments on commit 2c15fb3

Please sign in to comment.