Browse Source

[FIX] Fix the bug in the __init__

tags/v0.3.2
tanp 3 years ago
parent
commit
13feff8923
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      learnware/market/heterogeneous_feature.py

+ 1
- 1
learnware/market/heterogeneous_feature.py View File

@@ -15,7 +15,7 @@ class HeterogeneousFeatureMarket(EvolvedMarket):
"""

def __init__(self):
super(EvolvedMarket, self).__init__()
super(HeterogeneousFeatureMarket, self).__init__()

def learn_mapping_functions(self, learnware_list: List[Learnware]):
"""Use all statistical specifications of submitted learnwares to generate mapping functions from each original feature space to subsapce and vice verse.


Loading…
Cancel
Save