-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Deploy Outlines on Beam | ||
|
||
1. Create an account [here](https://beam.cloud) and install the Beam SDK | ||
2. Download the `app.py` file to your computer | ||
3. Deploy it as a serverless API by running: `beam deploy app.py:predict` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from beam import Image, endpoint, env | ||
|
||
if env.is_remote(): | ||
import outlines | ||
|
||
|
||
# Pre-load models when the container first starts | ||
def load_models(): | ||
import outlines | ||
|
||
model = outlines.models.transformers("microsoft/Phi-3-mini-4k-instruct") | ||
return model | ||
|
||
|
||
@endpoint( | ||
name="outlines-serverless", | ||
gpu="A10G", | ||
cpu=1, | ||
memory="16Gi", | ||
on_start=load_models, | ||
image=Image().add_python_packages( | ||
["outlines", "torch", "transformers", "accelerate"] | ||
), | ||
) | ||
def predict(context, **inputs): | ||
default_prompt = """You are a sentiment-labelling assistant. | ||
Is the following review positive or negative? | ||
Review: This restaurant is just awesome! | ||
""" | ||
|
||
prompt = inputs.get("prompt", default_prompt) | ||
|
||
# Unpack cached model from context | ||
model = context.on_start_value | ||
# Inference | ||
generator = outlines.generate.choice(model, ["Positive", "Negative"]) | ||
answer = generator(prompt) | ||
return {"answer": answer} |