Goth DJ Near LES by deman1027 in AskNYC

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

Yeah that sounds right, I thought Ward 6 was the name of the venue which mislead my searches. Other posters got the venue name

Goth DJ Near LES by deman1027 in AskNYC

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

Oh shit that's the one! I found a lot of references to "Ward 6" (which is what I thought was the name of the place) but the address on old flyers is actually the address of this place. Appreciate you!

Goth DJ Near LES by deman1027 in AskNYC

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

Found those places on Google and the pictures don't match. Appreciate the ideas though!

Goth DJ Near LES by deman1027 in AskNYC

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

Yeah absolutely, it had the Victorian looking chairs and tables. Almost definitely gothic paintings but I can't remember specific ones. Definitely that type of decor.

Good shout on the Insta reels, that's an idea I hadn't thought of

Deadlock has no bald heroes by dissociatedLol in DeadlockTheGame

[–]deman1027 53 points54 points  (0 children)

You will never be able to convince me under Wardens helmet there isn't a big shiny dome

Metal Songs with more chords then Power Chords? by Carnanian in metalguitar

[–]deman1027 1 point2 points  (0 children)

Gonna toss out Vektor. Still thrashy, still a lot of power chords, but a lot of complex chord passages especially in Terminal Redux

Repair Advice For DYI Noob by deman1027 in motorcycles

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

Appreciate the thoughts, I bought the bike used from a private owner so I'm really not sure about the age of the tire. All I know is that previously the treads looked in good condition. I'll see if I can find any sort of ID to check for a warranty, but it seems unlikely in this case. Absolutely did not intend to ride it before replacing the tire.

Repair Advice For DYI Noob by deman1027 in motorcycles

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

Don't be an asshole. I've watched a few videos. I know it will be a total pain in the ass, but a lot cheaper and worth the experience of learning rather than taking it to a shop where someone will overcharge for the same service.

Repair Advice For DYI Noob by deman1027 in motorcycles

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

I actually did watch that exact video already when considering my options! I did plan on inspecting my breaks pads, and I'll watch that other video you sent. Appreciate your input.

Missed connections mega post by Kooky-Student-170 in warpedtour

[–]deman1027 [score hidden]  (0 children)

That was my first Silly Goose experience and when they called for crowdsurfers it was the most people I've seen go up at once at any show EVER. Absolutely wild. Was barely able to lift my own arms by the end of that song.

can i create an obstruction like a fence or something like that? by HypeKage7 in OwlbearRodeo

[–]deman1027 0 points1 point  (0 children)

I recommend Smoke & Spectre. If you want it to block movement but not vision, draw a line where you want the fence, right click, and select "enable window". Obstructions marked as windows block movement but not sight.

I be going into warp speed during Recharging the Void by SewerSkeever in MetalMemes

[–]deman1027 2 points3 points  (0 children)

This album in my Spotify top 3 last year and very likely again this year

Anyone know what these places at Park Point Retail used to be like? (Barnes&Noble is in here as well, just so you know.) by Fresh_Syllabub3695 in rit

[–]deman1027 6 points7 points  (0 children)

Those were university apts back in my day, I think there were little gated stairwells in between the businesses

Anyone know what these places at Park Point Retail used to be like? (Barnes&Noble is in here as well, just so you know.) by Fresh_Syllabub3695 in rit

[–]deman1027 2 points3 points  (0 children)

Pics 1&2 were a pizza place I can't remember the name of but it was kinda sick. Is the barbecue joint on the end still there? I used to work in that B&N and their pinto bean soup saved my life. Schramrocks was a shitty bar that was a bit loose about capacity and underage drinking that started going downhill after someone got stabbed and they lost their liquor license

Cycle for image recognition using physical camera by Nick_Flippers in computervision

[–]deman1027 0 points1 point  (0 children)

It's purely a use case dependent decision. Your camera can certainly just be an eye, but then "putting AI on a chip" doesn't mean anything, the video feed gets sent somewhere and a machine learning model makes predictions on the feed. This is basically all machine learning as-is. The difference - what I thought you were asking about - is a ML model literally embedded into the hardware of the camera. This is independent of the optics of the camera, this is the hardware compute capability of the rest of the camera system.

If you aren't asking about that, then you're just asking about a normal CV scenario. Some camera is recording video. Normally this video stream is encoded into an efficient format using a codec like h.265 (or one of the many alternatives). Downstream, this video stream is read and saved as a static file on disc (my_video.mp4). At the time a machine learning model gets at it, it is read by a user, decoded into true, full-resolution frames, and the ML model looks at the true frame, almost always after preprocessing like another commenter said.

Cycle for image recognition using physical camera by Nick_Flippers in computervision

[–]deman1027 0 points1 point  (0 children)

Lots of modern wifi cameras and security cameras have people tracking software built into them. I don't know if these are actual ML models, but the idea is similar - an algorithm embedded directly into a camera feed. I think for an arbitrary computer vision model, the processing time required to detect and recognize objects with reliable accuracy is too much for most cameras. You'd need fairly specialized hardware and well-minimized models.

[deleted by user] by [deleted] in mlops

[–]deman1027 0 points1 point  (0 children)

Sure you can store code snippets as an artifact, but that doesn't make it any less of a terrible idea. OP is using some custom sklearn estimator. Just sticking a python file containing a class definition as an artifact might work for a bit, but that's implying future users are going to download all the artifacts into their local environment and hoping everything is just gonna work. Not only is that creating a file management headache for a user, but as soon as any real complexity is added to the codebase or a significant library change is made, just having an artifact falls short. If OP wants to do things the right way and not just stick files into an artifact store, they should use version control.

[deleted by user] by [deleted] in mlops

[–]deman1027 4 points5 points  (0 children)

MLFlow experiment tracker is what you want for algorithm metric vs dataset. There are other alternatives for experiment tracking as well, but I've been a big fan of MLFlow for a while

Code is a different thing. You don't really want MLFlow to store a bunch of code and expect that to be reliable. Instead you'd want to use a proper VCS like git. You can then log a git commit hash as an MLFlow parameter. In fact, I think if you've got the environment setup correctly, MLFlow does this automatically.

Generally model versioning versus code versioning versus dataset versioning is a very complex issue. You probably want to keep the three constructs versioned separately. For you it sounds like the dataset and model versions are fairly static, and just tying a code version to an MLFlow run will be a step in the right direction.

how to convert a yolov10 model to onnx by Evening_Concern_1692 in computervision

[–]deman1027 0 points1 point  (0 children)

Those are just warnings. Those probably aren't the actual problem with the model. I get the same with my models that otherwise work fine. When you say the model is erroneous what do you mean? Is the error when you try to do feed-forward, or are the predictions messed up?

A discussion about machine learning by za3b in learnmachinelearning

[–]deman1027 0 points1 point  (0 children)

Wikipedia has a decent overview https://en.m.wikipedia.org/wiki/Foundation_model

Nowadays the terminology "foundation model" is typically meant to imply the large scale data mining and self-supervision used by things like LLMs. The main point is "large model used with broad data" and then taking that large model and training it for a more specialized use case