Skip to content

Commit 96c70d2

Browse files
committed
fix linear model import after restructuring
1 parent 8a16373 commit 96c70d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy_ml/ngram/ngram.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
import numpy as np
77

8-
from ..linear_models.lm import LinearRegression
9-
from ..preprocessing.nlp import tokenize_words, ngrams, strip_punctuation
8+
from numpy_ml.linear_models import LinearRegression
9+
from numpy_ml.preprocessing.nlp import tokenize_words, ngrams, strip_punctuation
1010

1111

1212
class NGramBase(ABC):

0 commit comments

Comments
 (0)