Skip to content

Commit

Permalink
Pull request #8: eda 모듈 변경으로 인한 mlps 수정
Browse files Browse the repository at this point in the history
Merge in SLAISM/autoape-mlps from feature/SLCAI-221-autoape-eda to develop

* commit 'a93a7815e124103f6b781d70e636b01c40c12ff3':
  eda 모듈 변경으로 인한 mlps 수정
  • Loading branch information
백만기 과장 committed Sep 5, 2023
2 parents d5d2eba + a93a781 commit 2d281dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlps/core/data/dataloader/DataLoaderAbstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_output_units(self, fields: List[FieldInfo]):
self.LOGGER.info(field_info.stat_dict)
if field_info.is_label:
try:
return len(field_info.stat_dict.get("unique", {}))
return field_info.stat_dict.get("unique").get("unique_count")
except Exception as e:
self.LOGGER.error(e, exc_info=True)
return 1
Expand Down

0 comments on commit 2d281dc

Please sign in to comment.