Skip to content

Commit

Permalink
fix linear model import after restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
ddbourgin committed Dec 23, 2021
1 parent 8a16373 commit 96c70d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy_ml/ngram/ngram.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

import numpy as np

from ..linear_models.lm import LinearRegression
from ..preprocessing.nlp import tokenize_words, ngrams, strip_punctuation
from numpy_ml.linear_models import LinearRegression
from numpy_ml.preprocessing.nlp import tokenize_words, ngrams, strip_punctuation


class NGramBase(ABC):
Expand Down

0 comments on commit 96c70d2

Please sign in to comment.