Generate a logo using text.
Fast, minimal port of DALL·E Mini to PyTorch
Generate images using a variety of techniques - Powered by Discoart
Text-to-video generation
Uses pixray to generate an image from text prompt
Image Restoration Using Swin Transformer
Define your model with Cog, an open-source tool to package a machine learning model in a container:
build:
gpu: true
system_packages:
- "libgl1-mesa-glx"
- "libglib2.0-0"
python_version: "3.8"
python_packages:
- "torch==1.8.1"
predict: "predict.py:Predictor"
Then, push it to Replicate:
$ cog push
Your model can now be run in the cloud on the web and via an API.
Replicate is not open for everyone to create models yet. Join our waitlist and we'll notify you when we're ready for new users.
Run open-source or private models with just a few lines of Python code:
import replicate
model = replicate.models.get("hooli/hotdog-detector")
model.predict(image=open("possible-hot-dog.jpg"))
Or query the API directly using your tools of choice:
curl -s -X POST \
-d '{"version": "...", "input": {"image": "https://example.com/image.jpg"}}' \
-H "Authorization: Token $REPLICATE_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.replicate.com/v1/predictions