-
Hi, I would like to deploy a pipeline like stable diffusion using only Java with DJL Serving. If I understood well, the only way would be to use a workflow but I don't know if it is possible to configure the iterative part of the pipeline... Is there any way with Java to implement a pipeline completely like it is possible with python ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There was a comparable discussion on our slack channel. For future readers, I will copy the discussion here: Slack DiscussionLanking Frank Afriat Frank Afriat Zach Kimberg Frank Afriat Zach Kimberg Frank Afriat |
Beta Was this translation helpful? Give feedback.
-
For future readers, I will copy also the discussion I had with Frank Liu: my question was more precisely: Frank Afriat Frank Liu Frank Afriat Frank Liu Frank Afriat |
Beta Was this translation helpful? Give feedback.
There was a comparable discussion on our slack channel. For future readers, I will copy the discussion here:
Slack Discussion
Lanking
15 days ago
https://docs.djl.ai/master/examples/docs/stable_diffusion.html
Frank Afriat
15 days ago
Yes I saw it, but my question is related to DJL Serving. That's also the point of my second question to implement completely a model in Java using DJL-Serving (like in Python implementing simply
def handle(inputs: Input)
).
Frank Afriat
15 days ago
By the way, your implementation in Java with DJL is excellent !
Zach Kimberg
15 days ago
The piece you saw was about having recursion defined through the workflow file. But, you are able to use recursion inside a c…