fofr / become-image
Adapt any picture of a face into another image
Prediction
fofr/become-image:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8IDdw5cwydbzzemnw7oiergdwvajuStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- prompt
- princess zelda
- negative_prompt
- prompt_strength
- 2
- number_of_images
- 10
- denoising_strength
- 1
- instant_id_strength
- 1
- image_to_become_noise
- 0.3
- control_depth_strength
- 0.2
- image_to_become_strength
- 0.75
{ "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "prompt": "princess zelda", "image_to_become": "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 10, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.2, "image_to_become_strength": 0.75 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8", { input: { image: "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", prompt: "princess zelda", image_to_become: "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", negative_prompt: "", prompt_strength: 2, number_of_images: 10, denoising_strength: 1, instant_id_strength: 1, image_to_become_noise: 0.3, control_depth_strength: 0.2, image_to_become_strength: 0.75 } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8", input={ "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "prompt": "princess zelda", "image_to_become": "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 10, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.2, "image_to_become_strength": 0.75 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8", "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "prompt": "princess zelda", "image_to_become": "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 10, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.2, "image_to_become_strength": 0.75 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8 \ -i 'image="https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp"' \ -i 'prompt="princess zelda"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg"' \ -i 'negative_prompt=""' \ -i 'prompt_strength=2' \ -i 'number_of_images=10' \ -i 'denoising_strength=1' \ -i 'instant_id_strength=1' \ -i 'image_to_become_noise=0.3' \ -i 'control_depth_strength=0.2' \ -i 'image_to_become_strength=0.75'
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/fofr/become-image@sha256:42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "prompt": "princess zelda", "image_to_become": "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 10, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.2, "image_to_become_strength": 0.75 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-12T14:01:10.544318Z", "created_at": "2024-03-12T13:58:13.529418Z", "data_removed": false, "error": null, "id": "dw5cwydbzzemnw7oiergdwvaju", "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "prompt": "princess zelda", "image_to_become": "https://replicate.delivery/pbxt/KYbVYHgUsqcaL1OSblBdv8trjF0YMF7MDGoiwlRm0giDpMsV/breath-of-the-wild-zelda-featured.jpg", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 10, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.2, "image_to_become_strength": 0.75 }, "logs": "Random seed set to: 606969233\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.jpg\n====================================\nRunning workflow\ngot prompt\nExecuting node 80, title: Load IPAdapter Model, class type: IPAdapterModelLoader\nExecuting node 82, title: Load CLIP Vision, class type: CLIPVisionLoader\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 35, title: Load InstantID Model, class type: InstantIDModelLoader\nExecuting node 36, title: InstantID Face Analysis, class type: InstantIDFaceAnalysis\n\u001b[1;31m2024-03-12 14:00:01.163898304 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 655, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.163911214 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 656, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.163950864 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 657, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.163979454 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 658, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164097974 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 659, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164204384 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 660, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164264134 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 661, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164346244 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 662, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164510074 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 664, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164537504 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 663, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.164569354 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 666, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185752912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 704, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185759992 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 728, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185770182 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 730, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185996202 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 665, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.188750549 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 731, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.188872189 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 705, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.192693435 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 733, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.193469865 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 732, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197471110 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 734, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197486140 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 748, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197509110 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 740, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197512680 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 669, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.201471626 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 737, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.205470232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 738, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.205473432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 743, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.205493342 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 741, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209476809 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 742, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185672102 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 694, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185714082 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 697, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197472850 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 747, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213564314 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 744, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185722133 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 702, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185758322 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 729, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197471100 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 735, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.185741432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 698, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.221471766 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 745, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197484000 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 736, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.197496970 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 739, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.237474950 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 746, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209607918 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 671, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209639118 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 683, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209623998 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 679, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209749558 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 667, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212465235 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 677, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213476294 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 673, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213476404 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 674, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209662118 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 692, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213486534 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 708, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209626588 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 675, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209672938 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 693, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213495874 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 710, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209676828 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 688, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209663128 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 685, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209761648 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 707, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212477365 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 680, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209693168 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 696, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212487115 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 681, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213502284 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 706, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209738098 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 672, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209645778 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 682, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213522574 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 711, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.217478380 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 695, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212507615 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 700, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209614898 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 668, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212496865 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 699, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.261485136 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 749, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209601528 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 678, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209663688 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 686, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209644398 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 691, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213532224 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 712, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.223143394 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 703, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213543114 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 724, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209651688 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 684, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213551624 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 727, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209673308 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 687, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209687858 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 689, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.209681778 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 690, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213513354 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 709, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.212517465 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 701, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.213503764 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 713, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.217473570 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 725, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.217486300 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 726, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.285504431 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 670, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.293573803 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 676, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/antelopev2/1k3d68.onnx landmark_3d_68 ['None', 3, 192, 192] 0.0 1.0\n\u001b[1;31m2024-03-12 14:00:01.891004607 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 756, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891020287 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 757, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891064377 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 758, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891086437 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 759, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891150587 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 760, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891183247 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 761, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891231917 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 762, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891495937 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 763, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.894409724 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 765, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.891606897 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 764, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.894988853 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 773, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.895000843 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 777, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.909489468 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 831, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.894971903 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 769, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905478532 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 767, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905479412 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 766, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.913083784 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 848, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905486862 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 850, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905493382 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 779, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905494862 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 772, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905495562 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 771, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905496672 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 770, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905504892 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 782, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905510102 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 784, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905509952 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 775, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905512032 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 776, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905514082 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 774, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905524012 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 778, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905525282 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 787, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905527462 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 835, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905527612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 788, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.965131362 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 851, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.965346271 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 857, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905540332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 791, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905541092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 783, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905542022 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 836, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/antelopev2/2d106det.onnx landmark_2d_106 ['None', 3, 192, 192] 0.0 1.0\n\u001b[1;31m2024-03-12 14:00:01.905544982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 780, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.969494418 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 852, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905547152 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 795, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.973481983 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 854, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.976845010 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 858, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905555492 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 794, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905556612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 837, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981478205 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 868, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905556912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 786, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905561052 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 785, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905568072 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 796, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981500285 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 872, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905572582 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 790, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905572592 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 838, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905576432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 789, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905583352 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 801, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905587172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 792, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.985490171 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 861, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905587332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 839, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.989473187 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 900, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.989476637 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 862, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905589552 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 793, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.989489377 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 892, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905586972 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 804, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.993476403 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 863, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.993480563 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 901, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.993488933 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 894, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905603392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 840, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905604092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 798, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905599302 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 808, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.997470069 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 895, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.997473659 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 875, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905603562 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 797, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905611452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 809, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.001469915 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 941, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.001474295 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 876, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.001474735 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 870, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.001474005 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 902, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.001487625 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 882, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905615182 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 802, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.005470331 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 885, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905620002 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 841, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.009470727 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 942, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.009473887 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 903, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.009478567 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 883, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905619982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 799, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.009486797 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 905, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.009499137 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 855, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905634162 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 842, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905633492 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 803, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.013470603 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 943, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.013473083 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 906, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905641142 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 811, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.013483473 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 944, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.013491793 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 907, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905631812 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 806, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905647092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 843, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.017471949 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 865, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.017471279 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 908, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905646832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 807, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905663382 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 812, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905674122 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 826, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905678322 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 813, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.021471055 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 879, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.021471245 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 909, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905681312 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 845, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905689602 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 827, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.025468951 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 896, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905723822 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 829, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.029469206 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 897, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905738782 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 830, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905477982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 768, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905478972 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 781, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.041471434 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 904, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.917474030 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 832, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.917479370 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 828, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.045473650 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 860, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.917488190 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 833, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.049472306 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 864, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.917502310 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 834, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.053473922 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 867, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.057469218 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 880, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.929495388 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 846, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.929520338 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 847, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.061470204 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 881, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.065470540 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 922, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.069471826 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 923, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981474475 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 869, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981473095 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 859, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.073477202 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 887, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.073479332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 925, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.073480312 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 856, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.073496792 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 926, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981487585 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 871, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.077481108 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 931, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.081477984 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 932, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.081472944 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 927, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.981487595 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 866, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905571132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 800, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.085478190 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 933, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.085491640 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 929, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.993476033 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 893, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905604162 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 805, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905626252 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 810, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.989476947 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 877, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905645802 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 814, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.089473325 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 930, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.089473725 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 924, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.017469709 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 884, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905658912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 825, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.905663392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 844, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.017483359 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 888, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.973469273 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 853, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:01.929477068 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 849, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.097482768 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 934, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.097620647 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 920, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.017470569 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 945, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.109483885 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 935, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.113475371 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 936, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.085478160 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 928, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.121472753 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 939, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.125471219 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 940, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.137477557 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 873, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.141476513 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 874, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.146374968 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 889, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.149479245 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 890, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.153474081 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 891, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.069469276 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 878, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.069485396 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 886, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.101476634 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 921, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.117473808 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 937, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.117490277 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 938, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.157482157 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 898, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.157501997 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 899, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/antelopev2/genderage.onnx genderage ['None', 3, 96, 96] 0.0 1.0\n\u001b[1;31m2024-03-12 14:00:02.326496505 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 946, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.340403661 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 947, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.341474960 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 948, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.341482500 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 953, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.341502320 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 949, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.345473816 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 952, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.345479216 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 954, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.345497016 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 966, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.349472112 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 967, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.351329350 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 995, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.353479188 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 969, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.353492618 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 963, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.353479528 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 962, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.357478434 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 986, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.361473140 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 987, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.361496360 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1015, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.361515460 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 964, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365399836 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 950, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365474416 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1016, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365479336 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 955, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365491736 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 982, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.345479326 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 965, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365645546 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 985, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369472732 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 990, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369479661 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 983, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369485481 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 956, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369488172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1018, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369472761 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 951, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373473298 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 961, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373473628 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1019, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373472578 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 984, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373477748 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 958, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.365474426 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 988, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369473612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 968, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.369471892 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1017, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373486928 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 970, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.373507748 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 971, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.374535087 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 960, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.375445046 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 989, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.375547695 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 996, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.377463513 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 957, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.377471193 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 991, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.377471264 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1020, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.377487693 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 992, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.377490213 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 972, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381471940 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1021, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381475470 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 973, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381474630 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 981, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381492380 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 976, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381660180 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1001, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381734709 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1030, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381813619 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1000, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381478450 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 975, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385475765 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 977, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385473895 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1031, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385482045 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 974, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385490525 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1022, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385503685 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 978, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.385689175 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 999, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389471002 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1032, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389476552 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1037, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389478172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 979, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389488392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 994, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389493762 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1024, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389474452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 998, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.390390531 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1033, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389474412 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 993, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.393475037 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1025, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.393475607 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1038, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.393476767 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 980, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.393475017 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 997, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.389474232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1023, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381701740 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1028, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.397477024 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1034, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.397498453 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1002, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.397525624 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1027, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.397497684 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1026, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.401474099 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1004, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.401474869 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1039, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.401489319 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1003, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.405472345 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1035, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.405478516 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1040, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.409475081 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1036, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.381714989 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1029, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:02.421478049 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 959, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/antelopev2/glintr100.onnx recognition ['None', 3, 112, 112] 127.5 127.5\n\u001b[1;31m2024-03-12 14:00:03.255839283 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1048, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.255898433 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1049, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.255948173 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1050, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.255972243 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1051, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.256045273 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1052, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.256085123 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1053, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.256129043 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1054, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.256283653 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1056, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.259033490 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1061, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261485987 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1123, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261487687 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1124, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261497977 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1119, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261498857 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1118, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261531367 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1121, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261551477 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1120, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.261547667 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1122, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.265480243 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1117, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.265495113 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1126, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.265511573 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1128, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.265482313 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1125, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.269485319 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1068, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.269509129 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1131, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.269682499 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1057, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.271265177 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1071, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.265494623 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1127, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.273487575 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1073, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.273503135 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1130, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.273487605 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1129, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.277482171 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1132, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.277494151 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1070, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.277493751 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1058, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.277510431 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1133, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.281486777 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1072, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.281489837 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1140, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.281494287 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1137, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.281507787 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1075, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.281513867 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1134, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.283758825 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1076, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285488332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1062, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285487863 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1078, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289537529 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1095, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289552659 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1096, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285488023 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1069, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285491192 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1138, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285493123 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1135, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285516532 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1074, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285515072 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1104, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285514612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1082, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285517143 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1136, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285532832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1077, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285536452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1105, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285542143 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1084, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.317479220 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1055, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285547332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1080, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285553832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1103, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285560132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1091, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.321474336 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1064, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285565863 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1083, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.325477852 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1067, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.329475678 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1060, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285581232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1092, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285589283 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1086, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.341491836 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1101, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289477289 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1139, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289476729 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1079, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289477919 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1088, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289493949 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1142, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.345486332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1099, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289497189 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1081, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289498719 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1089, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.353481154 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1100, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289517639 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1090, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289522529 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1085, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.289540159 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1087, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.285495132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1141, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.293478355 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1097, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.293489044 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1098, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.293492944 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1065, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.301480396 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1093, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.301480656 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1059, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.301493486 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1094, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.301495556 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1063, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.301509246 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1066, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.309483308 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1102, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2024-03-12 14:00:03.309484058 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1106, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/antelopev2/scrfd_10g_bnkps.onnx detection [1, 3, '?', '?'] 127.5 128.0\nset det-size: (640, 640)\nExecuting node 40, title: Load ControlNet Model, class type: ControlNetLoader\n[] []\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 24, title: Load ControlNet Model, class type: ControlNetLoader\n[] []\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\n/root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/torch/functional.py:507: 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:3549.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\n/root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/insightface/utils/transform.py:68: FutureWarning: `rcond` parameter will change to the default of machine precision times ``max(M, N)`` where M and N are the input matrix dimensions.\nTo use the future default and silence this warning we advise to pass `rcond=None`, to keep using the old, explicitly pass `rcond=-1`.\nP = np.linalg.lstsq(X_homo, Y)[0].T # Affine matrix. 3 x 4\n\u001b[33mINFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting.\u001b[0m\nRequested to load CLIPVisionModelProjection\nLoading 1 new model\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 85, title: Duplicate Image Batch 🎥🅥🅗🅢, class type: VHS_DuplicateImages\nRequested to load AutoencoderKLExecuting node 51, title: VAE Encode, class type: VAEEncode\nLoading 1 new model\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]/root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/torchsde/_brownian/brownian_interval.py:608: UserWarning: Should have tb<=t1 but got tb=14.614644050598145 and t1=14.614643.\nwarnings.warn(f\"Should have {tb_name}<=t1 but got {tb_name}={tb} and t1={self._end}.\")\n 25%|██▌ | 1/4 [00:06<00:20, 6.81s/it]\n 50%|█████ | 2/4 [00:13<00:13, 6.76s/it]\n 75%|███████▌ | 3/4 [00:20<00:06, 6.76s/it]\n100%|██████████| 4/4 [00:23<00:00, 5.43s/it]\n100%|██████████| 4/4 [00:23<00:00, 5.92s/it]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 64.58 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00002_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00003_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00004_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00005_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00006_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00007_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00008_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00009_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00010_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png\nComfyUI_00002_.png\nComfyUI_00003_.png\nComfyUI_00004_.png\nComfyUI_00005_.png\nComfyUI_00006_.png\nComfyUI_00007_.png\nComfyUI_00008_.png\nComfyUI_00009_.png\nComfyUI_00010_.png", "metrics": { "predict_time": 71.265578, "total_time": 177.0149 }, "output": [ "https://replicate.delivery/pbxt/2Zfj4XpgyvRtUysJJLwViTS0on312KNkSQXxLbJewHeERCfJB/ComfyUI_00001_.png", "https://replicate.delivery/pbxt/fLd2gmdN46UHRaL85ZVG9dOR4lT0UgAzzfmPAI2bgvJjIhfkA/ComfyUI_00002_.png", "https://replicate.delivery/pbxt/qSpL0GGqg2apMJILARXxffdzvBJlnzwXc2SkiNmJAMyjIhfkA/ComfyUI_00003_.png", "https://replicate.delivery/pbxt/crptIDlEHbLmIJfyqmyuT2ns3PqPAMfh8YgGbNmsJ7zkIhfkA/ComfyUI_00004_.png", "https://replicate.delivery/pbxt/ZWUenHZ80aSgLSI5pMatjUoCxDD5BUdUzeiAfhIJTIEJRCfJB/ComfyUI_00005_.png", "https://replicate.delivery/pbxt/66W10qNlywKHGtKTwizTNDEvJVn8FJuMyUZNdbmfzJDSkwPJA/ComfyUI_00006_.png", "https://replicate.delivery/pbxt/59B44wRCBU6REZaF5fOH8Ap6aYfQwQIdEeLUINA3VZGLRCfJB/ComfyUI_00007_.png", "https://replicate.delivery/pbxt/NCX9VOF7DuauLJzFYLf5R98Tu5mXsaVbxgjxWf4Akd7lIhfkA/ComfyUI_00008_.png", "https://replicate.delivery/pbxt/Esf4NLVUrRXSXKCucjpkVYm8TJGlVWe6qGMtoOBuMwulIhfkA/ComfyUI_00009_.png", "https://replicate.delivery/pbxt/y83dFwGCBZIqAZPF51PeHMNQYULJaqceYRA2AJNF3SzmIhfkA/ComfyUI_00010_.png" ], "started_at": "2024-03-12T13:59:59.278740Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/dw5cwydbzzemnw7oiergdwvaju", "cancel": "https://api.replicate.com/v1/predictions/dw5cwydbzzemnw7oiergdwvaju/cancel" }, "version": "42cf9559131f57f018bf8cdc239a74f4871c5852045ce8f23b346e4ef8f56aa8" }
Generated inRandom seed set to: 606969233 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.jpg ==================================== Running workflow got prompt Executing node 80, title: Load IPAdapter Model, class type: IPAdapterModelLoader Executing node 82, title: Load CLIP Vision, class type: CLIPVisionLoader Executing node 83, title: Load Image, class type: LoadImage Executing node 35, title: Load InstantID Model, class type: InstantIDModelLoader Executing node 36, title: InstantID Face Analysis, class type: InstantIDFaceAnalysis 2024-03-12 14:00:01.163898304 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 655, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.163911214 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 656, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.163950864 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 657, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.163979454 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 658, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164097974 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 659, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164204384 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 660, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164264134 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 661, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164346244 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 662, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164510074 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 664, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164537504 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 663, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.164569354 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 666, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185752912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 704, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185759992 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 728, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185770182 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 730, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185996202 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 665, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.188750549 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 731, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.188872189 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 705, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.192693435 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 733, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.193469865 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 732, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197471110 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 734, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197486140 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 748, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197509110 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 740, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197512680 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 669, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.201471626 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 737, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.205470232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 738, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.205473432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 743, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.205493342 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 741, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209476809 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 742, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185672102 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 694, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185714082 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 697, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197472850 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 747, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213564314 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 744, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185722133 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 702, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185758322 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 729, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197471100 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 735, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.185741432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 698, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.221471766 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 745, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197484000 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 736, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.197496970 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 739, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.237474950 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 746, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209607918 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 671, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209639118 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 683, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209623998 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 679, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209749558 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 667, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212465235 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 677, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213476294 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 673, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213476404 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 674, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209662118 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 692, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213486534 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 708, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209626588 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 675, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209672938 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 693, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213495874 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 710, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209676828 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 688, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209663128 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 685, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209761648 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 707, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212477365 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 680, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209693168 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 696, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212487115 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 681, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213502284 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 706, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209738098 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 672, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209645778 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 682, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213522574 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 711, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.217478380 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 695, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212507615 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 700, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209614898 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 668, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212496865 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 699, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.261485136 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 749, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209601528 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 678, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209663688 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 686, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209644398 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 691, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213532224 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 712, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.223143394 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 703, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213543114 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 724, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209651688 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 684, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213551624 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 727, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209673308 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 687, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209687858 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 689, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.209681778 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 690, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213513354 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 709, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.212517465 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 701, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.213503764 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 713, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.217473570 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 725, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.217486300 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 726, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.285504431 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 670, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.293573803 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 676, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}} find model: /src/ComfyUI/models/insightface/models/antelopev2/1k3d68.onnx landmark_3d_68 ['None', 3, 192, 192] 0.0 1.0 2024-03-12 14:00:01.891004607 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 756, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891020287 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 757, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891064377 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 758, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891086437 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 759, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891150587 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 760, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891183247 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 761, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891231917 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 762, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891495937 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 763, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.894409724 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 765, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.891606897 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 764, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.894988853 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 773, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.895000843 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 777, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.909489468 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 831, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.894971903 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 769, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905478532 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 767, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905479412 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 766, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.913083784 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 848, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905486862 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 850, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905493382 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 779, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905494862 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 772, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905495562 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 771, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905496672 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 770, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905504892 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 782, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905510102 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 784, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905509952 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 775, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905512032 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 776, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905514082 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 774, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905524012 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 778, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905525282 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 787, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905527462 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 835, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905527612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 788, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.965131362 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 851, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.965346271 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 857, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905540332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 791, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905541092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 783, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905542022 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 836, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}} find model: /src/ComfyUI/models/insightface/models/antelopev2/2d106det.onnx landmark_2d_106 ['None', 3, 192, 192] 0.0 1.0 2024-03-12 14:00:01.905544982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 780, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.969494418 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 852, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905547152 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 795, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.973481983 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 854, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.976845010 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 858, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905555492 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 794, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905556612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 837, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981478205 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 868, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905556912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 786, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905561052 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 785, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905568072 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 796, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981500285 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 872, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905572582 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 790, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905572592 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 838, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905576432 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 789, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905583352 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 801, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905587172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 792, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.985490171 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 861, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905587332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 839, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.989473187 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 900, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.989476637 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 862, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905589552 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 793, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.989489377 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 892, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905586972 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 804, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.993476403 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 863, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.993480563 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 901, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.993488933 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 894, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905603392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 840, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905604092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 798, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905599302 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 808, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.997470069 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 895, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.997473659 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 875, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905603562 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 797, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905611452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 809, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.001469915 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 941, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.001474295 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 876, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.001474735 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 870, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.001474005 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 902, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.001487625 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 882, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905615182 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 802, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.005470331 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 885, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905620002 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 841, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.009470727 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 942, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.009473887 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 903, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.009478567 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 883, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905619982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 799, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.009486797 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 905, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.009499137 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 855, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905634162 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 842, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905633492 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 803, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.013470603 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 943, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.013473083 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 906, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905641142 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 811, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.013483473 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 944, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.013491793 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 907, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905631812 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 806, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905647092 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 843, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.017471949 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 865, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.017471279 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 908, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905646832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 807, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905663382 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 812, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905674122 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 826, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905678322 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 813, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.021471055 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 879, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.021471245 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 909, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905681312 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 845, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905689602 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 827, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.025468951 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 896, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905723822 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 829, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.029469206 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 897, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905738782 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 830, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905477982 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 768, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905478972 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 781, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.041471434 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 904, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.917474030 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 832, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.917479370 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 828, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.045473650 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 860, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.917488190 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 833, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.049472306 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 864, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.917502310 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 834, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.053473922 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 867, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.057469218 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 880, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.929495388 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 846, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.929520338 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 847, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.061470204 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 881, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.065470540 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 922, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.069471826 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 923, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981474475 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 869, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981473095 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 859, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.073477202 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 887, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.073479332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 925, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.073480312 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 856, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.073496792 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 926, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981487585 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 871, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.077481108 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 931, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.081477984 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 932, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.081472944 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 927, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.981487595 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 866, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905571132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 800, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.085478190 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 933, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.085491640 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 929, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.993476033 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 893, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905604162 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 805, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905626252 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 810, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.989476947 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 877, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905645802 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 814, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.089473325 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 930, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.089473725 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 924, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.017469709 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 884, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905658912 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 825, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.905663392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 844, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.017483359 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 888, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.973469273 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 853, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:01.929477068 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 849, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.097482768 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 934, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.097620647 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 920, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.017470569 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 945, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.109483885 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 935, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.113475371 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 936, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.085478160 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 928, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.121472753 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 939, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.125471219 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 940, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.137477557 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 873, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.141476513 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 874, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.146374968 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 889, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.149479245 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 890, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.153474081 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 891, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.069469276 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 878, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.069485396 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 886, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.101476634 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 921, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.117473808 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 937, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.117490277 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 938, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.157482157 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 898, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.157501997 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 899, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}} find model: /src/ComfyUI/models/insightface/models/antelopev2/genderage.onnx genderage ['None', 3, 96, 96] 0.0 1.0 2024-03-12 14:00:02.326496505 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 946, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.340403661 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 947, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.341474960 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 948, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.341482500 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 953, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.341502320 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 949, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.345473816 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 952, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.345479216 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 954, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.345497016 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 966, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.349472112 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 967, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.351329350 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 995, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.353479188 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 969, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.353492618 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 963, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.353479528 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 962, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.357478434 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 986, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.361473140 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 987, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.361496360 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1015, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.361515460 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 964, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365399836 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 950, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365474416 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1016, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365479336 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 955, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365491736 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 982, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.345479326 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 965, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365645546 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 985, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369472732 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 990, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369479661 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 983, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369485481 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 956, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369488172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1018, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369472761 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 951, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373473298 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 961, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373473628 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1019, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373472578 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 984, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373477748 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 958, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.365474426 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 988, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369473612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 968, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.369471892 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1017, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373486928 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 970, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.373507748 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 971, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.374535087 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 960, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.375445046 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 989, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.375547695 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 996, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.377463513 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 957, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.377471193 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 991, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.377471264 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1020, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.377487693 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 992, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.377490213 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 972, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381471940 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1021, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381475470 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 973, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381474630 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 981, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381492380 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 976, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381660180 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1001, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381734709 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1030, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381813619 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1000, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381478450 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 975, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385475765 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 977, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385473895 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1031, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385482045 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 974, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385490525 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1022, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385503685 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 978, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.385689175 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 999, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389471002 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1032, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389476552 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1037, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389478172 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 979, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389488392 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 994, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389493762 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1024, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389474452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 998, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.390390531 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1033, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389474412 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 993, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.393475037 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1025, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.393475607 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1038, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.393476767 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 980, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.393475017 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 997, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.389474232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1023, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381701740 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1028, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.397477024 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1034, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.397498453 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1002, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.397525624 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1027, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.397497684 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1026, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.401474099 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1004, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.401474869 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1039, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.401489319 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1003, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.405472345 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1035, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.405478516 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1040, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.409475081 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1036, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.381714989 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1029, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:02.421478049 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 959, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}} find model: /src/ComfyUI/models/insightface/models/antelopev2/glintr100.onnx recognition ['None', 3, 112, 112] 127.5 127.5 2024-03-12 14:00:03.255839283 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1048, index: 0, mask: {48, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.255898433 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1049, index: 1, mask: {1, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.255948173 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1050, index: 2, mask: {49, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.255972243 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1051, index: 3, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.256045273 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1052, index: 4, mask: {50, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.256085123 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1053, index: 5, mask: {3, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.256129043 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1054, index: 6, mask: {51, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.256283653 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1056, index: 8, mask: {52, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.259033490 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1061, index: 13, mask: {7, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261485987 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1123, index: 75, mask: {38, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261487687 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1124, index: 76, mask: {86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261497977 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1119, index: 71, mask: {36, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261498857 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1118, index: 70, mask: {83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261531367 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1121, index: 73, mask: {37, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261551477 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1120, index: 72, mask: {84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.261547667 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1122, index: 74, mask: {85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.265480243 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1117, index: 69, mask: {35, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.265495113 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1126, index: 78, mask: {87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.265511573 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1128, index: 80, mask: {88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.265482313 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1125, index: 77, mask: {39, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.269485319 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1068, index: 20, mask: {58, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.269509129 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1131, index: 83, mask: {42, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.269682499 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1057, index: 9, mask: {5, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.271265177 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1071, index: 23, mask: {12, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.265494623 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1127, index: 79, mask: {40, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.273487575 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1073, index: 25, mask: {13, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.273503135 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1130, index: 82, mask: {89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.273487605 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1129, index: 81, mask: {41, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.277482171 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1132, index: 84, mask: {90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.277494151 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1070, index: 22, mask: {59, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.277493751 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1058, index: 10, mask: {53, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.277510431 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1133, index: 85, mask: {43, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.281486777 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1072, index: 24, mask: {60, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.281489837 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1140, index: 92, mask: {94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.281494287 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1137, index: 89, mask: {45, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.281507787 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1075, index: 27, mask: {14, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.281513867 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1134, index: 86, mask: {91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.283758825 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1076, index: 28, mask: {62, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285488332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1062, index: 14, mask: {55, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285487863 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1078, index: 30, mask: {63, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289537529 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1095, index: 47, mask: {24, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289552659 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1096, index: 48, mask: {72, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285488023 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1069, index: 21, mask: {11, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285491192 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1138, index: 90, mask: {93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285493123 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1135, index: 87, mask: {44, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285516532 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1074, index: 26, mask: {61, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285515072 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1104, index: 56, mask: {76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285514612 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1082, index: 34, mask: {65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285517143 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1136, index: 88, mask: {92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285532832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1077, index: 29, mask: {15, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285536452 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1105, index: 57, mask: {29, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285542143 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1084, index: 36, mask: {66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.317479220 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1055, index: 7, mask: {4, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285547332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1080, index: 32, mask: {64, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285553832 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1103, index: 55, mask: {28, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285560132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1091, index: 43, mask: {22, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.321474336 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1064, index: 16, mask: {56, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285565863 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1083, index: 35, mask: {18, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.325477852 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1067, index: 19, mask: {10, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.329475678 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1060, index: 12, mask: {54, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285581232 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1092, index: 44, mask: {70, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285589283 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1086, index: 38, mask: {67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.341491836 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1101, index: 53, mask: {27, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289477289 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1139, index: 91, mask: {46, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289476729 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1079, index: 31, mask: {16, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289477919 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1088, index: 40, mask: {68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289493949 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1142, index: 94, mask: {95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.345486332 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1099, index: 51, mask: {26, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289497189 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1081, index: 33, mask: {17, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289498719 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1089, index: 41, mask: {21, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.353481154 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1100, index: 52, mask: {74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289517639 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1090, index: 42, mask: {69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289522529 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1085, index: 37, mask: {19, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.289540159 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1087, index: 39, mask: {20, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.285495132 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1141, index: 93, mask: {47, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.293478355 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1097, index: 49, mask: {25, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.293489044 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1098, index: 50, mask: {73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.293492944 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1065, index: 17, mask: {9, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.301480396 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1093, index: 45, mask: {23, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.301480656 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1059, index: 11, mask: {6, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.301493486 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1094, index: 46, mask: {71, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.301495556 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1063, index: 15, mask: {8, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.301509246 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1066, index: 18, mask: {57, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.309483308 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1102, index: 54, mask: {75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. 2024-03-12 14:00:03.309484058 [E:onnxruntime:Default, env.cc:254 ThreadMain] pthread_setaffinity_np failed for thread: 1106, index: 58, mask: {77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}} find model: /src/ComfyUI/models/insightface/models/antelopev2/scrfd_10g_bnkps.onnx detection [1, 3, '?', '?'] 127.5 128.0 set det-size: (640, 640) Executing node 40, title: Load ControlNet Model, class type: ControlNetLoader [] [] Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 24, title: Load ControlNet Model, class type: ControlNetLoader [] [] Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor /root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/torch/functional.py:507: 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:3549.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID /root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/insightface/utils/transform.py:68: FutureWarning: `rcond` parameter will change to the default of machine precision times ``max(M, N)`` where M and N are the input matrix dimensions. To use the future default and silence this warning we advise to pass `rcond=None`, to keep using the old, explicitly pass `rcond=-1`. P = np.linalg.lstsq(X_homo, Y)[0].T # Affine matrix. 3 x 4 INFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting. Requested to load CLIPVisionModelProjection Loading 1 new model Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 85, title: Duplicate Image Batch 🎥🅥🅗🅢, class type: VHS_DuplicateImages Requested to load AutoencoderKLExecuting node 51, title: VAE Encode, class type: VAEEncode Loading 1 new model Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s]/root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/torchsde/_brownian/brownian_interval.py:608: UserWarning: Should have tb<=t1 but got tb=14.614644050598145 and t1=14.614643. warnings.warn(f"Should have {tb_name}<=t1 but got {tb_name}={tb} and t1={self._end}.") 25%|██▌ | 1/4 [00:06<00:20, 6.81s/it] 50%|█████ | 2/4 [00:13<00:13, 6.76s/it] 75%|███████▌ | 3/4 [00:20<00:06, 6.76s/it] 100%|██████████| 4/4 [00:23<00:00, 5.43s/it] 100%|██████████| 4/4 [00:23<00:00, 5.92s/it] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 64.58 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00002_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00003_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00004_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00005_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00006_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00007_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00008_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00009_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00010_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png ComfyUI_00002_.png ComfyUI_00003_.png ComfyUI_00004_.png ComfyUI_00005_.png ComfyUI_00006_.png ComfyUI_00007_.png ComfyUI_00008_.png ComfyUI_00009_.png ComfyUI_00010_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4IDg7bjy5lblamaqgoryqebdwgpnuStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", image_to_become: "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp"'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T13:01:26.691073Z", "created_at": "2024-03-11T13:01:21.393761Z", "data_removed": false, "error": null, "id": "g7bjy5lblamaqgoryqebdwgpnu", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp" }, "logs": "Random seed set to: 1671791149\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.webp\n====================================\nRunning workflow\ngot prompt\nExecuting node 75, title: KSampler, class type: KSampler\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:01, 1.57it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.57it/s]\n 75%|███████▌ | 3/4 [00:01<00:00, 1.59it/s]\n100%|██████████| 4/4 [00:02<00:00, 2.00it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.82it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 2.50 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 5.251643, "total_time": 5.297312 }, "output": [ "https://replicate.delivery/pbxt/MX4yTSJE9L7xEhrn3A2pKin8MmadDQeycch9hfNKiLTlKLfkA/ComfyUI_00001_.png" ], "started_at": "2024-03-11T13:01:21.439430Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/g7bjy5lblamaqgoryqebdwgpnu", "cancel": "https://api.replicate.com/v1/predictions/g7bjy5lblamaqgoryqebdwgpnu/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 1671791149 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.webp ==================================== Running workflow got prompt Executing node 75, title: KSampler, class type: KSampler 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:01, 1.57it/s] 50%|█████ | 2/4 [00:01<00:01, 1.57it/s] 75%|███████▌ | 3/4 [00:01<00:00, 1.59it/s] 100%|██████████| 4/4 [00:02<00:00, 2.00it/s] 100%|██████████| 4/4 [00:02<00:00, 1.82it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 2.50 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4IDzuwxosdboqhk3aj3g4d7vocsviStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", image_to_become: "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png"'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T13:51:58.802759Z", "created_at": "2024-03-11T13:51:04.030340Z", "data_removed": false, "error": null, "id": "zuwxosdboqhk3aj3g4d7vocsvi", "input": { "image": "https://replicate.delivery/pbxt/KYFOJmO2klDLqZOkYpgO7fKpYm94afe115b0hYUHahXj5Stu/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFOJNyo1YrmlDBhbk40UvfBWXOLMnVv4ADvMsP3uqdhAusX/ComfyUI_00001_.png" }, "logs": "Random seed set to: 1248507142\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.png\n====================================\nRunning workflow\ngot prompt\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 51, title: VAE Encode, class type: VAEEncode\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:02, 1.24it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.24it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.55it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.42it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 30.97 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 33.838288, "total_time": 54.772419 }, "output": [ "https://replicate.delivery/pbxt/JYtzCSdl7m7kLBbp925ecWZMXKvAPQ2osZlQl8Bny5te5LfkA/ComfyUI_00001_.png" ], "started_at": "2024-03-11T13:51:24.964471Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/zuwxosdboqhk3aj3g4d7vocsvi", "cancel": "https://api.replicate.com/v1/predictions/zuwxosdboqhk3aj3g4d7vocsvi/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 1248507142 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.png ==================================== Running workflow got prompt Executing node 83, title: Load Image, class type: LoadImage Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 51, title: VAE Encode, class type: VAEEncode Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:02, 1.24it/s] 50%|█████ | 2/4 [00:01<00:01, 1.24it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s] 100%|██████████| 4/4 [00:02<00:00, 1.55it/s] 100%|██████████| 4/4 [00:02<00:00, 1.42it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 30.97 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4IDehquaftbe35tph6yrpivvmtyyaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", image_to_become: "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg"'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T14:07:20.975327Z", "created_at": "2024-03-11T14:06:31.028731Z", "data_removed": false, "error": null, "id": "ehquaftbe35tph6yrpivvmtyya", "input": { "image": "https://replicate.delivery/pbxt/KYFcyIfxD37lphRWx0sXADLyusO3DZHiAGwOHtZ3QYxQcfX4/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFcy1IxPg3gawME7XjN2x15HdpOSMfIZAOGg9FYM063MKua/Mona-Lisa-oil-wood-panel-Leonardo-da-2339129918-1.jpg" }, "logs": "Random seed set to: 2623665360\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.jpg\n====================================\nRunning workflow\ngot prompt\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\n\u001b[33mINFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting.\u001b[0m\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 51, title: VAE Encode, class type: VAEEncode\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:02, 1.23it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.23it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.54it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.41it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 26.56 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 31.090851, "total_time": 49.946596 }, "output": [ "https://replicate.delivery/pbxt/W1jfeWdiiffinS7huuj2epLKniTgtsGovHTR9TJwI5O0Ch5TC/ComfyUI_00001_.png" ], "started_at": "2024-03-11T14:06:49.884476Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ehquaftbe35tph6yrpivvmtyya", "cancel": "https://api.replicate.com/v1/predictions/ehquaftbe35tph6yrpivvmtyya/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 2623665360 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.jpg ==================================== Running workflow got prompt Executing node 83, title: Load Image, class type: LoadImage Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID INFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting. Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 51, title: VAE Encode, class type: VAEEncode Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:02, 1.23it/s] 50%|█████ | 2/4 [00:01<00:01, 1.23it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s] 100%|██████████| 4/4 [00:02<00:00, 1.54it/s] 100%|██████████| 4/4 [00:02<00:00, 1.41it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 26.56 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4ID5ikyo7tbpk3colltcj7yxugi3eStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- prompt
- a person
- negative_prompt
- prompt_strength
- 2
- denoising_strength
- 1
- instant_id_strength
- 1
- image_to_become_noise
- 0.3
- control_depth_strength
- 0.8
- image_to_become_strength
- 0.75
{ "image": "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", "negative_prompt": "", "prompt_strength": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", prompt: "a person", image_to_become: "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", negative_prompt: "", prompt_strength: 2, denoising_strength: 1, instant_id_strength: 1, image_to_become_noise: 0.3, control_depth_strength: 0.8, image_to_become_strength: 0.75 } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", "negative_prompt": "", "prompt_strength": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", "negative_prompt": "", "prompt_strength": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp"' \ -i 'prompt="a person"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png"' \ -i 'negative_prompt=""' \ -i 'prompt_strength=2' \ -i 'denoising_strength=1' \ -i 'instant_id_strength=1' \ -i 'image_to_become_noise=0.3' \ -i 'control_depth_strength=0.8' \ -i 'image_to_become_strength=0.75'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", "negative_prompt": "", "prompt_strength": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T16:14:30.146898Z", "created_at": "2024-03-11T16:13:13.264543Z", "data_removed": false, "error": null, "id": "5ikyo7tbpk3colltcj7yxugi3e", "input": { "image": "https://replicate.delivery/pbxt/KYHYkpGoENDsDBsVbERbk6dwpn8f7E91Mve3rcJmwRXus4Cb/0_1.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYHYkU3bODzwjogH5KnJ1TVLXlcHvaxS0OrkWK9QJzRbzLXP/2024-02-11--13-49-24-u-q3-fofr_peel_p50_b448c6c5-866a-4a46-8cc1-244d591d240e.png", "negative_prompt": "", "prompt_strength": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }, "logs": "Random seed set to: 2479607342\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.png\n====================================\nRunning workflow\ngot prompt\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\n\u001b[33mINFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting.\u001b[0m\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 51, title: VAE Encode, class type: VAEEncode\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:02, 1.10it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.17it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.17it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.48it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.35it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 26.77 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 29.729574, "total_time": 76.882355 }, "output": [ "https://replicate.delivery/pbxt/Uwe0yw2qhBSxUyblkbH5pV3MiEHIijEVVia26ey82EUkfbeJB/ComfyUI_00001_.png" ], "started_at": "2024-03-11T16:14:00.417324Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/5ikyo7tbpk3colltcj7yxugi3e", "cancel": "https://api.replicate.com/v1/predictions/5ikyo7tbpk3colltcj7yxugi3e/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 2479607342 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.png ==================================== Running workflow got prompt Executing node 83, title: Load Image, class type: LoadImage Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID INFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting. Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 51, title: VAE Encode, class type: VAEEncode Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:02, 1.10it/s] 50%|█████ | 2/4 [00:01<00:01, 1.17it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.17it/s] 100%|██████████| 4/4 [00:02<00:00, 1.48it/s] 100%|██████████| 4/4 [00:02<00:00, 1.35it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 26.77 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4IDeyc6hgdbcf6ngnncyuuemqbf64StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", image_to_become: "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png"'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T14:15:50.336586Z", "created_at": "2024-03-11T14:15:44.009573Z", "data_removed": false, "error": null, "id": "eyc6hgdbcf6ngnncyuuemqbf64", "input": { "image": "https://replicate.delivery/pbxt/KYFlgqSwlpUUo8sNn6WkKkWbgSVFAOoCmVaSI5zltuVM1WNe/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFlgTMYwtYlGayWpUyWr1K82GzgDwxLDftZMYEQMJOJbq7L/replicate-prediction-6da3fldbhkwkmaeba4bhzif72m.png" }, "logs": "Random seed set to: 906199532\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.png\n====================================\nRunning workflow\ngot prompt\nExecuting node 75, title: KSampler, class type: KSampler\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:02, 1.23it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.23it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.53it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.41it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 3.22 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 6.28671, "total_time": 6.327013 }, "output": [ "https://replicate.delivery/pbxt/vcLrVf18OG1uaS3jJeGVd9wl5t2REuM3fU3A7Yfveg8iCi5TC/ComfyUI_00001_.png" ], "started_at": "2024-03-11T14:15:44.049876Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/eyc6hgdbcf6ngnncyuuemqbf64", "cancel": "https://api.replicate.com/v1/predictions/eyc6hgdbcf6ngnncyuuemqbf64/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 906199532 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.png ==================================== Running workflow got prompt Executing node 75, title: KSampler, class type: KSampler 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:02, 1.23it/s] 50%|█████ | 2/4 [00:01<00:01, 1.23it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s] 100%|██████████| 4/4 [00:02<00:00, 1.53it/s] 100%|██████████| 4/4 [00:02<00:00, 1.41it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 3.22 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4ID2wy5xkdbn3zhjhmujtk4pcktluStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", { input: { image: "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", image_to_become: "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", input={ "image": "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4", "input": { "image": "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4 \ -i 'image="https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg"'
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/fofr/become-image@sha256:b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-03-11T14:18:59.785567Z", "created_at": "2024-03-11T14:18:21.198742Z", "data_removed": false, "error": null, "id": "2wy5xkdbn3zhjhmujtk4pcktlu", "input": { "image": "https://replicate.delivery/pbxt/KYFoBTcecGDJxqaLteTG4NKj6ULxoMKewHxqZ50KqftYLP7Y/0_3.webp", "image_to_become": "https://replicate.delivery/pbxt/KYFoBZMM7k3ZEmgB8rU5cok5MRjHsnkLEEEEEIT95zYFwqwG/Self-portrait-with-Straw-Hat-1887-88-857x1024.jpg" }, "logs": "Random seed set to: 646322262\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.jpg\n====================================\nRunning workflow\ngot prompt\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\n\u001b[33mINFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting.\u001b[0m\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 51, title: VAE Encode, class type: VAEEncode\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:02, 1.24it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.23it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.55it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.42it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 26.68 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 29.577306, "total_time": 38.586825 }, "output": [ "https://replicate.delivery/pbxt/VF0yJulc7rbSD9au4r1Jhl7NxqgYWxX2OyQAFwpi0lu0EznE/ComfyUI_00001_.png" ], "started_at": "2024-03-11T14:18:30.208261Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/2wy5xkdbn3zhjhmujtk4pcktlu", "cancel": "https://api.replicate.com/v1/predictions/2wy5xkdbn3zhjhmujtk4pcktlu/cancel" }, "version": "b3603f9e44466e2084a54088815992183886e65307caf3dba8dbc39164d19bc4" }
Generated inRandom seed set to: 646322262 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.jpg ==================================== Running workflow got prompt Executing node 83, title: Load Image, class type: LoadImage Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID INFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting. Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 51, title: VAE Encode, class type: VAEEncode Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:02, 1.24it/s] 50%|█████ | 2/4 [00:01<00:01, 1.23it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.24it/s] 100%|██████████| 4/4 [00:02<00:00, 1.55it/s] 100%|██████████| 4/4 [00:02<00:00, 1.42it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 26.68 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Prediction
fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3IDp4g1ahfkksrma0cke9zvgyh32rStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- prompt
- a person
- negative_prompt
- prompt_strength
- 2
- number_of_images
- 2
- denoising_strength
- 1
- instant_id_strength
- 1
- image_to_become_noise
- 0.3
- control_depth_strength
- 0.8
- image_to_become_strength
- 0.75
{ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", { input: { image: "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", prompt: "a person", image_to_become: "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", negative_prompt: "", prompt_strength: 2, number_of_images: 2, denoising_strength: 1, instant_id_strength: 1, image_to_become_noise: 0.3, control_depth_strength: 0.8, image_to_become_strength: 0.75 } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", input={ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3 \ -i 'image="https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp"' \ -i 'prompt="a person"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp"' \ -i 'negative_prompt=""' \ -i 'prompt_strength=2' \ -i 'number_of_images=2' \ -i 'denoising_strength=1' \ -i 'instant_id_strength=1' \ -i 'image_to_become_noise=0.3' \ -i 'control_depth_strength=0.8' \ -i 'image_to_become_strength=0.75'
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/fofr/become-image@sha256:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-11-28T11:20:20.030440Z", "created_at": "2024-11-28T11:20:08.350000Z", "data_removed": false, "error": null, "id": "p4g1ahfkksrma0cke9zvgyh32r", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 2, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }, "logs": "Random seed set to: 2112656190\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.webp\n====================================\nRunning workflow\ngot prompt\nExecuting node 83, title: Load Image, class type: LoadImage\nExecuting node 22, title: Load Image, class type: LoadImage\nExecuting node 67, title: 🔧 Image Resize, class type: ImageResize+\nExecuting node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor\nExecuting node 79, title: Control Net Stacker, class type: Control Net Stacker\nExecuting node 2, title: Efficient Loader, class type: Efficient Loader\nRequested to load SDXLClipModel\nLoading 1 new model\n----------------------------------------\n\u001b[36mEfficient Loader Models Cache:\u001b[0m\nCkpt:\n[1] dreamshaperXL_lightningDPMSDE\nExecuting node 41, title: Apply InstantID, class type: ApplyInstantID\n\u001b[33mINFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting.\u001b[0m\nExecuting node 81, title: Apply IPAdapter, class type: IPAdapterApply\nExecuting node 85, title: Duplicate Image Batch 🎥🅥🅗🅢, class type: VHS_DuplicateImages\nExecuting node 51, title: VAE Encode, class type: VAEEncode\nExecuting node 75, title: KSampler, class type: KSampler\nRequested to load SDXL\nRequested to load ControlNet\nRequested to load ControlNet\nLoading 3 new models\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:01, 1.66it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.66it/s]\n 75%|███████▌ | 3/4 [00:01<00:00, 1.66it/s]\n100%|██████████| 4/4 [00:02<00:00, 2.01it/s]\n100%|██████████| 4/4 [00:02<00:00, 1.87it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 8.11 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00002_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png\nComfyUI_00002_.png", "metrics": { "predict_time": 8.491673097, "total_time": 11.68044 }, "output": [ "https://replicate.delivery/xezq/Ne6zMVL2r8XtRyj05ABds5eoe379DHBqms6pWZdTKG0ofAWPB/ComfyUI_00001_.png", "https://replicate.delivery/xezq/oN4Gsd5ype33WqXP9LZ4idDZlB0gfPSRdHNRMlVT4xV0Pg1TA/ComfyUI_00002_.png" ], "started_at": "2024-11-28T11:20:11.538767Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-ypc5ovsuvni4wo2z5g66vysgrdmgpix2kj4aes2iwtm52kabqkca", "get": "https://api.replicate.com/v1/predictions/p4g1ahfkksrma0cke9zvgyh32r", "cancel": "https://api.replicate.com/v1/predictions/p4g1ahfkksrma0cke9zvgyh32r/cancel" }, "version": "8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3" }
Generated inRandom seed set to: 2112656190 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.webp ==================================== Running workflow got prompt Executing node 83, title: Load Image, class type: LoadImage Executing node 22, title: Load Image, class type: LoadImage Executing node 67, title: 🔧 Image Resize, class type: ImageResize+ Executing node 49, title: AIO Aux Preprocessor, class type: AIO_Preprocessor Executing node 79, title: Control Net Stacker, class type: Control Net Stacker Executing node 2, title: Efficient Loader, class type: Efficient Loader Requested to load SDXLClipModel Loading 1 new model ---------------------------------------- Efficient Loader Models Cache: Ckpt: [1] dreamshaperXL_lightningDPMSDE Executing node 41, title: Apply InstantID, class type: ApplyInstantID INFO: the IPAdapter reference image is not a square, CLIPImageProcessor will resize and crop it at the center. If the main focus of the picture is not in the middle the result might not be what you are expecting. Executing node 81, title: Apply IPAdapter, class type: IPAdapterApply Executing node 85, title: Duplicate Image Batch 🎥🅥🅗🅢, class type: VHS_DuplicateImages Executing node 51, title: VAE Encode, class type: VAEEncode Executing node 75, title: KSampler, class type: KSampler Requested to load SDXL Requested to load ControlNet Requested to load ControlNet Loading 3 new models 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:01, 1.66it/s] 50%|█████ | 2/4 [00:01<00:01, 1.66it/s] 75%|███████▌ | 3/4 [00:01<00:00, 1.66it/s] 100%|██████████| 4/4 [00:02<00:00, 2.01it/s] 100%|██████████| 4/4 [00:02<00:00, 1.87it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 8.11 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}, {'filename': 'ComfyUI_00002_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png ComfyUI_00002_.png
Prediction
fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3IDe8w348fcpdrme0ckea093c5eygStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- prompt
- a person
- negative_prompt
- prompt_strength
- 2
- number_of_images
- 1
- denoising_strength
- 1
- instant_id_strength
- 1
- image_to_become_noise
- 0.3
- control_depth_strength
- 0.8
- image_to_become_strength
- 0.75
{ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 1, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", { input: { image: "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", prompt: "a person", image_to_become: "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", negative_prompt: "", prompt_strength: 2, number_of_images: 1, denoising_strength: 1, instant_id_strength: 1, image_to_become_noise: 0.3, control_depth_strength: 0.8, image_to_become_strength: 0.75 } } ); // 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.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fofr/become-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", input={ "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 1, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run fofr/become-image 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": "fofr/become-image:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 1, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog: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/fofr/become-image@sha256:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3 \ -i 'image="https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp"' \ -i 'prompt="a person"' \ -i 'image_to_become="https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp"' \ -i 'negative_prompt=""' \ -i 'prompt_strength=2' \ -i 'number_of_images=1' \ -i 'denoising_strength=1' \ -i 'instant_id_strength=1' \ -i 'image_to_become_noise=0.3' \ -i 'control_depth_strength=0.8' \ -i 'image_to_become_strength=0.75'
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/fofr/become-image@sha256:8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 1, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-11-28T11:21:13.805480Z", "created_at": "2024-11-28T11:21:12.115000Z", "data_removed": false, "error": null, "id": "e8w348fcpdrme0ckea093c5eyg", "input": { "image": "https://replicate.delivery/pbxt/KYEdDz93eyPMIR0zltb9SzZ4lLTQkH0CfMcmnaGD5wHbA7Dt/MTk4MTczMTkzNzI1Mjg5NjYy.webp", "prompt": "a person", "image_to_become": "https://replicate.delivery/pbxt/KYEdDanJM7WAO228dBjJllUErGYq0ysQXgencMcVMDtNW9sf/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjU4NS12MjE2LXRhbmctYXVtLTAxMC1leWUtYXJ0cHJpbnRzLmpwZw.webp", "negative_prompt": "", "prompt_strength": 2, "number_of_images": 1, "denoising_strength": 1, "instant_id_strength": 1, "image_to_become_noise": 0.3, "control_depth_strength": 0.8, "image_to_become_strength": 0.75 }, "logs": "Random seed set to: 1458577306\nChecking inputs\n✅ /tmp/inputs/image_of_face.webp\n✅ /tmp/inputs/image_to_become.webp\n====================================\nRunning workflow\ngot prompt\nExecuting node 75, title: KSampler, class type: KSampler\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:01, 2.99it/s]\n 50%|█████ | 2/4 [00:00<00:00, 2.98it/s]\n 75%|███████▌ | 3/4 [00:01<00:00, 3.00it/s]\n100%|██████████| 4/4 [00:01<00:00, 3.74it/s]\n100%|██████████| 4/4 [00:01<00:00, 3.42it/s]\nExecuting node 76, title: VAE Decode, class type: VAEDecode\nExecuting node 5, title: Save Image, class type: SaveImage\nPrompt executed in 1.40 seconds\noutputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nContents of /tmp/outputs:\nComfyUI_00001_.png", "metrics": { "predict_time": 1.682142265, "total_time": 1.69048 }, "output": [ "https://replicate.delivery/xezq/u7JuFFgLS6phIlB8GKvpHQkCqrELTvLqfoTeIbCB7seShArnA/ComfyUI_00001_.png" ], "started_at": "2024-11-28T11:21:12.123337Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-daeec4kc3iw6oenbfenitdub3of3drsnuxfecvje7nli4d3cbsua", "get": "https://api.replicate.com/v1/predictions/e8w348fcpdrme0ckea093c5eyg", "cancel": "https://api.replicate.com/v1/predictions/e8w348fcpdrme0ckea093c5eyg/cancel" }, "version": "8d0b076a2aff3904dfcec3253c778e0310a68f78483c4699c7fd800f3051d2b3" }
Generated inRandom seed set to: 1458577306 Checking inputs ✅ /tmp/inputs/image_of_face.webp ✅ /tmp/inputs/image_to_become.webp ==================================== Running workflow got prompt Executing node 75, title: KSampler, class type: KSampler 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:01, 2.99it/s] 50%|█████ | 2/4 [00:00<00:00, 2.98it/s] 75%|███████▌ | 3/4 [00:01<00:00, 3.00it/s] 100%|██████████| 4/4 [00:01<00:00, 3.74it/s] 100%|██████████| 4/4 [00:01<00:00, 3.42it/s] Executing node 76, title: VAE Decode, class type: VAEDecode Executing node 5, title: Save Image, class type: SaveImage Prompt executed in 1.40 seconds outputs: {'5': {'images': [{'filename': 'ComfyUI_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== Contents of /tmp/outputs: ComfyUI_00001_.png
Want to make some of these yourself?
Run this model