mirror of
https://github.com/vale981/ray
synced 2025-03-11 21:56:39 -04:00

This change adds introductory deployment graph documentation. Links to updated documentation: * [Model Composition](https://ray--26860.org.readthedocs.build/en/26860/serve/model_composition.html) * [Examples Overview](https://ray--26860.org.readthedocs.build/en/26860/serve/tutorials/index.html) * [Deployment Graph Pattern Overview](https://ray--26860.org.readthedocs.build/en/26860/serve/tutorials/deployment-graph-patterns.html) * [Pattern: Linear Pipeline](https://ray--26860.org.readthedocs.build/en/26860/serve/tutorials/deployment-graph-patterns/linear_pipeline.html) * [Pattern: Branching Input](https://ray--26860.org.readthedocs.build/en/26860/serve/tutorials/deployment-graph-patterns/branching_input.html) * [Pattern: Conditional](https://ray--26860.org.readthedocs.build/en/26860/serve/tutorials/deployment-graph-patterns/conditional.html) Co-authored-by: Archit Kulkarni <architkulkarni@users.noreply.github.com>
35 lines
687 B
Python
35 lines
687 B
Python
# __graph_start__
|
|
# File name: branching_input.py
|
|
|
|
import ray
|
|
from ray import serve
|
|
from ray.serve.deployment_graph import InputNode
|
|
|
|
|
|
@serve.deployment
|
|
class Model:
|
|
def __init__(self, weight):
|
|
self.weight = weight
|
|
|
|
def forward(self, input):
|
|
return input + self.weight
|
|
|
|
|
|
@serve.deployment
|
|
def combine(value_refs):
|
|
return sum(ray.get(value_refs))
|
|
|
|
|
|
model1 = Model.bind(0)
|
|
model2 = Model.bind(1)
|
|
|
|
with InputNode() as user_input:
|
|
output1 = model1.forward.bind(user_input)
|
|
output2 = model2.forward.bind(user_input)
|
|
combine_output = combine.bind([output1, output2])
|
|
|
|
sum = ray.get(combine_output.execute(1))
|
|
print(sum)
|
|
# __graph_end__
|
|
|
|
assert sum == 3
|