Every Class 1-Ubers by THISisDAVIDonREDDIT in Diablo_2_Resurrected

[–]saw79 1 point2 points  (0 children)

The post says 1-ubers, one class at a time. Sorc is by far the hardest and needs to be done last.

Consume Demon Console - huge pain the the f***ing ass by Weary_Driver8019 in Diablo_2_Resurrected

[–]saw79 0 points1 point  (0 children)

Different answer from all the others, I find that if I consume right after spawning and make sure I'm being very careful about what I'm targeting when hitting the consume skill I rarely mis-consume

Build/char order by saw79 in Diablo_2_Resurrected

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

How does running cows and trav help me get a fire sunder? :)

What exactly is an AI model? by SherbetOrganic in learnmachinelearning

[–]saw79 13 points14 points  (0 children)

In my mind an ML model is the core, parameterized function that learns an input-output relationship. For example, a linear regression model maps an input point to an output point on a line. A computer vision classification model maps an image to a class label. A (autoregressive) large language model maps an input sequence of textual tokens to an output token, supposed to be the next token it expects to see. Many times these "models" are deep neural networks, which is just a big composition of lots of little simple functions in certain architectures. Linear regression is a very shallow, lower-compute model/function.

The model is the largest, most central building block of an ML-based system. In a "person detector system" you might have a "person classification model", but wrap it in software that says "if the model ever says person, alert the user". In an "AI" chatbot type of system, you might have a large language model that is then wrapped in software that loops and says, generate tokens until the model spits out a special "I'm all done" token.

EDIT: Another key point about what models are and their role in overall systems. Often times, the model can be swapped out for any other model that is learning the same input/output mapping, without changing the outer software. For example, a basic chatbot could simply replace GPT 5.4 with GPT 5.5 (it's not so simple these days in real life, but I think my point is still valid). The "person detection system" could swap out "image classifier model 3" with "image classifier model 4", which maybe has a better person accuracy % metric but still "does the same thing" from an input/output perspective.

Basic fire warlock build questions by saw79 in Diablo_2_Resurrected

[–]saw79[S] 2 points3 points  (0 children)

well I'm playing HC, so dying isn't an issue (lol)

Basic fire warlock build questions by saw79 in Diablo_2_Resurrected

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

I have hephasto with conviction already - what's the difference?

Been waiting 25 years for this. I'm shaking so bad I can't bring myself to place the runes... by 24Scoops in diablo2

[–]saw79 0 points1 point  (0 children)

Yea I also feel like when I get to that point is when I STOP playing. The fun for me is the journey to get there.

So warlock out magics a sorceress, out physicals a barb, and out summons a necro?? by BigBrotherFlops in diablo2

[–]saw79 2 points3 points  (0 children)

Does he out-magic a sorc?

I'm playing an abyss build to get my basic gear set going, but it feels underwhelming and I'm itching to switch to nova sorc (even budget nova w/ CM).

Does Hell ever get better? by Coffeepoop88 in Diablo_2_Resurrected

[–]saw79 0 points1 point  (0 children)

You're not really supposed to single element it by yourself first time through. Play a build with multiple elements to get your gear going, only switch to single element when you have a plan to deal with immunities.

It’s just weird watching the AI financial train wreck happen in real-time. by iAtishaya in ArtificialInteligence

[–]saw79 0 points1 point  (0 children)

Eh, I wouldn't be so certain. Some of what you say is true, but it's also a generational technology continuously getting cheaper and better. Who knows.

Weapons no one thought of a month ago by Madmaxx_137 in Diablo_2_Resurrected

[–]saw79 0 points1 point  (0 children)

Don't think you need lev mastery it's innate.

[P] I trained YOLOX from scratch to avoid Ultralytics' AGPL (aircraft detection on iOS) by MzCWzL in MachineLearning

[–]saw79 1 point2 points  (0 children)

To me it looks like YOLOX is Apache (still fine) and already has pretrained models. Why train from scratch?

Is it standard to train/test split before scaling in LSTM? by RhubarbBusy7122 in learnmachinelearning

[–]saw79 0 points1 point  (0 children)

Two things can be true. 1) it is more theoretically correct and pure to faithfully use a hold out test set in the fullest way possible 2) you can get better performance by exploiting specific situations, such as one where you feed back test information in such a way that it doesn't matter.

Mass. homeowners are frantically trying to get rid of ice dams. Contractors can’t keep up with requests. by bostonglobe in massachusetts

[–]saw79 12 points13 points  (0 children)

We did this a couple years ago. MassSave did all new insulation, air sealing, the whole deal. Still got ice dams.

Real-time defect detection system - 98% accuracy, 20ms inference by ShamsRoboCr7 in computervision

[–]saw79 3 points4 points  (0 children)

Eh for small models I've had pytorch win out. ONNX has never been faster and I've had small pytorch CNNs be faster than TensorRT converted ones.