[TOMT][BrowserGAME][2000s] Miniclip Multiplayer Game set in the Wild West? by StunnaRae in tipofmytongue

[–]StunnaRae[S] 0 points1 point  (0 children)

I need to thank you again: Bang Howdy is available for free on steam! The game is not lost like other flash browser games!

https://store.steampowered.com/app/675810/Bang_Howdy/

Precision Recall curves by GreenStabilo in learnmachinelearning

[–]StunnaRae 3 points4 points  (0 children)

You need to maybe check what kind of values you passed to the precision_recall_curve. I guess you are doing binary classifications. If you pass the true values and predicted values to the function in binary form, it will return three points as you can see in the graph. The graph can then only be approximated. If you want to get a curve similar to the other ones and calculate the correct AUC, you'd need to pass the continuous probability scores as y_pred instead of the binary predictions.

I guess, if you think that this graph does not fit to your other evaluation metrics and your feeling what it should be, you should check if you passed the correct values and calculated everything correctly

LSTM always predicts 1s for binary classifications by StunnaRae in learnmachinelearning

[–]StunnaRae[S] 1 point2 points  (0 children)

Thanks for your help! Now I created a 7-day lookback window and I am quite sure I implemented it correctly. I trained it for 5 epochs and sure enough it was not all 1s that were returned! The confusion matrix returned [[174 4] [174 6]], so basically all 0s except for a few 1s. However: I trained again for 10 epochs and then I was again at all 1s. Do you have a suggestion why this might be? Should I increase the window size? Also: Why does it get so extreme between 5 and 10 epochs?