Skip to content

Commit efd7be3

Browse files
committed
fix bugs
1 parent f744089 commit efd7be3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MLJTextAnalysisInterface # substitute for correct interface pkg name
1+
using MLJText # substitute for correct interface pkg name
22
using Test
33
using MLJBase
44
import Distributions
@@ -10,7 +10,7 @@ rng = StableRNGs.StableRNG(123)
1010
p = 3
1111
nclasses = 5
1212
X, y = make_blobs(n, p, centers=nclasses, rng=rng);
13-
model = MLJTextAnalysisInterface.CoolProbabilisticClassifier()
13+
model = MLJText.CoolProbabilisticClassifier()
1414
mach = machine(model, X, y)
1515
fit!(mach, rows=1:2, verbosity=0)
1616
yhat = predict(mach, rows=3)

0 commit comments

Comments
 (0)