Skip to content

Commit 7ab5629

Browse files
authored
Update cuml (#48)
* chore: Update Dockerfile and add dependencies in /testdata * chore: Update Dockerfile to remove unused dependencies * fix go bindings
1 parent c3f9d68 commit 7ab5629

14 files changed

+14
-32
lines changed

.vscode/launch.json

-15
This file was deleted.

.vscode/settings.json

-3
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,7 @@
121121
"[python]": {
122122
"editor.defaultFormatter": "ms-python.black-formatter"
123123
},
124-
"python.formatting.provider": "none",
125124
"rust-analyzer.linkedProjects": [
126-
"./rust/Cargo.toml",
127-
"./rust/Cargo.toml",
128125
"./rust/Cargo.toml"
129126
],
130127
"C_Cpp.errorSquiggles": "disabled"

go/agglomerative_clustering.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go
33
import (
44
"errors"
55

6-
"github.com/getumen/cuml/go/rawcuml4go"
6+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
77
)
88

99
var (

go/agglomerative_clustering_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go_test
33
import (
44
"testing"
55

6-
cuml4go "github.com/getumen/cuml/go"
6+
cuml4go "github.com/getumen/cuml-bindings/go"
77
"github.com/stretchr/testify/require"
88
)
99

go/dbscan.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go
33
import (
44
"errors"
55

6-
"github.com/getumen/cuml/go/rawcuml4go"
6+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
77
)
88

99
var (

go/dbscan_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go_test
33
import (
44
"testing"
55

6-
cuml4go "github.com/getumen/cuml/go"
6+
cuml4go "github.com/getumen/cuml-bindings/go"
77
"github.com/stretchr/testify/require"
88
)
99

go/fil.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go
33
import (
44
"errors"
55

6-
"github.com/getumen/cuml/go/rawcuml4go"
6+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
77
"go.uber.org/multierr"
88
)
99

go/fil_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/stretchr/testify/require"
77

8-
cuml4go "github.com/getumen/cuml/go"
8+
cuml4go "github.com/getumen/cuml-bindings/go"
99
)
1010

1111
func TestFIL(t *testing.T) {

go/kmeans.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go
33
import (
44
"errors"
55

6-
"github.com/getumen/cuml/go/rawcuml4go"
6+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
77
)
88

99
var (

go/kmeans_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/stretchr/testify/require"
77

8-
cuml4go "github.com/getumen/cuml/go"
8+
cuml4go "github.com/getumen/cuml-bindings/go"
99
)
1010

1111
func TestKmeans(t *testing.T) {

go/linear_regression.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cuml4go
22

33
import (
4-
"github.com/getumen/cuml/go/rawcuml4go"
4+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
55
)
66

77
type GlmSolverAlgo int

go/linear_regression_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cuml4go_test
33
import (
44
"testing"
55

6-
cuml4go "github.com/getumen/cuml/go"
6+
cuml4go "github.com/getumen/cuml-bindings/go"
77
"github.com/stretchr/testify/require"
88
)
99

go/rawcuml4go/fil_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package rawcuml4go_test
33
import (
44
"testing"
55

6-
cuml4go "github.com/getumen/cuml/go"
7-
"github.com/getumen/cuml/go/rawcuml4go"
6+
cuml4go "github.com/getumen/cuml-bindings/go"
7+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
88
"github.com/stretchr/testify/require"
99
)
1010

go/rawcuml4go/linear_regression_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package rawcuml4go_test
33
import (
44
"testing"
55

6-
cuml4go "github.com/getumen/cuml/go"
7-
"github.com/getumen/cuml/go/rawcuml4go"
6+
cuml4go "github.com/getumen/cuml-bindings/go"
7+
"github.com/getumen/cuml-bindings/go/rawcuml4go"
88
"github.com/stretchr/testify/require"
99
)
1010

0 commit comments

Comments
 (0)