okaris
/
model-diff
- Public
- 8 runs
Run okaris/model-diff with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
ckpt_base |
string
|
A ckpt file that contains the base model
|
|
ckpt_trained |
string
|
A ckpt file that contains the trained model
|
|
loss |
number
|
0
|
EXPERIMENTAL: How much values (0..1) near zero get assigned 0. Start with .00005
|
nocompress |
boolean
|
False
|
Should the dehydrated model be compressed
|
{
"type": "object",
"title": "Input",
"required": [
"ckpt_base",
"ckpt_trained"
],
"properties": {
"loss": {
"type": "number",
"title": "Loss",
"default": 0,
"x-order": 2,
"description": "EXPERIMENTAL: How much values (0..1) near zero get assigned 0. Start with .00005"
},
"ckpt_base": {
"type": "string",
"title": "Ckpt Base",
"format": "uri",
"x-order": 0,
"description": "A ckpt file that contains the base model"
},
"nocompress": {
"type": "boolean",
"title": "Nocompress",
"default": false,
"x-order": 3,
"description": "Should the dehydrated model be compressed"
},
"ckpt_trained": {
"type": "string",
"title": "Ckpt Trained",
"format": "uri",
"x-order": 1,
"description": "A ckpt file that contains the trained model"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}