From 70636a3002d58c7dfc87809600958e1e78b58fba Mon Sep 17 00:00:00 2001 From: danstowell Date: Fri, 8 Apr 2022 08:17:56 +0100 Subject: [PATCH 1/5] Clarify that classificationConfidence is usually omitted for human classifications See #170 --- observations-table-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observations-table-schema.json b/observations-table-schema.json index a93630c..8cf3cc4 100644 --- a/observations-table-schema.json +++ b/observations-table-schema.json @@ -231,7 +231,7 @@ "name": "classificationConfidence", "type": "number", "format": "default", - "description": "Accuracy confidence of the classification. Expressed as a probability, with `1` being maximum confidence. Provide an approximate value for human classifications.", + "description": "Accuracy confidence of the classification. Expressed as a probability, with `1` being maximum confidence. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", "example": "0.95", "constraints": { "required": false, From 17bfd23c8eab5b1529b5b776b72b7307c82cf0f5 Mon Sep 17 00:00:00 2001 From: Dan Stowell Date: Mon, 10 Oct 2022 13:18:39 +0200 Subject: [PATCH 2/5] Rename classificationConfidence to classifierProbability (Closes #217) --- observations-table-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/observations-table-schema.json b/observations-table-schema.json index 8cf3cc4..bda986d 100644 --- a/observations-table-schema.json +++ b/observations-table-schema.json @@ -228,10 +228,10 @@ } }, { - "name": "classificationConfidence", + "name": "classifierProbability", "type": "number", "format": "default", - "description": "Accuracy confidence of the classification. Expressed as a probability, with `1` being maximum confidence. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", + "description": "Certainty of the classification. Expressed as a probability, with `1` being maximum confidence. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", "example": "0.95", "constraints": { "required": false, From 252428e54320eeea1d2f17420d831fc4f642ff94 Mon Sep 17 00:00:00 2001 From: danstowell Date: Fri, 14 Oct 2022 15:09:31 +0100 Subject: [PATCH 3/5] classifierProbability -> classificationProbability --- observations-table-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observations-table-schema.json b/observations-table-schema.json index 6a63cf5..c0eb9f4 100644 --- a/observations-table-schema.json +++ b/observations-table-schema.json @@ -222,7 +222,7 @@ } }, { - "name": "classifierProbability", + "name": "classificationProbability", "type": "number", "format": "default", "description": "Certainty of the classification. Expressed as a probability, with `1` being maximum confidence. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", From 5bd9b22771ff45eb858a92b0130ca2b19549739f Mon Sep 17 00:00:00 2001 From: peterdesmet Date: Mon, 17 Oct 2022 13:23:55 +0200 Subject: [PATCH 4/5] Rename term in example --- example/observations.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/observations.csv b/example/observations.csv index 6cbc38d..5ac0a20 100644 --- a/example/observations.csv +++ b/example/observations.csv @@ -1,4 +1,4 @@ -observationID,deploymentID,sequenceID,mediaID,timestamp,observationType,cameraSetup,taxonID,scientificName,count,countNew,lifeStage,sex,behaviour,individualID,classificationMethod,classifiedBy,classificationTimestamp,classificationConfidence,comments,_id +observationID,deploymentID,sequenceID,mediaID,timestamp,observationType,cameraSetup,taxonID,scientificName,count,countNew,lifeStage,sex,behaviour,individualID,classificationMethod,classifiedBy,classificationTimestamp,classificationProbability,comments,_id 705e6036-aa3d-487c-a184-cf951747d8cb,00a2c20d-f038-490c-9b3f-7e32abfa0be7,4bb69c45-f6e5-4988-966a-6f7a8eac1117,,2020-05-30T04:57:37+02:00,animal,FALSE,DGP6,Anas platyrhynchos,1,,adult,female,,,human,Danny Van der beeck,2020-07-09T09:39:52Z,,, 87fdd8fa-4e85-4043-a258-30cc5f507191,00a2c20d-f038-490c-9b3f-7e32abfa0be7,f99bfff4-07d0-485b-a390-7cf04434c5cb,,2020-05-31T06:05:10+02:00,animal,FALSE,DGP6,Anas platyrhynchos,1,,adult,male,,,human,Danny Van der beeck,2020-07-09T09:40:32Z,,, 1fcdba64-14d2-490e-9afe-8503a78a8b47,00a2c20d-f038-490c-9b3f-7e32abfa0be7,f99bfff4-07d0-485b-a390-7cf04434c5cb,,2020-05-31T06:05:10+02:00,animal,FALSE,DGP6,Anas platyrhynchos,1,,adult,female,,,human,Danny Van der beeck,2020-07-09T09:40:44Z,,, From cbebacb4fcf869fa63aa681f2436b0b28befb0b4 Mon Sep 17 00:00:00 2001 From: Dan Stowell Date: Thu, 10 Nov 2022 18:22:20 +0100 Subject: [PATCH 5/5] Make the language slightly more consistent --- observations-table-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observations-table-schema.json b/observations-table-schema.json index c0eb9f4..01af3fb 100644 --- a/observations-table-schema.json +++ b/observations-table-schema.json @@ -225,7 +225,7 @@ "name": "classificationProbability", "type": "number", "format": "default", - "description": "Certainty of the classification. Expressed as a probability, with `1` being maximum confidence. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", + "description": "Degree of certainty of the classification. Expressed as a probability, with `1` being maximum certainty. For human classifications, omit this field (in CSV, an empty string) or use an approximate probability if available.", "example": "0.95", "constraints": { "required": false,