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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.learn.em
Merge requests
!36
WIP: Add a bob em train script which works on SGE
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
WIP: Add a bob em train script which works on SGE
bob_em_train
into
master
Overview
7
Commits
4
Pipelines
5
Changes
4
1 open thread
Hide all comments
Closed
WIP: Add a bob em train script which works on SGE
Amir MOHAMMADI
requested to merge
bob_em_train
into
master
Jun 6, 2019
Overview
7
Commits
4
Pipelines
5
Changes
4
1 open thread
Hide all comments
0
0
Merge request reports
Compare
master
version 4
6e804b8a
Aug 23, 2019
version 3
093c7c62
Aug 23, 2019
version 2
c898cbf3
Jul 22, 2019
version 1
ceb6c982
Jun 6, 2019
master (base)
and
latest version
latest version
684b3092
4 commits,
Feb 7, 2020
version 4
6e804b8a
3 commits,
Aug 23, 2019
version 3
093c7c62
3 commits,
Aug 23, 2019
version 2
c898cbf3
2 commits,
Jul 22, 2019
version 1
ceb6c982
1 commit,
Jun 6, 2019
4 files
+
480
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
bob/learn/em/script/em.py
0 → 100644
+
13
−
0
View file @ 684b3092
Edit in single-file editor
Open in Web IDE
"""
The main entry for bob.em (click-based) scripts.
"""
import
click
import
pkg_resources
from
click_plugins
import
with_plugins
from
bob.extension.scripts.click_helper
import
AliasedGroup
@with_plugins
(
pkg_resources
.
iter_entry_points
(
"
bob.em.cli
"
))
@click.group
(
cls
=
AliasedGroup
)
def
em
():
"""
Expected Maximization scripts.
"""
pass
Loading