typefile
{
"ALIGN": true,
"ARUCO_CM": 5,
"ARUCO_PX": 100,
"CLASSES": "['plant']",
"CONTINUE": false,
"DAYS": 20,
"DISTANCE": 100,
"FAST": false,
"READ": true,
"READ_IMAGE": true,
"TARGET": 150,
"WRITE": true,
"WRITE_IMAGE": true,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeLEprBwB8IsZPZZTkvTgcY77DU6yJHKyjBNfofn2csI87o/0.zip"
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_TKn**********************************
This is your API token. Keep it to yourself.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run greeneryscenery/chronocrop using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"greeneryscenery/chronocrop:abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59",
{
input: {
ALIGN: true,
ARUCO_CM: 5,
ARUCO_PX: 100,
CLASSES: "['plant']",
CONTINUE: false,
DAYS: 20,
DISTANCE: 100,
FAST: false,
READ: true,
READ_IMAGE: true,
TARGET: 150,
WRITE: true,
WRITE_IMAGE: true,
ZIP_IMAGES: "https://replicate.delivery/pbxt/KOeLEprBwB8IsZPZZTkvTgcY77DU6yJHKyjBNfofn2csI87o/0.zip"
}
}
);
// To access the file URL:
console.log(output[0].url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output[0]);
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=r8_TKn**********************************
This is your API token. Keep it to yourself.
import replicate
Run greeneryscenery/chronocrop using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"greeneryscenery/chronocrop:abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59",
input={
"ALIGN": True,
"ARUCO_CM": 5,
"ARUCO_PX": 100,
"CLASSES": "['plant']",
"CONTINUE": False,
"DAYS": 20,
"DISTANCE": 100,
"FAST": False,
"READ": True,
"READ_IMAGE": True,
"TARGET": 150,
"WRITE": True,
"WRITE_IMAGE": True,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeLEprBwB8IsZPZZTkvTgcY77DU6yJHKyjBNfofn2csI87o/0.zip"
}
)
# The greeneryscenery/chronocrop model can stream output as it's running.
# The predict method returns an iterator, and you can iterate over that output.
for item in output:
# https://replicate.com/greeneryscenery/chronocrop/api#output-schema
print(item)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_TKn**********************************
This is your API token. Keep it to yourself.
Run greeneryscenery/chronocrop 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": "greeneryscenery/chronocrop:abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59",
"input": {
"ALIGN": true,
"ARUCO_CM": 5,
"ARUCO_PX": 100,
"CLASSES": "[\'plant\']",
"CONTINUE": false,
"DAYS": 20,
"DISTANCE": 100,
"FAST": false,
"READ": true,
"READ_IMAGE": true,
"TARGET": 150,
"WRITE": true,
"WRITE_IMAGE": true,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeLEprBwB8IsZPZZTkvTgcY77DU6yJHKyjBNfofn2csI87o/0.zip"
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
{
"id": "32mlietbz6orc62yscqahxyts4",
"model": "greeneryscenery/chronocrop",
"version": "abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59",
"input": {
"ALIGN": true,
"ARUCO_CM": 5,
"ARUCO_PX": 100,
"CLASSES": "['plant']",
"CONTINUE": false,
"DAYS": 20,
"DISTANCE": 100,
"FAST": false,
"READ": true,
"READ_IMAGE": true,
"TARGET": 150,
"WRITE": true,
"WRITE_IMAGE": true,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeLEprBwB8IsZPZZTkvTgcY77DU6yJHKyjBNfofn2csI87o/0.zip"
},
"logs": "Reading Images\nFailed to align 1.jpg\nFailed to align 2.jpg\nFailed to align 3.jpg\nFailed to align 4.jpg\nFailed to align 5.jpg\nFailed to align 6.jpg\nFailed to align 7.jpg\nFailed to align 8.jpg\nFailed to align 9.jpg\nFailed to align 10.jpg\nFailed to align 11.jpg\nFailed to align 12.jpg\nFailed to align 13.jpg\nFailed to align 14.jpg\nWriting\nWriting 1 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:57:26 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 2 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:57:37 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 3 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:57:45 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 4 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:57:53 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 5 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:02 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 6 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:10 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 7 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:19 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 8 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:28 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 9 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:36 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 10 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:46 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 11 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:58:54 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 12 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:59:03 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 13 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:59:12 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 14 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:59:21 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nWriting 15 out of 15.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:59:30 - mmengine - WARNING - Failed to search registry with scope \"mmdet\" in the \"function\" registry tree. As a workaround, the current \"function\" registry in \"mmengine\" is used to build instance. This may cause unexpected failure when running the built modules. Please check whether \"mmdet\" is a correct scope, or whether the registry is initialized.\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmengine/visualization/visualizer.py:196: UserWarning: Failed to add <class 'mmengine.visualization.vis_backend.LocalVisBackend'>, please provide the `save_dir` argument.\nwarnings.warn(f'Failed to add {vis_backend.__class__}, '\n[nltk_data] Downloading package punkt to ~/nltk_data...\n[nltk_data] Package punkt is already up-to-date!\n[nltk_data] Downloading package averaged_perceptron_tagger to\n[nltk_data] ~/nltk_data...\n[nltk_data] Package averaged_perceptron_tagger is already up-to-\n[nltk_data] date!\nnoun_phrases: ['plant']\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3190.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/mmcv/cnn/bricks/transformer.py:524: UserWarning: position encoding of key ismissing in MultiheadAttention.\nwarnings.warn(f'position encoding of key is'\nInference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \nresults have been saved at outputs\nReading\nReading 1 out of 15.\nReading 2 out of 15.\nReading 3 out of 15.\n12:59:38 - cmdstanpy - INFO - Chain [1] start processing\n12:59:38 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:38 - cmdstanpy - INFO - Chain [1] start processing\n12:59:38 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\nReading 4 out of 15.\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:40 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:40 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n18\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:40 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:40 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:40 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n29\n12:59:40 - cmdstanpy - INFO - Chain [1] start processing\n12:59:41 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:41 - cmdstanpy - INFO - Chain [1] start processing\n12:59:42 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n28\n12:59:42 - cmdstanpy - INFO - Chain [1] start processing\n12:59:42 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n26\nReading 5 out of 15.\n12:59:43 - cmdstanpy - INFO - Chain [1] start processing\n12:59:43 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n18\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n18\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n25\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n25\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n31\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n34\n12:59:44 - cmdstanpy - INFO - Chain [1] start processing\n12:59:44 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n34\nReading 6 out of 15.\n12:59:46 - cmdstanpy - INFO - Chain [1] start processing\n12:59:46 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n18\n12:59:46 - cmdstanpy - INFO - Chain [1] start processing\n12:59:46 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n18\n12:59:46 - cmdstanpy - INFO - Chain [1] start processing\n12:59:46 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n31\n12:59:46 - cmdstanpy - INFO - Chain [1] start processing\n12:59:46 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n31\n12:59:47 - cmdstanpy - INFO - Chain [1] start processing\n12:59:47 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n31\n12:59:47 - cmdstanpy - INFO - Chain [1] start processing\n12:59:47 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n28\n12:59:47 - cmdstanpy - INFO - Chain [1] start processing\n12:59:47 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n28\n12:59:47 - cmdstanpy - INFO - Chain [1] start processing\n12:59:47 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n28\nReading 7 out of 15.\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n36\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n35\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n35\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n27\n12:59:49 - cmdstanpy - INFO - Chain [1] start processing\n12:59:49 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n30\n12:59:50 - cmdstanpy - INFO - Chain [1] start processing\n12:59:50 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n30\n12:59:50 - cmdstanpy - INFO - Chain [1] start processing\n12:59:50 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n31\nReading 8 out of 15.\n12:59:51 - cmdstanpy - INFO - Chain [1] start processing\n12:59:51 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n27\n12:59:51 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n37\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n34\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n26\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n29\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n25\n12:59:52 - cmdstanpy - INFO - Chain [1] start processing\n12:59:52 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n25\nReading 9 out of 15.\n12:59:54 - cmdstanpy - INFO - Chain [1] start processing\n12:59:54 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n12:59:54 - cmdstanpy - INFO - Chain [1] start processing\n12:59:54 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n25\n12:59:54 - cmdstanpy - INFO - Chain [1] start processing\n12:59:54 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:54 - cmdstanpy - INFO - Chain [1] start processing\n12:59:55 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n27\n12:59:55 - cmdstanpy - INFO - Chain [1] start processing\n12:59:55 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\n12:59:55 - cmdstanpy - INFO - Chain [1] start processing\n12:59:55 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n35\n12:59:55 - cmdstanpy - INFO - Chain [1] start processing\n12:59:55 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n25\n12:59:55 - cmdstanpy - INFO - Chain [1] start processing\n12:59:55 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n33\nReading 10 out of 15.\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:57 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:57 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:57 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n21\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:57 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n28\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:57 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n12:59:57 - cmdstanpy - INFO - Chain [1] start processing\n12:59:58 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n27\n12:59:58 - cmdstanpy - INFO - Chain [1] start processing\n12:59:58 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n30\n12:59:58 - cmdstanpy - INFO - Chain [1] start processing\n12:59:58 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\nReading 11 out of 15.\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nVery slow growth! 🐢\n37\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n18\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:00 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:00 - cmdstanpy - INFO - Chain [1] start processing\n13:00:01 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n26\n13:00:01 - cmdstanpy - INFO - Chain [1] start processing\n13:00:01 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n26\nReading 12 out of 15.\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:03 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n17\n13:00:03 - cmdstanpy - INFO - Chain [1] start processing\n13:00:04 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:04 - cmdstanpy - INFO - Chain [1] start processing\n13:00:04 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\nReading 13 out of 15.\n13:00:06 - cmdstanpy - INFO - Chain [1] start processing\n13:00:06 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n13:00:06 - cmdstanpy - INFO - Chain [1] start processing\n13:00:06 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:06 - cmdstanpy - INFO - Chain [1] start processing\n13:00:06 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\n13:00:06 - cmdstanpy - INFO - Chain [1] start processing\n13:00:07 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n13:00:07 - cmdstanpy - INFO - Chain [1] start processing\n13:00:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n19\n13:00:07 - cmdstanpy - INFO - Chain [1] start processing\n13:00:07 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n13:00:07 - cmdstanpy - INFO - Chain [1] start processing\n13:00:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n16\n13:00:07 - cmdstanpy - INFO - Chain [1] start processing\n13:00:07 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\nReading 14 out of 15.\n13:00:09 - cmdstanpy - INFO - Chain [1] start processing\n13:00:09 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n13:00:09 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n23\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n17\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n17\n13:00:10 - cmdstanpy - INFO - Chain [1] start processing\n13:00:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n21\nReading 15 out of 15.\n13:00:13 - cmdstanpy - INFO - Chain [1] start processing\n13:00:13 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n24\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning: The behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\nfcst_t = fcst['ds'].dt.to_pydatetime()\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning: The behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\nax.plot(m.history['ds'].dt.to_pydatetime(), m.history['y'], 'k.',\n13:00:13 - cmdstanpy - INFO - Chain [1] start processing\n13:00:13 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n20\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n13:00:14 - cmdstanpy - INFO - Chain [1] start processing\n13:00:14 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n13:00:14 - cmdstanpy - INFO - Chain [1] start processing\n13:00:14 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n13:00:14 - cmdstanpy - INFO - Chain [1] start processing\n13:00:14 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n22\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n13:00:14 - cmdstanpy - INFO - Chain [1] start processing\n13:00:14 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n16\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:72: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result\n/root/.pyenv/versions/3.9.18/lib/python3.9/site-packages/prophet/plot.py:73: FutureWarning:\nThe behavior of DatetimeProperties.to_pydatetime is deprecated, in a future version this will return a Series containing python datetime objects instead of an ndarray. To retain the old behavior, call `np.array` on the result",
"output": [
"https://replicate.delivery/pbxt/bWSn7ikJaO7KAZOYQJAYuaCCcfaPHVlLwocehsAQzy08kRWSA/0.png",
"https://replicate.delivery/pbxt/jF4LO1yWMP6CJd4iiSFnCPelVtoRU4FeRIJXRh7FxfbJKjskA/1.png",
"https://replicate.delivery/pbxt/FafGAfX15XtzWEUpM1IB7V20Yr0O5UKcNgQfzVxinimYKjskA/2.png",
"https://replicate.delivery/pbxt/JfSSGea2LAobVUIy7PFnFFg8G1TvVUF4xl6T3plPhzsVlRWSA/3.png",
"https://replicate.delivery/pbxt/yVftuWd22Cy3OaTBNxX51eB8ERgwJqGMElZrvXPgqwwdlRWSA/4.png",
"https://replicate.delivery/pbxt/RD297FCSRgafMajIJ5oJTTuXCZqpaRH1bOfPxLmbyHmmlRWSA/5.png",
"https://replicate.delivery/pbxt/Du97tAJKozIuFddlVplKkgrtwNb1Wt0K5M0TIJ2mik6bZklE/6.png",
"https://replicate.delivery/pbxt/yPXMvy6pcAJmC1JNGxbhxjyWabzfoayJTVE9PpBjw417yILJA/7.png",
"https://replicate.delivery/pbxt/HmlIIflPeOgHxkf06bJ5OzCaLuQsl2v71jDLvHnjfkzCYGZJB/8.png",
"https://replicate.delivery/pbxt/DrSclRC6IGZyIRdoMzY5iwor2JHZApEABapP0GFdLRWiZklE/9.png",
"https://replicate.delivery/pbxt/bdCU9I1GnHqrBlQIHU0QeRrZeerMxYfeHoSufjDIuNGskZklE/10.png",
"https://replicate.delivery/pbxt/6ePUscAc0fgBckk36UnfDwOyjxTDyb8w8bvtciJ9eAqrZGZJB/11.png",
"https://replicate.delivery/pbxt/Hk1xf90RaSw8XqfRuknwVe5hjUOawFD1KWWefFbJbj7h0MySC/12.png",
"https://replicate.delivery/pbxt/fnSm6zTgqjxLcy6birzLj7f8WMrfqd7PX32PLIY24alaNjskA/13.png",
"https://replicate.delivery/pbxt/8g1zwGEDgu6hExzos6KQ3GLAQGKE8mhSQoOU3e7KOvf2mRWSA/14.png",
"https://replicate.delivery/pbxt/AYVmNlsxjqZNJFoUYqL50Gmzzt0VPOZ36tV2MrOIuJEuZklE/0.png",
"https://replicate.delivery/pbxt/oxwBzHCeUPyrQyV6Wu0BT4LUdf2a5kZJh6JKNmer2Wp0NjskA/1.png",
"https://replicate.delivery/pbxt/WFzd7ckspd4wE1SlEbRyT5SwrOJ6eFKbKGAnkOscpAGemRWSA/2.png",
"https://replicate.delivery/pbxt/dbatsAVT9LZJK1rFLobUMehtmi6fbjSTfFRn0Sf46O09bGZJB/3.png",
"https://replicate.delivery/pbxt/iiP3OYWrlNqYPdMKeaFYRp8QBnA8461DgS57f3x5xowCnRWSA/4.png",
"https://replicate.delivery/pbxt/LPGEDvQUlNKOL15VpzoSdJPJS7exMcGDR4J1nFyFLEpizILJA/5.png",
"https://replicate.delivery/pbxt/ggua0RKBnQr8MFUzrLJYIQc3lGDdoLUUIUbuqBKLGdwxZklE/6.png",
"https://replicate.delivery/pbxt/4TFrqoldcjLyGBbttmdAyWRVIHeYrERaNgH6xtqYzKblzILJA/7.png",
"https://replicate.delivery/pbxt/hPw0ZdOJAj7KF5Mx1ncahb9aHoo1fy1Lla6zTYgclW4mzILJA/8.png",
"https://replicate.delivery/pbxt/Z7voCfOpbGSdN6gYoQhNvBRyzzHBb7eU3Tzs1qLeP7wfcGZJB/9.png",
"https://replicate.delivery/pbxt/KSeeBbGK34gfPopeVclCSwuEkxiAW1lpFXHKoiZPRfzR6MySC/10.png",
"https://replicate.delivery/pbxt/RHLivAwfF6Q9OiP1lvgfYhKM02YqeSeD1BZxIK9yGZnadGZJB/11.png",
"https://replicate.delivery/pbxt/FemkyxShFDWgVqzx0ntY1Q2GOFdejyX3sYrkklDdBzOZnRWSA/12.png",
"https://replicate.delivery/pbxt/51eEiNBOLmReik3n6WzBMhj1LS7YztifBSKHaegfjCdo7MySC/13.png",
"https://replicate.delivery/pbxt/u9354CXl7ewNHCPM69xd9Mt3ljteerGQxoDTkORdDC1CPjskA/14.png",
"https://replicate.delivery/pbxt/8Kw10XWtb25WF912nIqktA72fUn7Wfr5svzVtlPC5TEhnRWSA/0.png",
"https://replicate.delivery/pbxt/1USiPPBO0qJdCVuvGJ8K3EhRlC93iGQ7eJHGw6M4cfPhnRWSA/1.png",
"https://replicate.delivery/pbxt/Q1KSzB2XlvKOPd0yUSV5ZXJcpdKumrm2mErqC66VpWu4ZklE/2.png",
"https://replicate.delivery/pbxt/0xgAMzDiysK2NhGDas623nysnm3WEWfrnIQT8Y5p16RxzILJA/3.png",
"https://replicate.delivery/pbxt/jeS08K20sUSFDyAIXNAUIeweVjLCJIWZclgQsRzuLYnFPjskA/4.png",
"https://replicate.delivery/pbxt/dzifqWN5bNQZW6i7bvzn2Q3owigKATXnzOv0vQkGKLGxzILJA/5.png",
"https://replicate.delivery/pbxt/csGMZ4poZpowEdiseI7ySGBvv3RVY6F0TvkiiAB3n9kxzILJA/6.png",
"https://replicate.delivery/pbxt/aQfg8tWFw7RTM6e2ACmA8FtGpFTRDJnpcqisn433eVMHPjskA/7.png",
"https://replicate.delivery/pbxt/hwftQja33XSaaK6BTdbyfZ3sorlaQdohXmhJPTVGVNpjnRWSA/8.png",
"https://replicate.delivery/pbxt/Y6b8mi1CyopeJKUiMZiBJtMbwf73Zg1nfAlxyWpfBsUTeMySC/9.png",
"https://replicate.delivery/pbxt/T6qddGHXMDpFJVCt9fKiZbdqK6qRimgSlHmt51KLMASyzILJA/10.png",
"https://replicate.delivery/pbxt/kz0bLpomke1bC6k0eq6wBWHXSbhy7mRe2kIBBfPShWrUeMySC/11.png",
"https://replicate.delivery/pbxt/fkERMIyd0Jwtf0FkH2Ma95a5w0Feh1g9c8vfyEFDq7EUeMySC/12.png",
"https://replicate.delivery/pbxt/UeBOJ5uWS30OdCPZXtwMmExR9hmo6e6zegwX2ocWVrfYeMySC/13.png",
"https://replicate.delivery/pbxt/V0C8EfsjQVX7FyIjuxoq0BIiQPCI90eZPmk2auwo5CvmnRWSA/14.png",
"https://replicate.delivery/pbxt/Q2pn86sys64jINfcuuMJWNSOP6CdtU5sIMYGXeMUJiNqnRWSA/outputs.zip"
],
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2024-02-13T12:55:21.32523Z",
"started_at": "2024-02-13T12:57:16.372898Z",
"completed_at": "2024-02-13T13:00:30.0353Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/32mlietbz6orc62yscqahxyts4/cancel",
"get": "https://api.replicate.com/v1/predictions/32mlietbz6orc62yscqahxyts4"
},
"metrics": {
"predict_time": 193.662402,
"total_time": 308.71007
}
}