Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.boosting
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
Model registry
Operate
Environments
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.boosting
Commits
e9a3abad
Commit
e9a3abad
authored
9 years ago
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
Removed the imports with from .[module] import name
parent
03f09636
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/learn/boosting/__init__.py
+13
-13
13 additions, 13 deletions
bob/learn/boosting/__init__.py
with
13 additions
and
13 deletions
bob/learn/boosting/__init__.py
+
13
−
13
View file @
e9a3abad
...
...
@@ -6,27 +6,27 @@ import bob.extension
bob
.
extension
.
load_bob_library
(
'
bob.learn.boosting
'
,
__file__
)
# versioning
from
.
import
version
from
.version
import
module
as
__version__
from
.version
import
api
as
__api_version__
from
bob.learn.boosting
import
version
from
bob.learn.boosting
.version
import
module
as
__version__
from
bob.learn.boosting
.version
import
api
as
__api_version__
# include loss functions
from
.
import
LossFunction
# Just to get the documentation for it
from
.ExponentialLoss
import
ExponentialLoss
from
.LogitLoss
import
LogitLoss
from
.TangentialLoss
import
TangentialLoss
from
._library
import
JesorskyLoss
from
bob.learn.boosting
import
LossFunction
# Just to get the documentation for it
from
bob.learn.boosting
.ExponentialLoss
import
ExponentialLoss
from
bob.learn.boosting
.LogitLoss
import
LogitLoss
from
bob.learn.boosting
.TangentialLoss
import
TangentialLoss
from
bob.learn.boosting
._library
import
JesorskyLoss
# include trainers
from
.StumpTrainer
import
StumpTrainer
from
.Boosting
import
Boosting
from
._library
import
LUTTrainer
from
bob.learn.boosting
.StumpTrainer
import
StumpTrainer
from
bob.learn.boosting
.Boosting
import
Boosting
from
bob.learn.boosting
._library
import
LUTTrainer
# include machines
from
._library
import
WeakMachine
,
StumpMachine
,
LUTMachine
,
BoostedMachine
from
bob.learn.boosting
._library
import
WeakMachine
,
StumpMachine
,
LUTMachine
,
BoostedMachine
# include auxiliary functions
from
._library
import
weighted_histogram
from
bob.learn.boosting
._library
import
weighted_histogram
def
get_config
():
"""
Returns a string containing the configuration information.
...
...
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