nlpodyssey/gotokenizers

View on GitHub
models/bpemodel/word.go

Summary

Maintainability
A
3 hrs
Test Coverage

Method Word.MergeAll has a Cognitive Complexity of 32 (exceeds 20 allowed). Consider refactoring.
Open

func (w *Word) MergeAll(merges *MergeMap, dropout float64) {
    symbolsLen := w.Len()
    queue := make(WordMergeHeap, 0, symbolsLen)
    skip := make([]WordMerge, 0, symbolsLen)

Severity: Minor
Found in models/bpemodel/word.go - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method Word.MergeAll has 54 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (w *Word) MergeAll(merges *MergeMap, dropout float64) {
    symbolsLen := w.Len()
    queue := make(WordMergeHeap, 0, symbolsLen)
    skip := make([]WordMerge, 0, symbolsLen)

Severity: Minor
Found in models/bpemodel/word.go - About 1 hr to fix

    exported method WordSymbol.HasPrev should have comment or be unexported
    Open

    func (s *WordSymbol) HasPrev() bool {
    Severity: Minor
    Found in models/bpemodel/word.go by golint

    exported method Word.MergeAll should have comment or be unexported
    Open

    func (w *Word) MergeAll(merges *MergeMap, dropout float64) {
    Severity: Minor
    Found in models/bpemodel/word.go by golint

    exported method WordSymbol.HasNext should have comment or be unexported
    Open

    func (s *WordSymbol) HasNext() bool {
    Severity: Minor
    Found in models/bpemodel/word.go by golint

    exported method Word.Len should have comment or be unexported
    Open

    func (w *Word) Len() int {
    Severity: Minor
    Found in models/bpemodel/word.go by golint

    There are no issues that match your filters.

    Category
    Status