SuperRealCo commited on
Commit
ed60ccb
·
verified ·
1 Parent(s): d4ede31

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. __pycache__/execution.cpython-310.pyc +0 -0
  2. __pycache__/folder_paths.cpython-310.pyc +0 -0
  3. __pycache__/nodes.cpython-310.pyc +0 -0
  4. __pycache__/protocol.cpython-310.pyc +0 -0
  5. __pycache__/server.cpython-310.pyc +0 -0
  6. user/default/ComfyUI-Manager/cache/1742899825_extension-node-map.json +0 -0
  7. user/default/ComfyUI-Manager/cache/746607195_github-stats.json +0 -0
  8. user/default/ComfyUI-Manager/cache/881334633_nodes.json +0 -0
  9. venv/bin/accelerate +8 -0
  10. venv/bin/accelerate-config +8 -0
  11. venv/bin/accelerate-estimate-memory +8 -0
  12. venv/bin/accelerate-launch +8 -0
  13. venv/bin/accelerate-merge-weights +8 -0
  14. venv/bin/backend-test-tools +8 -0
  15. venv/bin/chardetect +8 -0
  16. venv/bin/check-model +8 -0
  17. venv/bin/check-node +8 -0
  18. venv/bin/coloredlogs +8 -0
  19. venv/bin/cpuinfo +8 -0
  20. venv/bin/cygdb +8 -0
  21. venv/bin/cython +8 -0
  22. venv/bin/cythonize +8 -0
  23. venv/bin/deepspeed +6 -0
  24. venv/bin/diffusers-cli +8 -0
  25. venv/bin/ds_bench +20 -0
  26. venv/bin/ds_elastic +40 -0
  27. venv/bin/ds_io +6 -0
  28. venv/bin/ds_nvme_tune +9 -0
  29. venv/bin/ds_report +6 -0
  30. venv/bin/ds_ssh +34 -0
  31. venv/bin/dsr +6 -0
  32. venv/bin/f2py +8 -0
  33. venv/bin/gguf-convert-endian +8 -0
  34. venv/bin/gguf-dump +8 -0
  35. venv/bin/gguf-editor-gui +8 -0
  36. venv/bin/gguf-new-metadata +8 -0
  37. venv/bin/gguf-set-metadata +8 -0
  38. venv/bin/hjson +8 -0
  39. venv/bin/humanfriendly +8 -0
  40. venv/bin/markdown-it +8 -0
  41. venv/bin/numpy-config +8 -0
  42. venv/bin/onnxruntime_test +8 -0
  43. venv/bin/pyftsubset +8 -0
  44. venv/bin/pygmentize +8 -0
  45. venv/bin/ttx +8 -0
  46. venv/bin/typer +8 -0
  47. venv/bin/ultralytics +8 -0
  48. venv/bin/yolo +8 -0
  49. venv/insightface/data/images/Tom_Hanks_54745.png +0 -0
  50. venv/insightface/data/images/mask_black.jpg +0 -0
__pycache__/execution.cpython-310.pyc ADDED
Binary file (29.8 kB). View file
 
__pycache__/folder_paths.cpython-310.pyc ADDED
Binary file (13.2 kB). View file
 
__pycache__/nodes.cpython-310.pyc ADDED
Binary file (74.4 kB). View file
 
__pycache__/protocol.cpython-310.pyc ADDED
Binary file (400 Bytes). View file
 
__pycache__/server.cpython-310.pyc ADDED
Binary file (28.4 kB). View file
 
user/default/ComfyUI-Manager/cache/1742899825_extension-node-map.json ADDED
The diff for this file is too large to render. See raw diff
 
user/default/ComfyUI-Manager/cache/746607195_github-stats.json ADDED
The diff for this file is too large to render. See raw diff
 
user/default/ComfyUI-Manager/cache/881334633_nodes.json ADDED
The diff for this file is too large to render. See raw diff
 
venv/bin/accelerate ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.accelerate_cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/accelerate-config ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.config import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/accelerate-estimate-memory ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.estimate import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/accelerate-launch ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.launch import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/accelerate-merge-weights ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from accelerate.commands.merge import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/backend-test-tools ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from onnx.backend.test.cmd_tools import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/chardetect ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from chardet.cli.chardetect import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/check-model ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from onnx.bin.checker import check_model
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(check_model())
venv/bin/check-node ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from onnx.bin.checker import check_node
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(check_node())
venv/bin/coloredlogs ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from coloredlogs.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/cpuinfo ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from cpuinfo import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/cygdb ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from Cython.Debugger.Cygdb import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/cython ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from Cython.Compiler.Main import setuptools_main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(setuptools_main())
venv/bin/cythonize ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from Cython.Build.Cythonize import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/deepspeed ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from deepspeed.launcher.runner import main
4
+
5
+ if __name__ == '__main__':
6
+ main()
venv/bin/diffusers-cli ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from diffusers.commands.diffusers_cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/ds_bench ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from benchmarks.communication.run_all import main
4
+ from benchmarks.communication.constants import *
5
+ from benchmarks.communication.utils import *
6
+ import os
7
+ import sys
8
+
9
+ # Run the same file with deepspeed launcher. This is required since setuptools will auto-detect python files and insert a python shebang for both 'scripts' and 'entry_points', and this benchmarks require the DS launcher
10
+ required_env = ["RANK", "WORLD_SIZE", "MASTER_ADDR", "MASTER_PORT", "LOCAL_RANK"]
11
+ if not all(map(lambda v: v in os.environ, required_env)):
12
+ import subprocess
13
+ r = subprocess.check_output(["which", "ds_bench"])
14
+ ds_bench_bin = r.decode('utf-8').strip()
15
+ safe_cmd = ["deepspeed", ds_bench_bin] + sys.argv[1:]
16
+ subprocess.run(safe_cmd)
17
+ else:
18
+ args = benchmark_parser().parse_args()
19
+ rank = args.local_rank
20
+ main(args, rank)
venv/bin/ds_elastic ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ import argparse
4
+ import json
5
+
6
+ import deepspeed
7
+ from deepspeed.elasticity import compute_elastic_config
8
+
9
+ if __name__ == '__main__':
10
+ parser = argparse.ArgumentParser()
11
+ parser.add_argument('-c', '--config', type=str, help="DeepSpeed config json")
12
+ parser.add_argument('-w', '--world-size', type=int, default=0, help="Intended/current world size")
13
+ args = parser.parse_args()
14
+ ds_config = json.load(open(args.config, 'r'))
15
+
16
+ ds_version = deepspeed.__version__
17
+
18
+ elastic_config = ds_config['elasticity']
19
+ print('------------------------------------------')
20
+ print("Elasticity config:")
21
+ print('------------------------------------------')
22
+ print(json.dumps(elastic_config, indent=4, sort_keys=True))
23
+
24
+ if args.world_size > 0:
25
+ final_batch_size, valid_gpus, micro_batch_size = compute_elastic_config(ds_config=ds_config,
26
+ target_deepspeed_version=ds_version,
27
+ world_size=args.world_size)
28
+ print('------------------------------------------')
29
+ print(f"Calculated results for world size {args.world_size}:")
30
+ print('------------------------------------------')
31
+ print(f'final_batch_size .... {final_batch_size}')
32
+ print(f'valid_gpus .......... {valid_gpus}')
33
+ print(f'micro_batch_size .... {micro_batch_size}')
34
+ else:
35
+ final_batch_size, valid_gpus = compute_elastic_config(ds_config=ds_config, target_deepspeed_version=ds_version)
36
+ print('------------------------------------------')
37
+ print("Calculated results:")
38
+ print('------------------------------------------')
39
+ print(f'final_batch_size .... {final_batch_size}')
40
+ print(f'valid_gpus .......... {valid_gpus}')
venv/bin/ds_io ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from deepspeed.nvme import ds_io_main
4
+
5
+ if __name__ == '__main__':
6
+ ds_io_main()
venv/bin/ds_nvme_tune ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from deepspeed.nvme import sweep_main, generate_main, parse_sweep_arguments
4
+
5
+ if __name__ == '__main__':
6
+ args = parse_sweep_arguments()
7
+ print(f"Running DeepNVMe performance tuning on {args.nvme_dir}")
8
+ sweep_main(args)
9
+ generate_main(args.log_dir)
venv/bin/ds_report ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from deepspeed.env_report import cli_main
4
+
5
+ if __name__ == '__main__':
6
+ cli_main()
venv/bin/ds_ssh ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Copyright 2020 The Microsoft DeepSpeed Team
4
+
5
+ command -v pdsh
6
+ if [ $? != 0 ]; then
7
+ echo "Cannot find pdsh, please install via 'apt-get install -y pdsh'"
8
+ exit 1
9
+ fi
10
+
11
+ hostfile=/job/hostfile
12
+
13
+ while getopts "h?f:" opt; do
14
+ case "$opt" in
15
+ h|\?)
16
+ echo "-f <hostfile>: specify a hostfile, defaults to /job/hostfile"
17
+ exit 0
18
+ ;;
19
+ f)
20
+ hostfile=$OPTARG
21
+ shift $((OPTIND-1))
22
+ ;;
23
+ esac
24
+ done
25
+
26
+ echo "hostfile=$hostfile"
27
+
28
+ if [ -f $hostfile ]; then
29
+ hosts=`cat $hostfile | awk '{print $1}' | paste -sd "," -`
30
+ export PDSH_RCMD_TYPE=ssh
31
+ pdsh -w ${hosts} $@
32
+ else
33
+ echo "Missing hostfile at ${hostfile}, unable to proceed"
34
+ fi
venv/bin/dsr ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+
3
+ from deepspeed.env_report import cli_main
4
+
5
+ if __name__ == '__main__':
6
+ cli_main()
venv/bin/f2py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from numpy.f2py.f2py2e import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/gguf-convert-endian ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gguf.scripts.gguf_convert_endian import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/gguf-dump ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gguf.scripts.gguf_dump import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/gguf-editor-gui ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gguf.scripts.gguf_editor_gui import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/gguf-new-metadata ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gguf.scripts.gguf_new_metadata import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/gguf-set-metadata ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from gguf.scripts.gguf_set_metadata import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/hjson ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from hjson.tool import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/humanfriendly ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from humanfriendly.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/markdown-it ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from markdown_it.cli.parse import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/numpy-config ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from numpy._configtool import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/onnxruntime_test ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from onnxruntime.tools.onnxruntime_test import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/pyftsubset ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from fontTools.subset import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/pygmentize ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pygments.cmdline import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/ttx ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from fontTools.ttx import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/typer ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from typer.cli import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
venv/bin/ultralytics ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from ultralytics.cfg import entrypoint
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(entrypoint())
venv/bin/yolo ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/workspace/ComfyUI/venv/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from ultralytics.cfg import entrypoint
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(entrypoint())
venv/insightface/data/images/Tom_Hanks_54745.png ADDED
venv/insightface/data/images/mask_black.jpg ADDED