Replies: 2 comments
-
Hey @sinsoff, Not exactly answering your questions, but you can take a look at https://github.com/ESSS/pytest-regressions and https://github.com/gabrielcnr/pytest-datadir as starting points. 👍 Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
I will share my try on something similar (or not?). Probably not a good solution for this problem =) For bigger and more robust collection you will probably want to submit those obtained statics to some kind of database then use the pytest hook |
Beta Was this translation helpful? Give feedback.
-
Hello everyone!
I am currently testing Machine Learning services. And I need to calculate different statistics like: success rate, false positive rate, etc. I have large datasets (500-10000 images) for it and etalons for each of them. Each service takes one image as input, so theoretically, i have to run the same test len(dataset) times.
So my questions are:
1. How to aggregate results of len(dataset) tests?
2. How to add tables, plots, etc to the Report?
Beta Was this translation helpful? Give feedback.
All reactions