Readme
Description
Monitoring crops using Grounding DINO, SAM, and DINOv2.
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";
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: {
DAYS: 35,
FAST: false,
READ: true,
ALIGN: true,
WRITE: true,
TARGET: 150,
CLASSES: "['mango', 'romaine lettuce', 'tomato']",
ARUCO_CM: 7,
ARUCO_PX: 100,
CONTINUE: false,
DISTANCE: 100,
DATES_PATH: "https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv",
READ_IMAGE: true,
ZIP_IMAGES: "https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip",
WRITE_IMAGE: false
}
}
);
// 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=<paste-your-token-here>
Find your API token in your account settings.
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={
"DAYS": 35,
"FAST": False,
"READ": True,
"ALIGN": True,
"WRITE": True,
"TARGET": 150,
"CLASSES": "['mango', 'romaine lettuce', 'tomato']",
"ARUCO_CM": 7,
"ARUCO_PX": 100,
"CONTINUE": False,
"DISTANCE": 100,
"DATES_PATH": "https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv",
"READ_IMAGE": True,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip",
"WRITE_IMAGE": False
}
)
# 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=<paste-your-token-here>
Find your API token in your account settings.
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": {
"DAYS": 35,
"FAST": false,
"READ": true,
"ALIGN": true,
"WRITE": true,
"TARGET": 150,
"CLASSES": "[\'mango\', \'romaine lettuce\', \'tomato\']",
"ARUCO_CM": 7,
"ARUCO_PX": 100,
"CONTINUE": false,
"DISTANCE": 100,
"DATES_PATH": "https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv",
"READ_IMAGE": true,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip",
"WRITE_IMAGE": false
}
}' \
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/greeneryscenery/chronocrop@sha256:abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59 \
-i 'DAYS=35' \
-i 'FAST=false' \
-i 'READ=true' \
-i 'ALIGN=true' \
-i 'WRITE=true' \
-i 'TARGET=150' \
-i $'CLASSES="[\'mango\', \'romaine lettuce\', \'tomato\']"' \
-i 'ARUCO_CM=7' \
-i 'ARUCO_PX=100' \
-i 'CONTINUE=false' \
-i 'DISTANCE=100' \
-i 'DATES_PATH="https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv"' \
-i 'READ_IMAGE=true' \
-i 'ZIP_IMAGES="https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip"' \
-i 'WRITE_IMAGE=false'
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 --gpus=all r8.im/greeneryscenery/chronocrop@sha256:abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "DAYS": 35, "FAST": false, "READ": true, "ALIGN": true, "WRITE": true, "TARGET": 150, "CLASSES": "[\'mango\', \'romaine lettuce\', \'tomato\']", "ARUCO_CM": 7, "ARUCO_PX": 100, "CONTINUE": false, "DISTANCE": 100, "DATES_PATH": "https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv", "READ_IMAGE": true, "ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip", "WRITE_IMAGE": false } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Add a payment method to run this model.
By signing in, you agree to our
terms of service and privacy policy
{
"completed_at": "2024-02-13T12:52:36.510469Z",
"created_at": "2024-02-13T12:44:42.462995Z",
"data_removed": false,
"error": null,
"id": "5nmdcrlb32pixpdwi76nvpec6y",
"input": {
"DAYS": 35,
"FAST": false,
"READ": true,
"ALIGN": true,
"WRITE": true,
"TARGET": 150,
"CLASSES": "['mango', 'romaine lettuce', 'tomato']",
"ARUCO_CM": 7,
"ARUCO_PX": 100,
"CONTINUE": false,
"DISTANCE": 100,
"DATES_PATH": "https://replicate.delivery/pbxt/KOeAgaTk0eXe5hQRjzW1G4hjVARIGBhkljwjdJsn9Rm4oHLe/dates.csv",
"READ_IMAGE": true,
"ZIP_IMAGES": "https://replicate.delivery/pbxt/KOeAg9MVzcKjHconjP5BH6oI1UPIeOaJMmRYaEeGrEywWHf1/0.zip",
"WRITE_IMAGE": false
},
"logs": "Reading Images\nWriting\nWriting 1 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47:13 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47:29 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:47: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48:00 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48:07 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48:15 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48:23 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48: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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:48:52 - 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: ['mango', 'romaine lettuce', 'tomato']\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 16 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:00 - 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: ['mango', 'romaine lettuce', 'tomato']\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 17 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:07 - 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: ['mango', 'romaine lettuce', 'tomato']\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 18 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:14 - 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: ['mango', 'romaine lettuce', 'tomato']\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 19 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:23 - 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: ['mango', 'romaine lettuce', 'tomato']\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 20 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49: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: ['mango', 'romaine lettuce', 'tomato']\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 21 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:44 - 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: ['mango', 'romaine lettuce', 'tomato']\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 22 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:51 - 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: ['mango', 'romaine lettuce', 'tomato']\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 23 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:49:59 - 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: ['mango', 'romaine lettuce', 'tomato']\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 24 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50:06 - 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: ['mango', 'romaine lettuce', 'tomato']\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 25 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50:14 - 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: ['mango', 'romaine lettuce', 'tomato']\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 26 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50: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: ['mango', 'romaine lettuce', 'tomato']\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 27 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50:29 - 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: ['mango', 'romaine lettuce', 'tomato']\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 28 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50: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: ['mango', 'romaine lettuce', 'tomato']\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 29 out of 29.\nLoads checkpoint by local backend from path: Chronocrop/models/detection_model.pth\n02/13 12:50:44 - 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: ['mango', 'romaine lettuce', 'tomato']\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 29.\nReading 2 out of 29.\nReading 3 out of 29.\n12:50:51 - cmdstanpy - INFO - Chain [1] start processing\n12:50:51 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n28\n12:50:51 - cmdstanpy - INFO - Chain [1] start processing\n12:50:52 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n36\n12:50:52 - cmdstanpy - INFO - Chain [1] start processing\n12:50:52 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n31\n12:50:52 - cmdstanpy - INFO - Chain [1] start processing\n12:50:52 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n28\n12:50:52 - cmdstanpy - INFO - Chain [1] start processing\n12:50:53 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\nReading 4 out of 29.\n12:50:55 - cmdstanpy - INFO - Chain [1] start processing\n12:50:55 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n29\n12:50:55 - cmdstanpy - INFO - Chain [1] start processing\n12:50:55 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n29\n12:50:55 - cmdstanpy - INFO - Chain [1] start processing\n12:50:55 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:50:55 - cmdstanpy - INFO - Chain [1] start processing\n12:50:57 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:50:57 - cmdstanpy - INFO - Chain [1] start processing\n12:50:57 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\nReading 5 out of 29.\n12:50:59 - cmdstanpy - INFO - Chain [1] start processing\n12:50:59 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n29\n12:50:59 - cmdstanpy - INFO - Chain [1] start processing\n12:50:59 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:50:59 - cmdstanpy - INFO - Chain [1] start processing\n12:50:59 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:50:59 - cmdstanpy - INFO - Chain [1] start processing\n12:50:59 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n45\n12:50:59 - cmdstanpy - INFO - Chain [1] start processing\n12:51:00 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\nReading 6 out of 29.\n12:51:01 - cmdstanpy - INFO - Chain [1] start processing\n12:51:02 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:02 - cmdstanpy - INFO - Chain [1] start processing\n12:51:02 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:51:02 - cmdstanpy - INFO - Chain [1] start processing\n12:51:02 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:02 - cmdstanpy - INFO - Chain [1] start processing\n12:51:02 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:02 - cmdstanpy - INFO - Chain [1] start processing\n12:51:02 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\nReading 7 out of 29.\n12:51:04 - cmdstanpy - INFO - Chain [1] start processing\n12:51:04 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:51:04 - cmdstanpy - INFO - Chain [1] start processing\n12:51:04 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:51:04 - cmdstanpy - INFO - Chain [1] start processing\n12:51:05 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:05 - cmdstanpy - INFO - Chain [1] start processing\n12:51:05 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n28\n12:51:05 - cmdstanpy - INFO - Chain [1] start processing\n12:51:05 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n30\nReading 8 out of 29.\n12:51:07 - cmdstanpy - INFO - Chain [1] start processing\n12:51:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:07 - cmdstanpy - INFO - Chain [1] start processing\n12:51:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:07 - cmdstanpy - INFO - Chain [1] start processing\n12:51:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:07 - cmdstanpy - INFO - Chain [1] start processing\n12:51:08 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:51:08 - cmdstanpy - INFO - Chain [1] start processing\n12:51:08 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\nReading 9 out of 29.\n12:51:10 - cmdstanpy - INFO - Chain [1] start processing\n12:51:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\n12:51:10 - cmdstanpy - INFO - Chain [1] start processing\n12:51:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:10 - cmdstanpy - INFO - Chain [1] start processing\n12:51:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:51:10 - cmdstanpy - INFO - Chain [1] start processing\n12:51:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:10 - cmdstanpy - INFO - Chain [1] start processing\n12:51:10 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\nReading 10 out of 29.\n12:51:12 - cmdstanpy - INFO - Chain [1] start processing\n12:51:12 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\n12:51:12 - cmdstanpy - INFO - Chain [1] start processing\n12:51:13 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\n12:51:13 - cmdstanpy - INFO - Chain [1] start processing\n12:51:13 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:51:13 - cmdstanpy - INFO - Chain [1] start processing\n12:51:13 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\n12:51:13 - cmdstanpy - INFO - Chain [1] start processing\n12:51:13 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\nReading 11 out of 29.\n12:51:16 - cmdstanpy - INFO - Chain [1] start processing\n12:51:16 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:16 - cmdstanpy - INFO - Chain [1] start processing\n12:51:16 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:16 - cmdstanpy - INFO - Chain [1] start processing\n12:51:16 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:51:16 - cmdstanpy - INFO - Chain [1] start processing\n12:51:16 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:51:16 - cmdstanpy - INFO - Chain [1] start processing\n12:51:17 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\nReading 12 out of 29.\n12:51:19 - cmdstanpy - INFO - Chain [1] start processing\n12:51:19 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:19 - cmdstanpy - INFO - Chain [1] start processing\n12:51:20 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\n12:51:20 - cmdstanpy - INFO - Chain [1] start processing\n12:51:20 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n36\n12:51:20 - cmdstanpy - INFO - Chain [1] start processing\n12:51:20 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\n12:51:20 - cmdstanpy - INFO - Chain [1] start processing\n12:51:20 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\nReading 13 out of 29.\n12:51:22 - cmdstanpy - INFO - Chain [1] start processing\n12:51:23 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:23 - cmdstanpy - INFO - Chain [1] start processing\n12:51:23 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:23 - cmdstanpy - INFO - Chain [1] start processing\n12:51:23 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n45\n12:51:23 - cmdstanpy - INFO - Chain [1] start processing\n12:51:23 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:23 - cmdstanpy - INFO - Chain [1] start processing\n12:51:23 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\nReading 14 out of 29.\n12:51:26 - cmdstanpy - INFO - Chain [1] start processing\n12:51:26 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:51:26 - cmdstanpy - INFO - Chain [1] start processing\n12:51:26 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:26 - cmdstanpy - INFO - Chain [1] start processing\n12:51:26 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\n12:51:26 - cmdstanpy - INFO - Chain [1] start processing\n12:51:26 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:27 - cmdstanpy - INFO - Chain [1] start processing\n12:51:27 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n36\nReading 15 out of 29.\n12:51:29 - cmdstanpy - INFO - Chain [1] start processing\n12:51:29 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:30 - cmdstanpy - INFO - Chain [1] start processing\n12:51:30 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:30 - cmdstanpy - INFO - Chain [1] start processing\n12:51:30 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\n12:51:30 - cmdstanpy - INFO - Chain [1] start processing\n12:51:30 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n36\n12:51:30 - cmdstanpy - INFO - Chain [1] start processing\n12:51:30 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n45\nReading 16 out of 29.\n12:51:32 - cmdstanpy - INFO - Chain [1] start processing\n12:51:32 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:33 - cmdstanpy - INFO - Chain [1] start processing\n12:51:33 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n45\n12:51:33 - cmdstanpy - INFO - Chain [1] start processing\n12:51:33 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:33 - cmdstanpy - INFO - Chain [1] start processing\n12:51:33 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:33 - cmdstanpy - INFO - Chain [1] start processing\n12:51:33 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\nReading 17 out of 29.\n12:51:35 - cmdstanpy - INFO - Chain [1] start processing\n12:51:35 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:35 - cmdstanpy - INFO - Chain [1] start processing\n12:51:36 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:36 - cmdstanpy - INFO - Chain [1] start processing\n12:51:36 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\n12:51:36 - cmdstanpy - INFO - Chain [1] start processing\n12:51:36 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:36 - cmdstanpy - INFO - Chain [1] start processing\n12:51:36 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\nReading 18 out of 29.\n12:51:38 - cmdstanpy - INFO - Chain [1] start processing\n12:51:38 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:38 - cmdstanpy - INFO - Chain [1] start processing\n12:51:38 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\n12:51:38 - cmdstanpy - INFO - Chain [1] start processing\n12:51:39 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\n12:51:39 - cmdstanpy - INFO - Chain [1] start processing\n12:51:39 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n36\n12:51:39 - cmdstanpy - INFO - Chain [1] start processing\n12:51:39 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\nReading 19 out of 29.\n12:51:41 - cmdstanpy - INFO - Chain [1] start processing\n12:51:41 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:41 - cmdstanpy - INFO - Chain [1] start processing\n12:51:41 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\n12:51:41 - cmdstanpy - INFO - Chain [1] start processing\n12:51:41 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n37\n12:51:41 - cmdstanpy - INFO - Chain [1] start processing\n12:51:42 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:42 - cmdstanpy - INFO - Chain [1] start processing\n12:51:42 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\nReading 20 out of 29.\n12:51:44 - cmdstanpy - INFO - Chain [1] start processing\n12:51:44 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n38\n12:51:44 - cmdstanpy - INFO - Chain [1] start processing\n12:51:44 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\n12:51:44 - cmdstanpy - INFO - Chain [1] start processing\n12:51:44 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:44 - cmdstanpy - INFO - Chain [1] start processing\n12:51:44 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:45 - cmdstanpy - INFO - Chain [1] start processing\n12:51:45 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\nReading 21 out of 29.\n12:51:47 - cmdstanpy - INFO - Chain [1] start processing\n12:51:47 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:47 - cmdstanpy - INFO - Chain [1] start processing\n12:51:47 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:47 - cmdstanpy - INFO - Chain [1] start processing\n12:51:47 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\n12:51:47 - cmdstanpy - INFO - Chain [1] start processing\n12:51:47 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:47 - cmdstanpy - INFO - Chain [1] start processing\n12:51:48 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\nReading 22 out of 29.\n12:51:50 - cmdstanpy - INFO - Chain [1] start processing\n12:51:50 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\n12:51:50 - cmdstanpy - INFO - Chain [1] start processing\n12:51:50 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n35\n12:51:50 - cmdstanpy - INFO - Chain [1] start processing\n12:51:50 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:50 - cmdstanpy - INFO - Chain [1] start processing\n12:51:50 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:50 - cmdstanpy - INFO - Chain [1] start processing\n12:51:51 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n34\nReading 23 out of 29.\n12:51:53 - cmdstanpy - INFO - Chain [1] start processing\n12:51:53 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\n12:51:53 - cmdstanpy - INFO - Chain [1] start processing\n12:51:53 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:53 - cmdstanpy - INFO - Chain [1] start processing\n12:51:53 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:53 - cmdstanpy - INFO - Chain [1] start processing\n12:51:53 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:53 - cmdstanpy - INFO - Chain [1] start processing\n12:51:54 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\nReading 24 out of 29.\n12:51:56 - cmdstanpy - INFO - Chain [1] start processing\n12:51:56 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:56 - cmdstanpy - INFO - Chain [1] start processing\n12:51:56 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:51:56 - cmdstanpy - INFO - Chain [1] start processing\n12:51:56 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\n12:51:56 - cmdstanpy - INFO - Chain [1] start processing\n12:51:56 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:51:56 - cmdstanpy - INFO - Chain [1] start processing\n12:51:57 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\nReading 25 out of 29.\n12:51:58 - cmdstanpy - INFO - Chain [1] start processing\n12:51:58 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n33\n12:51:58 - cmdstanpy - INFO - Chain [1] start processing\n12:51:59 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n47\n12:51:59 - cmdstanpy - INFO - Chain [1] start processing\n12:51:59 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n43\nReading 26 out of 29.\n12:52:01 - cmdstanpy - INFO - Chain [1] start processing\n12:52:01 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:52:01 - cmdstanpy - INFO - Chain [1] start processing\n12:52:01 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:52:01 - cmdstanpy - INFO - Chain [1] start processing\n12:52:01 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n47\n12:52:02 - cmdstanpy - INFO - Chain [1] start processing\n12:52:02 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:52:02 - cmdstanpy - INFO - Chain [1] start processing\n12:52:02 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n31\nReading 27 out of 29.\n12:52:04 - cmdstanpy - INFO - Chain [1] start processing\n12:52:05 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\n12:52:05 - cmdstanpy - INFO - Chain [1] start processing\n12:52:05 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n32\n12:52:05 - cmdstanpy - INFO - Chain [1] start processing\n12:52:05 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n47\nReading 28 out of 29.\n12:52:07 - cmdstanpy - INFO - Chain [1] start processing\n12:52:07 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n45\n12:52:07 - cmdstanpy - INFO - Chain [1] start processing\n12:52:07 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n41\n12:52:07 - cmdstanpy - INFO - Chain [1] start processing\n12:52:07 - cmdstanpy - INFO - Chain [1] done processing\nReady to harvest! 🍽\n41\n12:52:07 - cmdstanpy - INFO - Chain [1] start processing\n12:52:07 - cmdstanpy - INFO - Chain [1] done processing\nGrowing well! ⚡\n31\n12:52:07 - cmdstanpy - INFO - Chain [1] start processing\n12:52:08 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\nReading 29 out of 29.\n12:52:10 - cmdstanpy - INFO - Chain [1] start processing\n12:52:10 - cmdstanpy - INFO - Chain [1] done processing\nSlow growth... 🐛\n44\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.',\n12:52:10 - cmdstanpy - INFO - Chain [1] start processing\n12:52:10 - cmdstanpy - INFO - Chain [1] done processing\nReady to harvest! 🍽\n44\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\n12:52:10 - cmdstanpy - INFO - Chain [1] start processing\n12:52:11 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n40\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\n12:52:11 - cmdstanpy - INFO - Chain [1] start processing\n12:52:11 - cmdstanpy - INFO - Chain [1] done processing\nOK! 👌\n39\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\n12:52:11 - cmdstanpy - INFO - Chain [1] start processing\n12:52:11 - cmdstanpy - INFO - Chain [1] done processing\nReady to harvest! 🍽\n39\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",
"metrics": {
"predict_time": 354.495369,
"total_time": 474.047474
},
"output": [
"https://replicate.delivery/pbxt/8nu0dHU5p8oOPhLVaJus3kgOa7NEnKd2XikYHcufJfzpeiskA/0.png",
"https://replicate.delivery/pbxt/ImdBu2vjg04ILVAUErfudSql5l1XNymsZsGkTH5RU7hVvILJA/1.png",
"https://replicate.delivery/pbxt/CUOoxfywqMzUWKCcFlDYWopQtMZAMtM4WjGl4y7ow0kXvILJA/2.png",
"https://replicate.delivery/pbxt/yDJBla7DfDQVZipG4TeHLSvZDnPjojf0CHiLdZ710VXn9iskA/3.png",
"https://replicate.delivery/pbxt/Uh8B16OhC6pCBNdkBnXikc930ikyv3WDqgy18Wltn9eavILJA/4.png",
"https://replicate.delivery/pbxt/v1Gb6J2X7PbhIZLsYZWpPZzean5lOWDPWdRjDfCBVD24eiskA/5.png",
"https://replicate.delivery/pbxt/9t4XtmD1fY1AZyozuclVGCHnBOSflzT5XfD9Ywe4uxQs7FZJB/6.png",
"https://replicate.delivery/pbxt/f2n6uoY4hiTfeIdTCGnjggGQbiVnecMmj3lQF5aZxLq07FZJB/7.png",
"https://replicate.delivery/pbxt/adCq318oLdqZMBYZfPLDlyyWRUsXb5vV7jVkgrMACTLgvILJA/8.png",
"https://replicate.delivery/pbxt/0vyv7iAxeS1sAKmsjunitGP8w9ncbBxLJSbkhKLJqGRivILJA/9.png",
"https://replicate.delivery/pbxt/2AaLtqp71aK0PNo0VBn5l6nbdaPkQBoEdM0losTt378xXklE/10.png",
"https://replicate.delivery/pbxt/lXiwyg1tEDZ8ANhvr98V1OyB0L5OulfUOqMbvH0QhIUlvILJA/11.png",
"https://replicate.delivery/pbxt/KwlieZEiKOwfB0hDadD9jrzQHqbu1YoPecxiEDjrQGZceFZJB/12.png",
"https://replicate.delivery/pbxt/haY1Xr5rOn5JJ9ISiNYEyNyIYaZWxNFtENBjXNd20zc0XklE/13.png",
"https://replicate.delivery/pbxt/1mLZkteYUNSodSDoYdwuH9feVofMLUCwwVo7PWEkwN4T9FZJB/14.png",
"https://replicate.delivery/pbxt/o8Axe4yG9fkk7U146I3aosAobkfpUeKSEArBHJuQ595d9FZJB/15.png",
"https://replicate.delivery/pbxt/B7Sli95YlzpUAxMbFJwUewli9ejpdA108AfmyuTKBUT1eFZJB/16.png",
"https://replicate.delivery/pbxt/DPi1lf89yCxXT6w9TZSveiWJG8BfnxHiUfBm85DB6r629FZJB/17.png",
"https://replicate.delivery/pbxt/q5WzeDbOzfvbiEefboX8i3Hu8Ainx7ehjtUKZxShlvcF8LySC/18.png",
"https://replicate.delivery/pbxt/JngiKbbL1TISEpMbZhEeOSJNXds3GmafUUcAKcqdX0ZjfiskA/19.png",
"https://replicate.delivery/pbxt/6kKcg4lu5xrfSSHT6AX1LPiRjIOClnf0OGBARl48y0AmfiskA/20.png",
"https://replicate.delivery/pbxt/xtkRfGMyKLziFy0NfYCssQ7Hp2sfOZ3biUQXpjrpveqheLySC/21.png",
"https://replicate.delivery/pbxt/jXgUaxMcHfVoJSYAhQ3WuIPiPm3XRXeUuHAfMjpFudFWfFZJB/22.png",
"https://replicate.delivery/pbxt/CVOe5oGeEKutE0hF7rD7bhZoEV8Wy4LJG84ZNHA92g8ufiskA/23.png",
"https://replicate.delivery/pbxt/lypDgPeiLA2VMaqHaKzAJvnM93GheLZZ9jZdZjvjJYvxfiskA/24.png",
"https://replicate.delivery/pbxt/spO7nAXL2nqtB5Pr8JUfR3IdrfKWV4wBsDWeXaqWNVbofFZJB/25.png",
"https://replicate.delivery/pbxt/nUiwzatVNA7JFVrZkCfpe3pm5QxahP63J4XHsIc5CBr3fiskA/26.png",
"https://replicate.delivery/pbxt/0mTFtuqwN3IYClp46dKuV46QisKPW0fkmi1VKLcsd5Z9vILJA/27.png",
"https://replicate.delivery/pbxt/j6Qm00WkeOybBCONVrD8DLOACugrZX4aRkQisIFmqi7efiskA/28.png",
"https://replicate.delivery/pbxt/UzrZe5tMAb0IOK84Yzqhq5OS0KnlfBJhavmc6dJOwQ4efFZJB/0.png",
"https://replicate.delivery/pbxt/PE58BBUge6RocCZicwd8NnokxFIqkZdBRkWTwPseKwe9fFZJB/1.png",
"https://replicate.delivery/pbxt/UKzKck5tQ4ahMpp4VwUpAWSdGCnSOVCfk2lFeRNrzwjefFZJB/2.png",
"https://replicate.delivery/pbxt/H450p6FYyUJjO9aFWZ6w0vyse7i6vgzglhoc5JezifZ9fFZJB/3.png",
"https://replicate.delivery/pbxt/dM65p2eZ5jXZT687vM4zzwSA88yEn7b1q1fvHgfN2hPffLySC/4.png",
"https://replicate.delivery/pbxt/DgIw3CTLUoK8LFMTsqeOjteGi7tmbwTPaAYLbClX9ubffFZJB/5.png",
"https://replicate.delivery/pbxt/6KQGCFjCCrowHJuOKSgD82zbnmILjOsXFRfiT535Y9qffiskA/6.png",
"https://replicate.delivery/pbxt/tUrerTZht0zfUEX67pw9ZdEurAnzWhsG5FPB5LkUWQmffFZJB/7.png",
"https://replicate.delivery/pbxt/bepvufGKJEv4z0kOFiGH2ehmRAsw6X2GVEvfzDfNKYJCAMySC/8.png",
"https://replicate.delivery/pbxt/GYa5vRkHzSZfLCRmmBSH8e0YjMG2gJq7l5JOypZ5h9UAgRWSA/9.png",
"https://replicate.delivery/pbxt/zjkLBKPBVs5ZHhZh22tHM4ZI8jbA2mJvIgfDPASPFWdAwILJA/10.png",
"https://replicate.delivery/pbxt/Bdzr61I9TOoyOlCSlQuf92Wm4KGFxl4zjSg2INDOvBZAwILJA/11.png",
"https://replicate.delivery/pbxt/RN4Z6ExIeqRXKyvAg6rHl2X2nha0OQjBRcebwirVxuLBgRWSA/12.png",
"https://replicate.delivery/pbxt/aQFnjMI4wfzWdSJyxedfyc5BQ57Hcpf7k0X1UiUQYCOGAGZJB/13.png",
"https://replicate.delivery/pbxt/KvSBjJpJLZZAB1xUfq8mnoBiVmPt5S3lQ11hpAGW0AtAwILJA/14.png",
"https://replicate.delivery/pbxt/DmWwy2lvRMb6E5fE5FHpi4Mjtje983jVqRkrvLwAzYEBgRWSA/15.png",
"https://replicate.delivery/pbxt/YMqK4iFS3sYaHV7XXXK4GA3r8MUkAJ9hnmFdMhfOszcBwILJA/16.png",
"https://replicate.delivery/pbxt/u7p8egX9q1XREaYdyfV6UZJzWAaz0sRnoOXebzrctoyEAjskA/17.png",
"https://replicate.delivery/pbxt/pfII3lxLTRQKXCmHGeUnGw1RFqFcxvbz7IP926S8QDKCgRWSA/18.png",
"https://replicate.delivery/pbxt/71uWlxR3AdLJOtxfckdd8oRny9luPZBBK2AdC3C0nSkBwILJA/19.png",
"https://replicate.delivery/pbxt/rgOdnFXaMIqPPpMNlGjSvIeIC0Yv7B2Fj1I9PZeUIPNDgRWSA/20.png",
"https://replicate.delivery/pbxt/87e1hSWy81xhdqRfRlLy758RuvXdcGmDySJGeagSuCzGAjskA/21.png",
"https://replicate.delivery/pbxt/bHkFjETu1vJkElEETxxzhtpKyi5Nfh1LNXm1tiWhXTsBwILJA/22.png",
"https://replicate.delivery/pbxt/9Gx7fNJfxzjtCEsUFMhPZWE2uLEikAi5UmSm4ooEJceIAjskA/23.png",
"https://replicate.delivery/pbxt/hLjuPe3cECwPMigznOEKhAadUdbLOkBZCo91RCex0jbEgRWSA/24.png",
"https://replicate.delivery/pbxt/gm66XokNRipfKq7vusgJSzqi0to01ZGbcM3jz23LbRJCwILJA/25.png",
"https://replicate.delivery/pbxt/rI7awau0cJIuKZ4EVZ3wj3dceIEef2RKQWC8FDQmxZmKAjskA/26.png",
"https://replicate.delivery/pbxt/ekYVTjiHyfqLP05M9V2pBgUUNNs7Hq5keoMFQxAcehesAMySC/27.png",
"https://replicate.delivery/pbxt/KM7yXsfxHiypXiSfE4vfO8PcbAWw0qz76rYovEIPH8EKAjskA/28.png",
"https://replicate.delivery/pbxt/P4MVi5D4FcJQGNnGqXV7hNZPSTxn5Mj7kzN6jQZ7IOWDYklE/outputs.zip"
],
"started_at": "2024-02-13T12:46:42.015100Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/5nmdcrlb32pixpdwi76nvpec6y",
"cancel": "https://api.replicate.com/v1/predictions/5nmdcrlb32pixpdwi76nvpec6y/cancel"
},
"version": "abfefb43019d8376a6faa00c275e33616f8415fc03b070979b5f0422f3561c59"
}
Reading Images
Writing
Writing 1 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 2 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47:13 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 3 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 4 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47:29 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 5 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 6 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 7 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 8 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:00 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 9 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:07 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 10 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:15 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 11 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:23 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 12 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 13 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 14 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 15 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:52 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 16 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:00 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 17 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:07 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 18 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:14 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 19 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:23 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 20 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 21 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:44 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 22 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:51 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 23 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:59 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 24 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:06 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 25 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:14 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 26 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 27 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:29 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 28 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 29 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:44 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Reading
Reading 1 out of 29.
Reading 2 out of 29.
Reading 3 out of 29.
12:50:51 - cmdstanpy - INFO - Chain [1] start processing
12:50:51 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:50:51 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:53 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
Reading 4 out of 29.
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:57 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:50:57 - cmdstanpy - INFO - Chain [1] start processing
12:50:57 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 5 out of 29.
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:51:00 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
Reading 6 out of 29.
12:51:01 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
Reading 7 out of 29.
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:04 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:04 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:05 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:51:05 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
30
Reading 8 out of 29.
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:08 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:08 - cmdstanpy - INFO - Chain [1] start processing
12:51:08 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
Reading 9 out of 29.
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 10 out of 29.
12:51:12 - cmdstanpy - INFO - Chain [1] start processing
12:51:12 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:12 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
Reading 11 out of 29.
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:17 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
Reading 12 out of 29.
12:51:19 - cmdstanpy - INFO - Chain [1] start processing
12:51:19 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:19 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
Reading 13 out of 29.
12:51:22 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
Reading 14 out of 29.
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:27 - cmdstanpy - INFO - Chain [1] start processing
12:51:27 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
Reading 15 out of 29.
12:51:29 - cmdstanpy - INFO - Chain [1] start processing
12:51:29 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
Reading 16 out of 29.
12:51:32 - cmdstanpy - INFO - Chain [1] start processing
12:51:32 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 17 out of 29.
12:51:35 - cmdstanpy - INFO - Chain [1] start processing
12:51:35 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:35 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 18 out of 29.
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:38 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:38 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:39 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:39 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 19 out of 29.
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:42 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:42 - cmdstanpy - INFO - Chain [1] start processing
12:51:42 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 20 out of 29.
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:45 - cmdstanpy - INFO - Chain [1] start processing
12:51:45 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 21 out of 29.
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:48 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 22 out of 29.
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:51 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 23 out of 29.
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:54 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
Reading 24 out of 29.
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:57 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
Reading 25 out of 29.
12:51:58 - cmdstanpy - INFO - Chain [1] start processing
12:51:58 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:58 - cmdstanpy - INFO - Chain [1] start processing
12:51:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
12:51:59 - cmdstanpy - INFO - Chain [1] start processing
12:51:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
Reading 26 out of 29.
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
12:52:02 - cmdstanpy - INFO - Chain [1] start processing
12:52:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:52:02 - cmdstanpy - INFO - Chain [1] start processing
12:52:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
Reading 27 out of 29.
12:52:04 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:52:05 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:52:05 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
Reading 28 out of 29.
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
41
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:08 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 29 out of 29.
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:10 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
/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
fcst_t = fcst['ds'].dt.to_pydatetime()
/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
ax.plot(m.history['ds'].dt.to_pydatetime(), m.history['y'], 'k.',
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:10 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
44
/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
/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
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
/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
/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
12:52:11 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
/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
/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
12:52:11 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
39
/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
/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
This model runs on Nvidia L40S GPU hardware. We don't yet have enough runs of this model to provide performance information.
Monitoring crops using Grounding DINO, SAM, and DINOv2.
This model is not yet booted but ready for API calls. Your first API call will boot the model and may take longer, but after that subsequent responses will be fast.
This model costs approximately $0.28 to run on Replicate, but this varies depending on your inputs.
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
Reading Images
Writing
Writing 1 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 2 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47:13 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 3 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 4 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47:29 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 5 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 6 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 7 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:47: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 8 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:00 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 9 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:07 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 10 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:15 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 11 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:23 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 12 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 13 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 14 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 15 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:48:52 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 16 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:00 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 17 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:07 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 18 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:14 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 19 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:23 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 20 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 21 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:44 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 22 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:51 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 23 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:49:59 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 24 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:06 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 25 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:14 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 26 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 27 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:29 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 28 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50: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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Writing 29 out of 29.
Loads checkpoint by local backend from path: Chronocrop/models/detection_model.pth
02/13 12:50:44 - 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.
/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.
warnings.warn(f'Failed to add {vis_backend.__class__}, '
[nltk_data] Downloading package punkt to ~/nltk_data...
[nltk_data] Package punkt is already up-to-date!
[nltk_data] Downloading package averaged_perceptron_tagger to
[nltk_data] ~/nltk_data...
[nltk_data] Package averaged_perceptron_tagger is already up-to-
[nltk_data] date!
noun_phrases: ['mango', 'romaine lettuce', 'tomato']
/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.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
/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.
warnings.warn(f'position encoding of key is'
Inference ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
results have been saved at outputs
Reading
Reading 1 out of 29.
Reading 2 out of 29.
Reading 3 out of 29.
12:50:51 - cmdstanpy - INFO - Chain [1] start processing
12:50:51 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:50:51 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:52 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:50:52 - cmdstanpy - INFO - Chain [1] start processing
12:50:53 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
Reading 4 out of 29.
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:55 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:50:55 - cmdstanpy - INFO - Chain [1] start processing
12:50:57 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:50:57 - cmdstanpy - INFO - Chain [1] start processing
12:50:57 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 5 out of 29.
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
29
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:50:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:50:59 - cmdstanpy - INFO - Chain [1] start processing
12:51:00 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
Reading 6 out of 29.
12:51:01 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:02 - cmdstanpy - INFO - Chain [1] start processing
12:51:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
Reading 7 out of 29.
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:04 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:04 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:04 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:05 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
28
12:51:05 - cmdstanpy - INFO - Chain [1] start processing
12:51:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
30
Reading 8 out of 29.
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:07 - cmdstanpy - INFO - Chain [1] start processing
12:51:08 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:08 - cmdstanpy - INFO - Chain [1] start processing
12:51:08 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
Reading 9 out of 29.
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:10 - cmdstanpy - INFO - Chain [1] start processing
12:51:10 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 10 out of 29.
12:51:12 - cmdstanpy - INFO - Chain [1] start processing
12:51:12 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:12 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
12:51:13 - cmdstanpy - INFO - Chain [1] start processing
12:51:13 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
Reading 11 out of 29.
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:16 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:16 - cmdstanpy - INFO - Chain [1] start processing
12:51:17 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
Reading 12 out of 29.
12:51:19 - cmdstanpy - INFO - Chain [1] start processing
12:51:19 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:19 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:20 - cmdstanpy - INFO - Chain [1] start processing
12:51:20 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
Reading 13 out of 29.
12:51:22 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:23 - cmdstanpy - INFO - Chain [1] start processing
12:51:23 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
Reading 14 out of 29.
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:26 - cmdstanpy - INFO - Chain [1] start processing
12:51:26 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:27 - cmdstanpy - INFO - Chain [1] start processing
12:51:27 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
Reading 15 out of 29.
12:51:29 - cmdstanpy - INFO - Chain [1] start processing
12:51:29 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:30 - cmdstanpy - INFO - Chain [1] start processing
12:51:30 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
Reading 16 out of 29.
12:51:32 - cmdstanpy - INFO - Chain [1] start processing
12:51:32 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:33 - cmdstanpy - INFO - Chain [1] start processing
12:51:33 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 17 out of 29.
12:51:35 - cmdstanpy - INFO - Chain [1] start processing
12:51:35 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:35 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:36 - cmdstanpy - INFO - Chain [1] start processing
12:51:36 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 18 out of 29.
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:38 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:38 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
12:51:38 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:39 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
36
12:51:39 - cmdstanpy - INFO - Chain [1] start processing
12:51:39 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
Reading 19 out of 29.
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:41 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
37
12:51:41 - cmdstanpy - INFO - Chain [1] start processing
12:51:42 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:42 - cmdstanpy - INFO - Chain [1] start processing
12:51:42 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 20 out of 29.
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
38
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:44 - cmdstanpy - INFO - Chain [1] start processing
12:51:44 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:45 - cmdstanpy - INFO - Chain [1] start processing
12:51:45 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 21 out of 29.
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:47 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:47 - cmdstanpy - INFO - Chain [1] start processing
12:51:48 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 22 out of 29.
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
35
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:50 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:50 - cmdstanpy - INFO - Chain [1] start processing
12:51:51 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
34
Reading 23 out of 29.
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:53 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:53 - cmdstanpy - INFO - Chain [1] start processing
12:51:54 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
Reading 24 out of 29.
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:56 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:51:56 - cmdstanpy - INFO - Chain [1] start processing
12:51:57 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
Reading 25 out of 29.
12:51:58 - cmdstanpy - INFO - Chain [1] start processing
12:51:58 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
33
12:51:58 - cmdstanpy - INFO - Chain [1] start processing
12:51:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
12:51:59 - cmdstanpy - INFO - Chain [1] start processing
12:51:59 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
43
Reading 26 out of 29.
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:52:01 - cmdstanpy - INFO - Chain [1] start processing
12:52:01 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
12:52:02 - cmdstanpy - INFO - Chain [1] start processing
12:52:02 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:52:02 - cmdstanpy - INFO - Chain [1] start processing
12:52:02 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
Reading 27 out of 29.
12:52:04 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
12:52:05 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
32
12:52:05 - cmdstanpy - INFO - Chain [1] start processing
12:52:05 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
47
Reading 28 out of 29.
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
45
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
41
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
41
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:07 - cmdstanpy - INFO - Chain [1] done processing
Growing well! ⚡
31
12:52:07 - cmdstanpy - INFO - Chain [1] start processing
12:52:08 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
Reading 29 out of 29.
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:10 - cmdstanpy - INFO - Chain [1] done processing
Slow growth... 🐛
44
/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
fcst_t = fcst['ds'].dt.to_pydatetime()
/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
ax.plot(m.history['ds'].dt.to_pydatetime(), m.history['y'], 'k.',
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:10 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
44
/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
/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
12:52:10 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
40
/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
/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
12:52:11 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
OK! 👌
39
/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
/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
12:52:11 - cmdstanpy - INFO - Chain [1] start processing
12:52:11 - cmdstanpy - INFO - Chain [1] done processing
Ready to harvest! 🍽
39
/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
/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