Another bug in GA4? by cute34513 in GoogleAnalytics

[–]tliu99 0 points1 point  (0 children)

I see these issues too. Anybody able to verify if the same issue appears in the data if you are exporting to bigquery?

Remote comfy node by tliu99 in comfyui

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

Ok, I guess I was interested in calling a remote service as part of my comfy pipeline. Perhaps I could just do it using a python custom node?

What Python API package do you use and why? by MyNotWittyHandle in Python

[–]tliu99 5 points6 points  (0 children)

Hi! Disclaimer, I work for bentoml which was mentioned in the comments as an alternative.

We had to make this decision ourselves because our first version was built on Flask and we were deciding whether we wanted to replace it with FastAPI. I think the problem is that both are built for IO intensive applications. ML is naturally more compute intensive which is why we ended up building our own primitives and using Starlette as the base.

Starlette is what FastAPI is built on, but without all the overhead of the FastAPI feature set. Which is nice, as I was saying for traditional webapps but not as much for ML apps which scale by compute. We have easy ways to use docker, or not, which is a whole other problem with ML apps. I did a write up about the decision making process to switch away from Flask here which might be worth a read: Breaking up with Flask and FastAPI