Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dev
scikit-multimodallearn
Commits
b3148fd8
Commit
b3148fd8
authored
Mar 04, 2021
by
Baptiste Bauvin
Browse files
Merge branch 'master' of
https://gitlab.lis-lab.fr/dev/scikit-multimodallearn
parents
750b6a8c
b09e2d1d
Pipeline
#6496
passed with stages
in 7 minutes and 4 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
b3148fd8
...
...
@@ -40,6 +40,7 @@ pages:
script
:
-
export LC_ALL=$(locale -a | grep en_US)
-
export LANG=$(locale -a | grep en_US)
-
python3 setup.py install
-
python3 setup.py build_sphinx
-
cp -r build/sphinx/html public
artifacts
:
...
...
multimodal/boosting/combo.py
View file @
b3148fd8
...
...
@@ -450,6 +450,7 @@ class MuComboClassifier(BaseEnsemble, ClassifierMixin, UBoosting):
self
.
n_classes_
=
len
(
self
.
classes_
)
self
.
n_views_
=
n_views
self
.
n_features_
=
self
.
X_
.
shape
[
1
]
self
.
n_features_in_
=
self
.
n_features_
if
self
.
n_classes_
==
1
:
# This case would lead to division by 0 when computing the cost
# matrix so it needs special handling (but it is an obvious case as
...
...
multimodal/boosting/mumbo.py
View file @
b3148fd8
...
...
@@ -377,6 +377,7 @@ class MumboClassifier(BaseEnsemble, ClassifierMixin, UBoosting):
self
.
classes_
,
y
=
np
.
unique
(
y
,
return_inverse
=
True
)
self
.
n_classes_
=
len
(
self
.
classes_
)
self
.
n_features_
=
self
.
X_
.
shape
[
1
]
self
.
n_features_in_
=
self
.
n_features_
if
self
.
n_classes_
==
1
:
# This case would lead to division by 0 when computing the cost
# matrix so it needs special handling (but it is an obvious case as
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment