From 03c6ffa5d5913e368015297df68d9f3f18bb6dc8 Mon Sep 17 00:00:00 2001 From: Josh Montoya Date: Tue, 16 Jul 2024 14:03:00 -0700 Subject: [PATCH] update org naming from itsmontoya to GopherML --- README.md | 2 +- bag-cli/app.go | 2 +- bag-cli/main.go | 2 +- go.mod | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f4f91ec..6065dd6 100644 --- a/README.md +++ b/README.md @@ -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)? diff --git a/bag-cli/app.go b/bag-cli/app.go index 0a8206a..cb6a26b 100644 --- a/bag-cli/app.go +++ b/bag-cli/app.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/itsmontoya/bag" + "github.com/GopherML/bag" ) type app struct { diff --git a/bag-cli/main.go b/bag-cli/main.go index 9c2f6cc..36ca299 100644 --- a/bag-cli/main.go +++ b/bag-cli/main.go @@ -5,8 +5,8 @@ import ( "log" "os" + "github.com/GopherML/bag" "github.com/go-yaml/yaml" - "github.com/itsmontoya/bag" ) func main() { diff --git a/go.mod b/go.mod index 92fc24d..c6f96e2 100644 --- a/go.mod +++ b/go.mod @@ -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 )