Recent comments in /f/deeplearning

suflaj t1_iykea48 wrote

Doesn't matter. Softmax is just a multidimensional sigmoid. For binary classifications you can therefore use either 1 output and a sigmoid, or 2 outputs and a softmax. The only difference is that with a sigmoid you resolve the result as

is_fraud = result > 0.5

while with softmax you'd do

is_fraud = argmax(result) == 1
3

incrediblediy t1_iyjrk9c wrote

Reply to comment by democracyab in RTX 2060 or RTX 3050 by democracyab

get a used card (may be $200 ?), not brand new. PSU are not that expensive now (may be $50?), I used to have a 450W Silverstone 80+ Bronze with Ryzen5600x + RTX3060, it worked well.

Anyway, you will need a PSU for RTX2060 as well. RTX2060 & RTX3060 has almost same power requirement.

2

Blueberry-Tacos t1_iygvvgh wrote

Softmax activation function is usually used for multi categorical classification. Knowing that you are building a binary classification model, sigmoid is better for your application :)

EDIT : I've made a mistake. It is not used for multi categorical classification but to be able to classify multiple 'categories' from one input.

3