Skip to content

Commit

Permalink
fasdf
Browse files Browse the repository at this point in the history
  • Loading branch information
WillReynolds5 committed Sep 16, 2024
1 parent f87f9eb commit e1328b2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions comfyui.log
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,30 @@ Prestartup times for custom nodes:
[2024-09-15 20:57] Speed: 2.3ms preprocess, 9.7ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 512)
[2024-09-15 20:57] Detailer: segment upscale for ((233.66547, 307.26352)) | crop region (700, 921) x 1.1122379793058714 -> (778, 1024)
[2024-09-15 20:57] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:02<00:00, 2.04it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:02<00:00, 1.83it/s]
[2024-09-15 21:09] [rgthree] Using rgthree's optimized recursive execution.
[2024-09-15 21:09] INFO: InsightFace detection resolution lowered to (576, 576).
[2024-09-15 21:09] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:05<00:00, 1.03it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:05<00:00, 1.06s/it]
[2024-09-15 21:09] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:07<00:00, 1.31s/it]100%|████████████████████████████████████████████████████████████████| 5/5 [00:07<00:00, 1.41s/it]
[2024-09-15 21:09] Canva size: 1240x1560
[2024-09-15 21:09] Image size: 824x1040
[2024-09-15 21:09] Scale factor: 2
[2024-09-15 21:09] Upscaling iteration 1 with scale factor 2
[2024-09-15 21:09] Tile size: 1024x1024
[2024-09-15 21:09] Tiles amount: 4
[2024-09-15 21:09] Grid: 2x2
[2024-09-15 21:09] Redraw enabled: True
[2024-09-15 21:09] Seams fix mode: NONE
[2024-09-15 21:10] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:12<00:00, 2.46s/it]100%|████████████████████████████████████████████████████████████████| 5/5 [00:12<00:00, 2.46s/it]
[2024-09-15 21:10] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.39it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.43it/s]
[2024-09-15 21:10] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.38it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.41it/s]
[2024-09-15 21:10] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.38it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00, 1.41it/s]
[2024-09-15 21:10]
[2024-09-15 21:10]
[2024-09-15 21:10] 0: 640x512 1 face, 10.4ms
[2024-09-15 21:10] 0: 640x512 1 face, 10.4ms
[2024-09-15 21:10] Speed: 2.1ms preprocess, 10.4ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 512)
[2024-09-15 21:10] Speed: 2.1ms preprocess, 10.4ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 512)
[2024-09-15 21:10] Detailer: segment upscale for ((235.41885, 313.26855)) | crop region (706, 939) x 1.0909748763291078 -> (770, 1024)
[2024-09-15 21:10] 100%|████████████████████████████████████████████████████████████████| 5/5 [00:02<00:00, 2.22it/s]100%|████████████████████████████████████████████████████████████████| 5/5 [00:02<00:00, 2.01it/s]
[2024-09-15 21:10] [rgthree] Using rgthree's optimized recursive execution.
[2024-09-15 21:10] INFO: InsightFace detection resolution lowered to (576, 576).
Expand Down
2 changes: 1 addition & 1 deletion meeca/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def queue_prompt(prompt):

def load_images():
images = []
output_dir = "../output" # Changed to look one directory back
output_dir = "output" # Changed to look one directory back
if os.path.exists(output_dir):
for filename in os.listdir(output_dir):
if filename.lower().endswith((".png", ".jpg", ".jpeg")):
Expand Down
2 changes: 1 addition & 1 deletion meeca/scratch_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def queue_prompt(prompt):
payload = {"prompt": prompt}
data = json.dumps(payload)
headers = {'Content-Type': 'application/json'}
response = requests.post("http://127.0.0.1:8188/prompt", data=data, headers=headers)
response = requests.post("http://174.52.227.249:8188/prompt", data=data, headers=headers)
print(response.text)

if __name__ == "__main__":
Expand Down

0 comments on commit e1328b2

Please sign in to comment.