In the context of neural networks, I am using a function to increase the difference between "good" accuracies and "bad" accuracies, i.e, for example all accuracies below 0.8 are considered bad and all accuracies above, good.
The function looks as follow:
$$ new\_x(x) = \frac{1}{1+e^{-Ax +B}} $$ Where $x$ is the accuracy, here is the graph, with A=1 and B=0
My question is the following: how do I find the values of A and B such the function returns high values (close to 1) after $x=0.8$ and very low before $x=0.8$ (close to $0$) ?
I have tried to find it out manually, but I would like to automate the process. I guess the solution involves constraints solving, that is why I tagged it this ways (but feel free to suggest another tag).
Thanks a lot!