You're looking at a specific version of this model. Jump to the model overview.
wavefrontshaping /pymmf:e6039eed
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 wavefrontshaping/pymmf using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"wavefrontshaping/pymmf:e6039eed08a689f312350f145a1a755292021b8b85bab226c2bb0924bb4007e0",
{
input: {
NA: 0.2,
wl: 810,
core_diam: 50,
mode_repr: "cos",
n_cladding: 1.45,
curvature_x: 10,
is_curvature: "No",
profile_type: "GRIN",
solver_choice: "Radial 2"
}
}
);
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 wavefrontshaping/pymmf using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"wavefrontshaping/pymmf:e6039eed08a689f312350f145a1a755292021b8b85bab226c2bb0924bb4007e0",
input={
"NA": 0.2,
"wl": 810,
"core_diam": 50,
"mode_repr": "cos",
"n_cladding": 1.45,
"curvature_x": 10,
"is_curvature": "No",
"profile_type": "GRIN",
"solver_choice": "Radial 2"
}
)
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 wavefrontshaping/pymmf 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": "e6039eed08a689f312350f145a1a755292021b8b85bab226c2bb0924bb4007e0",
"input": {
"NA": 0.2,
"wl": 810,
"core_diam": 50,
"mode_repr": "cos",
"n_cladding": 1.45,
"curvature_x": 10,
"is_curvature": "No",
"profile_type": "GRIN",
"solver_choice": "Radial 2"
}
}' \
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/wavefrontshaping/pymmf@sha256:e6039eed08a689f312350f145a1a755292021b8b85bab226c2bb0924bb4007e0 \
-i 'NA=0.2' \
-i 'wl=810' \
-i 'core_diam=50' \
-i 'mode_repr="cos"' \
-i 'n_cladding=1.45' \
-i 'curvature_x=10' \
-i 'is_curvature="No"' \
-i 'profile_type="GRIN"' \
-i 'solver_choice="Radial 2"'
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 r8.im/wavefrontshaping/pymmf@sha256:e6039eed08a689f312350f145a1a755292021b8b85bab226c2bb0924bb4007e0
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "NA": 0.2, "wl": 810, "core_diam": 50, "mode_repr": "cos", "n_cladding": 1.45, "curvature_x": 10, "is_curvature": "No", "profile_type": "GRIN", "solver_choice": "Radial 2" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
No output yet! Press "Submit" to start a prediction.