Readme
This model doesn't have a readme.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run technillogue/cog-triton-webrtc using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"technillogue/cog-triton-webrtc:979c159899688900e963e06bbac50309a8897a01a3bba76b6795194bc80dc6dc",
input={
"top_k": 0,
"top_p": 0,
"temperature": 1,
"length_penalty": 1,
"max_new_tokens": 250,
"presence_penalty": 0
}
)
# The technillogue/cog-triton-webrtc model can stream output as it's running.
# The predict method returns an iterator, and you can iterate over that output.
for item in output:
# https://replicate.com/technillogue/cog-triton-webrtc/api#output-schema
print(item, end="")
To learn more, take a look at the guide on getting started with Python.
No output yet! Press "Submit" to start a prediction.
This model runs on Nvidia L40S GPU hardware. We don't yet have enough runs of this model to provide performance information.
This model doesn't have a readme.