From 7a98e5a411476c1a5cff62fda6b6d9cae1a94725 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Fri, 21 Jan 2022 11:16:47 -0800 Subject: [PATCH] add README for hello-world example --- hello-world/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hello-world/README.md diff --git a/hello-world/README.md b/hello-world/README.md new file mode 100644 index 0000000..8b13093 --- /dev/null +++ b/hello-world/README.md @@ -0,0 +1,21 @@ +# Hello World + +This simple model takes a string as input and returns a string as output. + +## Usage + +First, make sure you've got the [latest version of Cog](https://github.com/replicate/cog#install) installed. + +Build the container image: + +```sh +cog build +``` + +Now you can run predictions on the model: + +```sh +cog predict -i text=Athena + +cog predict -i text=Zeus +``` \ No newline at end of file