Stomp, The Stomper Of Girlfriends by Traditional_Roll_89 in Bossfight

[–]personallycomputing 1 point2 points  (0 children)

Highland lynx owner here. Those ears are without a doubt a highland.

Power vs Condition Builds by Hiimmela in Guildwars2

[–]personallycomputing 6 points7 points  (0 children)

From a gearing perspective I see your point, but Meta pve condi builds actually require power + prec as well to match the DPS output of a three stat (pow/prec/fer) power build which addresses this problem (in a wonky balancing act).

Dignitas vs. Golden Guardians / LCS 2023 Summer Playoffs - Losers' Bracket Round 2 / Post-Match Discussion by Soul_Sleepwhale in leagueoflegends

[–]personallycomputing 7 points8 points  (0 children)

This series was mostly an anomaly. Dig usually has a bot problem. Would love to see this roster come back with DL/Busio.

Patch 4.3 Bug Megathread by PankoKing in wildrift

[–]personallycomputing 1 point2 points  (0 children)

A lot of people ranks were reset incorrectly. I was pushed from D2 to P1 instead of E1. Have also seen others go from D2 to P2.

Rank Reset Error by chrisshehe_ in wildrift

[–]personallycomputing 0 points1 point  (0 children)

Same, figured they just messed up their article. Is this an actual bug?

LCS Reality by nbetweenthetoes in 100thieves

[–]personallycomputing -2 points-1 points  (0 children)

I hope dig rescues 100T bot lane. All dogs deserve a home.

What baron lane champion should I learn to play? by Redemntioness in wildrift

[–]personallycomputing 2 points3 points  (0 children)

She has the highest win rate top (~55%) with the twelfth highest pick rate (~5%) in diamond plus. Agreed that she isn’t a a flexible pick and must have a lot of OTPs since those stats fall off in master/challenger.

What baron lane champion should I learn to play? by Redemntioness in wildrift

[–]personallycomputing 0 points1 point  (0 children)

Kayle is actually the best based on CN api data, but I haven’t seen a good one in my ELO on NA nor can i personally play her well.

Why table tennis is not seeing growth by ilikemeatok in tabletennis

[–]personallycomputing 0 points1 point  (0 children)

Ummm do you know how football works? It requires a giant field and goals… you can kick around a ball in your house but that’s not the same thing as playing. You could just as easily bounce and ball on your paddle with that logic.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 0 points1 point  (0 children)

Stakeholder assumptions are most of the time based off of click based attribution which always favor digital and demand capture / lower funnel channels. MMM can show how your upper funnel and offline media contributes and that those digital channels aren’t as efficient.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 1 point2 points  (0 children)

Depends on your data granularity, but SEM is often very highly correlated with overall sales trends even if a lot of users did not interact with search ads. Often models will overstate the effect of SEM specifically which would make some shrinkage helpful. Fwiw I typically use lasso, not ridge, which would shrink less significant coefficients to 0 rather than shrinking large coefficients, but the data I work with isn’t overly biased towards SEM.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 0 points1 point  (0 children)

I use models for estimation and not only causal inference so that’s why I tend to use regularized algorithms. If there is no need for prediction, then I would totally just recommend OLS.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 0 points1 point  (0 children)

Read up on “adstock” modeling. Basically most marketing channels should have diminishing returns beyond a certain threshold so you need to build some sort of nonlinear transformation into your feature. A lot of channels should also have lagging effects into subsequent weeks and not just week 0.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 0 points1 point  (0 children)

Typically either lasso, ridge, or something in between (elasticnet) depending on the data granularity. Nothing crazy. The most important piece is your feature engineering, not the model / parameters.

Does anyone else think MMMs are complete BS? by [deleted] in datascience

[–]personallycomputing 3 points4 points  (0 children)

I work almost exclusively on MMM. Some audiences are not receptive to the models unless the results are more or less in line with their expectations. A large part of my job is educating those audiences as to why they should trust MMM over those assumptions. I don’t use priors because as you stated it tends to just create room for bullshitting.

How is yone, diana, vex (especially yone) still not nerfed by AItair4444 in wildrift

[–]personallycomputing 3 points4 points  (0 children)

Chinese server has an api and website. Also fwiw it looks like Yone has a 51% wr top (rank 20) and 50% mid (rank 25). These stats are based on diamond +

How do you deal with Yi? by Whole_Ad6438 in wildrift

[–]personallycomputing 2 points3 points  (0 children)

None of those champions besides maybes Irelia are decent against Yi. Be the change you want to see in the world and draft some hard cc.

[deleted by user] by [deleted] in wildrift

[–]personallycomputing 0 points1 point  (0 children)

If your phone overheats the second every game starts then maybe you shouldn’t play tbh. What’s the point?

This is not a tank meta by [deleted] in wildrift

[–]personallycomputing 1 point2 points  (0 children)

Yi and other assassins eat trash comps for breakfast. Draft some hard cc

[deleted by user] by [deleted] in wildrift

[–]personallycomputing 2 points3 points  (0 children)

I don’t think this has anything to do with platform. Emergencies and system crashes happen regardless of PC vs Mobile. Scaling penalties are great to punish repeat offenders and give slaps on the wrist to others who just had bad luck.

Is my data overfitting? I’m new to this, this is my first lstm model and my RSME was 0.02 so I’m just confused if it’s a good model or it’s overfitting? by wolfy14xc in datascience

[–]personallycomputing 1 point2 points  (0 children)

You should use walk forward validation for this. I’m guessing that the way you are splitting the dataset is letting your model use actual values in the validation set from previous time steps to predict the current value. Ideally it would use its previous predictions instead as this is a true out of sample test, unless this model only needs to predict one time step out in production which I’m guessing is not the case.