File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ All notable changes to the [Nucleus Python Client](https://github.com/scaleapi/n
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## [ 0.6.3] ( https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.6.3 ) - 2021-02-08
7+ ## [ 0.6.4] ( https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.6.4 ) - 2021-02-16
8+
9+ ### Fixes
10+ - Categorization metrics are patched to run properly on Validate evaluation service
11+
12+ ## [ 0.6.3] ( https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.6.3 ) - 2021-02-15
813
914### Added
1015- Add categorization f1 score to metrics
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def value(self):
4040 # TODO: Change task.py interface such that we can return label matching
4141 # NOTE: Returning 1 if all taxonomy labels match else 0
4242 value = f1_score (
43- annotation_labels , prediction_labels , average = self . f1_method
43+ list ( annotation_labels ), list ( prediction_labels ) , average = "macro"
4444 )
4545 return value
4646
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ exclude = '''
2121
2222[tool .poetry ]
2323name = " scale-nucleus"
24- version = " 0.6.3 "
24+ version = " 0.6.4 "
2525description = " The official Python client library for Nucleus, the Data Platform for AI"
2626license = " MIT"
2727authors = [" Scale AI Nucleus Team <nucleusapi@scaleapi.com>" ]
You can’t perform that action at this time.
0 commit comments