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
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
8
13
9
14
### Added
10
15
- Add categorization f1 score to metrics
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def value(self):
40
40
# TODO: Change task.py interface such that we can return label matching
41
41
# NOTE: Returning 1 if all taxonomy labels match else 0
42
42
value = f1_score (
43
- annotation_labels , prediction_labels , average = self . f1_method
43
+ list ( annotation_labels ), list ( prediction_labels ) , average = "macro"
44
44
)
45
45
return value
46
46
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ exclude = '''
21
21
22
22
[tool .poetry ]
23
23
name = " scale-nucleus"
24
- version = " 0.6.3 "
24
+ version = " 0.6.4 "
25
25
description = " The official Python client library for Nucleus, the Data Platform for AI"
26
26
license = " MIT"
27
27
authors = [" Scale AI Nucleus Team <nucleusapi@scaleapi.com>" ]
You can’t perform that action at this time.
0 commit comments