Linda Fernsel
Linda Fernsel
Thanks for the feedback @lorenh516 and you're welcome. See my updated changes.
I also looked here: * https://dssg.github.io/aequitas/_modules/src/aequitas/group.html#Group.get_crosstabs to find out how to set the score threshold And here: * https://developers.google.com/machine-learning/crash-course/classification/true-false-positive-negative to make sure my definitions for tp, fp, tn, fn are...
The numbers I calculated for predicted positive and predicted negative are also switched in Aequitas: ``` f_pp = df[((df['sex'] == 'Female') & (df['score'] >= t))] # 1248, is pn in...
- I assume `label_value == 0` is the negative class ("API's classification was not correct"), `label_value == 1` is the positive class ("API's classification was correct") - Therefore I thought...
And the part of the code that shows how the treshold is interpreted: https://github.com/dssg/aequitas/blob/bb17ce4f305e8a33af3ae18a2a9000555f2e684e/src/aequitas/bias.py#L729 https://github.com/dssg/aequitas/blob/bb17ce4f305e8a33af3ae18a2a9000555f2e684e/src/aequitas/bias.py#L730
I solved this problem by adding the following to the Dockerfile, to raise the upload limit: ``` # Update PHP settings RUN sed -i "s/post_max_size.*/post_max_size = 0/" /etc/php/7.4/apache2/php.ini && \...
Oh, when I provide start and end date, it next tells me that the message id is missing!
It looks like I can get what I want with `getTransacEmailsList(email, templateId)`
I have also experienced freezing with the portable text editor. It seems I am getting out of memory errors. This issue is since I upgraded Sanity from 3.38 to 3.47.
@Chocobozzz are there docker images for past versions? I have 3.1.0 and want to update step by step to the latest version (to 3.3.0 for now instead of going to...