Primary competition visual

Unifi Value Frameworks PDF Lifting Competition

Helping South Africa
$5 000 USD
Challenge completed over 1 year ago
Generative AI
450 joined
73 active
Starti
Dec 21, 21
Closei
Mar 17, 24
Reveali
Mar 17, 24
User avatar
Juliuss
Freelance
ZERO IS INDEED A VALUE
Platform · 9 Mar 2024, 10:24 · 2

Hello @Zindi and @amyflorida626, @Nelly43, @grayb

In a previous discussion, we explored how the samplesubmission.csv achieves a 90% accuracy due to companies not reporting all metrics, which defaults them to zero. However, it was highlighted that zero is indeed a valid value, and we should not automatically default to 0 if a metric is not reported.

If we were to leave the submission file with null values, the system would not accept it as the statistics must be floats. Is there a possibility for the system to allow us to submit nulls instead of zeros if certain metrics are not reported by a company?

Additionally, is it feasible to evaluate our submission only on the metrics that a company reports? This approach would enable us to better assess the accuracy of our models without the boost by the current 0 values.

Regards,

Discussion 2 answers
User avatar
tomwetherell
Met Office
Additionally, is it feasible to evaluate our submission only on the metrics that a company reports? This approach would enable us to better assess the accuracy of our models without the boost by the current 0 values.

This would change my current approach (and I assume others) quite significantly. At the moment, I have designed my RAG system such that it should return 'null' (which is mapped to 0) if the metric isn't found in the pdf, and returns the value of the metric if it is.

Are others just using their model to retrieve the metrics we know each company reports (by looking at which metrics the company reported in previous years), and leaving the rest as 0? And is this allowed? Obviously, you'll get a higher score by not using your model to try and retrieve metrics that aren't reported (as sometimes the model will incorrectly return a value instead of 'null'/0 in this case). But it makes the model practically less useful, as in practise you won't know in advance whether a company reports a specific metric or not, so the model should be able to handle this case correctly (return 'null' if not found).

9 Mar 2024, 13:01
Upvotes 0
User avatar
Juliuss
Freelance

Yea that is my approach, I stand guided