Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.em
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.learn.em
Commits
881832ba
Commit
881832ba
authored
2 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
remove unnecessary tags
parent
aa7c4c78
No related branches found
No related tags found
1 merge request
!59
remove unnecessary tags
Pipeline
#61053
passed
2 years ago
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
bob/learn/em/factor_analysis.py
+1
-0
1 addition, 0 deletions
bob/learn/em/factor_analysis.py
bob/learn/em/wccn.py
+0
-3
0 additions, 3 deletions
bob/learn/em/wccn.py
bob/learn/em/whitening.py
+0
-3
0 additions, 3 deletions
bob/learn/em/whitening.py
with
2 additions
and
6 deletions
.gitignore
+
1
−
0
View file @
881832ba
...
...
@@ -19,3 +19,4 @@ build
*.egg
src/
record.txt
dask-worker-space
This diff is collapsed.
Click to expand it.
bob/learn/em/factor_analysis.py
+
1
−
0
View file @
881832ba
...
...
@@ -7,6 +7,7 @@ import logging
import
operator
import
dask
import
dask.bag
import
numpy
as
np
from
dask.delayed
import
Delayed
...
...
This diff is collapsed.
Click to expand it.
bob/learn/em/wccn.py
+
0
−
3
View file @
881832ba
...
...
@@ -90,6 +90,3 @@ class WCCN(TransformerMixin, BaseEstimator):
def
transform
(
self
,
X
):
return
((
X
-
self
.
input_subtract
)
/
self
.
input_divide
)
@
self
.
weights
def
_more_tags
(
self
):
return
{
"
stateless
"
:
False
,
"
requires_fit
"
:
True
}
This diff is collapsed.
Click to expand it.
bob/learn/em/whitening.py
+
0
−
3
View file @
881832ba
...
...
@@ -75,6 +75,3 @@ class Whitening(TransformerMixin, BaseEstimator):
def
transform
(
self
,
X
):
return
((
X
-
self
.
input_subtract
)
/
self
.
input_divide
)
@
self
.
weights
def
_more_tags
(
self
):
return
{
"
stateless
"
:
False
,
"
requires_fit
"
:
True
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment