Skip to content
Snippets Groups Projects

Fix the initialization of GMMMachine

Merged Yannick DAYER requested to merge fix-init into master
2 unresolved threads

Added super().__init__(), allowing inheriting classes to call super().init() on multiple parents.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
505 506 self.weights = weights
506 507 self.map_alpha = map_alpha
507 508 self.map_relevance_factor = map_relevance_factor
509 super().__init__(**kwargs)
  • Yannick DAYER added 1 commit

    added 1 commit

    • aeee7f1e - Change the placement of super().__init__()

    Compare with previous version

  • 183 183 Second order statistic
    184 184 """
    185 185
    186 186 def __init__(self, n_gaussians: int, n_features: int) -> None:
  • Yannick DAYER added 1 commit

    added 1 commit

    • e15df5dd - Add super().__init__() to classes

    Compare with previous version

  • Amir MOHAMMADI enabled an automatic merge when the pipeline for e15df5dd succeeds

    enabled an automatic merge when the pipeline for e15df5dd succeeds

  • Amir MOHAMMADI mentioned in commit f8a7d3dc

    mentioned in commit f8a7d3dc

  • Please register or sign in to reply
    Loading