You're looking at a specific version of this model. Jump to the model overview.
nateraw /video-background-remover:1a6194fb
This version has been disabled because it consistently fails to complete setup.
Input
Run this model in Node.js with one line of code:
npm 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 from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run nateraw/video-background-remover using Replicateās API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"nateraw/video-background-remover:1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42",
{
input: {
video: "https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif"
}
}
);
console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
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 nateraw/video-background-remover using Replicateās API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"nateraw/video-background-remover:1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42",
input={
"video": "https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif"
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run nateraw/video-background-remover using Replicateās API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"version": "1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42",
"input": {
"video": "https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif"
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicateās HTTP API reference docs.
brew install cog
If you donāt have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/nateraw/video-background-remover@sha256:1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42 \
-i 'video="https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif"'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/nateraw/video-background-remover@sha256:1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "video": "https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Add a payment method to run this model.
By signing in, you agree to our
terms of service and privacy policy
Output
{
"completed_at": "2024-02-13T09:12:07.141022Z",
"created_at": "2024-02-13T09:11:09.001868Z",
"data_removed": false,
"error": null,
"id": "5mbqzdtbeyrc37epavopmydpnm",
"input": {
"video": "https://replicate.delivery/pbxt/KOausLDB6ZDJBHLeCHGuvOkxaQq09Pjzl8aqfkCwHPZqJDGR/dog-running.gif"
},
"logs": "0 0.0 - 1.32\n/root/.pyenv/versions/3.11.7/lib/python3.11/site-packages/torchvision/transforms/functional.py:1603: UserWarning: The default value of the antialias parameter of all the resizing transforms (Resize(), RandomResizedCrop(), etc.) will change from None to True in v0.17, in order to be consistent across the PIL and Tensor backends. To suppress this warning, directly pass antialias=True (recommended, future default), antialias=None (current default, which means False for Tensors and True for PIL), or antialias=False (only works on Tensors - PIL will still use antialiasing). This also applies if you are using the inference transforms from the models weights: update the call to weights.transforms(antialias=True).\nwarnings.warn(",
"metrics": {
"predict_time": 3.380375,
"total_time": 58.139154
},
"output": "https://replicate.delivery/pbxt/fjqZLP5zxUTNWS2qYMgmvolw7oD5azlNcGd0FK4W7YbzIHLJA/out.mp4",
"started_at": "2024-02-13T09:12:03.760647Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/5mbqzdtbeyrc37epavopmydpnm",
"cancel": "https://api.replicate.com/v1/predictions/5mbqzdtbeyrc37epavopmydpnm/cancel"
},
"version": "1a6194fb7620295b4588f3e745b827ad8f575a019d51dfb247cfe5a79c629a42"
}
0 0.0 - 1.32
/root/.pyenv/versions/3.11.7/lib/python3.11/site-packages/torchvision/transforms/functional.py:1603: UserWarning: The default value of the antialias parameter of all the resizing transforms (Resize(), RandomResizedCrop(), etc.) will change from None to True in v0.17, in order to be consistent across the PIL and Tensor backends. To suppress this warning, directly pass antialias=True (recommended, future default), antialias=None (current default, which means False for Tensors and True for PIL), or antialias=False (only works on Tensors - PIL will still use antialiasing). This also applies if you are using the inference transforms from the models weights: update the call to weights.transforms(antialias=True).
warnings.warn(