agentbot commited on
Commit
19bbc2f
·
verified ·
1 Parent(s): 0e22c7f

Initial commit with folder contents

Browse files
Files changed (2) hide show
  1. pyproject.toml +2 -7
  2. src/pipeline.py +1 -1
pyproject.toml CHANGED
@@ -1,5 +1,5 @@
1
  [build-system]
2
- requires = ["setuptools >= 61.0"]
3
  build-backend = "setuptools.build_meta"
4
 
5
  [project]
@@ -20,13 +20,10 @@ dependencies = [
20
  "omegaconf==2.3.0",
21
  "torch==2.2.2",
22
  "torchvision==0.17.2",
23
- "edge-maxxing-pipelines @ git+https://github.com/womboai/edge-maxxing@8d8ff45863416484b5b4bc547782591bbdfc696a#subdirectory=pipelines",
24
  "huggingface-hub==0.25.2",
25
  "oneflow",
26
  "setuptools>=75.2.0",
27
- "bitsandbytes>=0.44.1",
28
- "stable-fast",
29
- "tomesd>=0.1.3",
30
  ]
31
 
32
  [tool.edge-maxxing]
@@ -37,8 +34,6 @@ models = [
37
 
38
  [tool.uv.sources]
39
  oneflow = { url = "https://github.com/siliconflow/oneflow_releases/releases/download/community_cu118/oneflow-0.9.1.dev20240802%2Bcu118-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }
40
- stable-fast = { url = "https://github.com/chengzeyi/stable-fast/releases/download/v1.0.5/stable_fast-1.0.5+torch222cu121-cp310-cp310-manylinux2014_x86_64.whl" }
41
 
42
  [project.scripts]
43
  start_inference = "main:main"
44
-
 
1
  [build-system]
2
+ requires = ["setuptools >= 75.0"]
3
  build-backend = "setuptools.build_meta"
4
 
5
  [project]
 
20
  "omegaconf==2.3.0",
21
  "torch==2.2.2",
22
  "torchvision==0.17.2",
23
+ "edge-maxxing-pipelines @ git+https://github.com/womboai/edge-maxxing@e713a4f52ca3ea8c1d57ff63c1c08470f4fd0a60#subdirectory=pipelines",
24
  "huggingface-hub==0.25.2",
25
  "oneflow",
26
  "setuptools>=75.2.0",
 
 
 
27
  ]
28
 
29
  [tool.edge-maxxing]
 
34
 
35
  [tool.uv.sources]
36
  oneflow = { url = "https://github.com/siliconflow/oneflow_releases/releases/download/community_cu118/oneflow-0.9.1.dev20240802%2Bcu118-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }
 
37
 
38
  [project.scripts]
39
  start_inference = "main:main"
 
src/pipeline.py CHANGED
@@ -626,7 +626,7 @@ class StableDiffusionXLPipeline_new(
626
  return_dict: bool = True,
627
  cross_attention_kwargs: Optional[Dict[str, Any]] = None,
628
  guidance_rescale: float = 0.0,
629
- end_cfg: float = 0.9,
630
  original_size: Optional[Tuple[int, int]] = None,
631
  crops_coords_top_left: Tuple[int, int] = (0, 0),
632
  target_size: Optional[Tuple[int, int]] = None,
 
626
  return_dict: bool = True,
627
  cross_attention_kwargs: Optional[Dict[str, Any]] = None,
628
  guidance_rescale: float = 0.0,
629
+ end_cfg: float = 1.0,
630
  original_size: Optional[Tuple[int, int]] = None,
631
  crops_coords_top_left: Tuple[int, int] = (0, 0),
632
  target_size: Optional[Tuple[int, int]] = None,