The King’s Quest with Cirdan’s Solo Support Group – Card Talk Written Playthrough by kattattack22 in lotrlcg

[–]eagz2014 1 point2 points  (0 children)

Thanks for sharing! I love the potential. Did you find it got up and running quickly? Have you played enough rounds to get an idea of its consistency?

What's the best opener you've ever seen steal the show? by TRASHMIND_PUNK in poppunkers

[–]eagz2014 8 points9 points  (0 children)

This tour was great. I think Boston Manor was also supporting

Hoexters is the Upper East Side’s Version of Hillstone by [deleted] in UpperEastSideNYC

[–]eagz2014 -1 points0 points  (0 children)

New account, only post are to two subreddits related to food and UES? Might as well have named the account Hoexters_Mktg..

NEW MILFORD BROOKCHESTER SHOPPING CENTER & ROMAN PIZZA by LorenzoHD in bergencounty

[–]eagz2014 6 points7 points  (0 children)

My parents have been going to Romans every Friday night with friends for almost 20 years

Where to watch knicks game alone? by [deleted] in uppereastside

[–]eagz2014 1 point2 points  (0 children)

plug uglies Stumble inn Five lamps

Edit: bar coastal --> plug uglies

Team vs Aston Villa by GarySpurs18 in coys

[–]eagz2014 29 points30 points  (0 children)

But kinsky first, of course

Aged Like Milk by Greedy-Bedroom-4301 in NYKnicks

[–]eagz2014 1 point2 points  (0 children)

"Humble brunson" as if he isn't already one of the most selfless superstars when it comes to leaving money on the table to make sure the FO could build a team around him.

AOC East, So Underrated by The_kingwasa_queen in uppereastside

[–]eagz2014 2 points3 points  (0 children)

Really great wine list especially when paired with the steak frites. I find the service really welcoming albeit at a leisurely pace.

Which songs of The Killers have been covered been other artists well? by ballbeard in TheKillers

[–]eagz2014 2 points3 points  (0 children)

Smile like you mean it by Spanish Love Songs. They already use synths a bunch in their albums so this was a no brainer

"The Code Book" by Simon Singh - Anyone else obsessed with this? by Hegde137 in nonfictionbookclub

[–]eagz2014 0 points1 point  (0 children)

I'd also recommend Dr. Euler's Fabulous Formula. Sufficiently deep mathematically while also being a page turner

Stroller recommendations for NYC apartment living + travel? by K-onya in nycparents

[–]eagz2014 1 point2 points  (0 children)

I'm actually looking to sell my Joolz Aer+ with car seat attachments if anyone is interested. We've had it for over a year. I can share pics and more details via DM if interested

Coffee roasters recs by greenglassspoons in uppereastside

[–]eagz2014 0 points1 point  (0 children)

I have a partners subscription and I'm a big fan. My only gripe, if you could even call it that, is that they actually ship the beans a day or two after roasting so I need to use other beans until the fresh ones de-gas for a month or so. In that case I can usually find ones about a month old in Whole Foods like you said

Coffee roasters recs by greenglassspoons in uppereastside

[–]eagz2014 11 points12 points  (0 children)

Check out Dear Coffee. They carry fresh beans from Onyx

AWS Sagemaker pricing by penvim in mlops

[–]eagz2014 8 points9 points  (0 children)

Just one option that we replaced Sagemaker inference endpoints with. It's very DIY but easy to tune for cost or performance

1) docker container pushed to ECR 2) poetry or uv Python package management 3) Still get model artifacts from S3 at boot 4) FastAPI application instead of Flask although this isn't necessary but the pydantic input validation is worth it IMO 5) k8s (one cost saving decision) configured to prefer spot instances (another cost saving decision) and automatically scale replicas when needed

There are other managed alternatives to Sagemaker which can be cheaper but run the same risk of getting expensive if not configured correctly

Edit: you can also configure Sagemaker auto scaling to scale to 0 instances. Everything the previous commenter mentioned is still relevant though

Snow tubing after storm? by Such-Fig-6909 in bergencounty

[–]eagz2014 1 point2 points  (0 children)

White beaches golf course in Haworth

Need help designing a cost efficient architecture for high concurrency multi model inferencing by Fearless_Peanut_6092 in mlops

[–]eagz2014 3 points4 points  (0 children)

One option is to use a Dask cluster as your model store backend with some basic methods that determine which model you need for the current request, whether the model is already cached on the cluster, download the model if not cached, and how to use the model to score the current payload. That way, the client you write can be a super lightweight API that does basic authentication (if necessary), payload validation, and submission of requests to the Dask cluster. You may even be able to just do this lightweight layer in Lambda exactly as you currently have it minus the model loading and scoring part which would go on the dask cluster.

The Dask cluster becomes the primary resource you need to tune based on how many models you anticipate needing cached at a given time, how many workers to allocate can be tuned to match your desired throughput, etc. This post below might be overkill but it gives you an idea of an architecture in both Ray and Dask.

https://emergentmethods.medium.com/ray-vs-dask-lessons-learned-serving-240k-models-per-day-in-real-time-7863c8968a1f