VikramSingh178 commited on
Commit
2ea463e
1 Parent(s): f5e6569
Diffree DELETED
@@ -1 +0,0 @@
1
- Subproject commit 9842a0c896c73140d817d13856ee19f6eb9436c9
 
 
__pycache__/config_settings.cpython-310.pyc ADDED
Binary file (598 Bytes). View file
 
api/models/__init__.py DELETED
File without changes
api/models/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (130 Bytes)
 
api/models/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (161 Bytes)
 
api/models/__pycache__/painting.cpython-310.pyc DELETED
Binary file (545 Bytes)
 
api/models/__pycache__/sdxl_input.cpython-310.pyc DELETED
Binary file (510 Bytes)
 
api/models/__pycache__/sdxl_input.cpython-311.pyc DELETED
Binary file (691 Bytes)
 
api/models/painting.py DELETED
@@ -1,11 +0,0 @@
1
- from pydantic import BaseModel
2
- from fastapi import Form
3
-
4
-
5
- class InpaintingRequest(BaseModel):
6
- prompt: str
7
- negative_prompt: str
8
- num_inference_steps: int
9
- strength: float
10
- guidance_scale: float
11
-
 
 
 
 
 
 
 
 
 
 
 
 
api/models/sdxl_input.py DELETED
@@ -1,12 +0,0 @@
1
-
2
- from pydantic import BaseModel
3
-
4
-
5
-
6
- class InputFormat(BaseModel):
7
- prompt: str
8
- num_inference_steps: int
9
- guidance_scale: float
10
- negative_prompt: str
11
- num_images: int
12
- mode: str
 
 
 
 
 
 
 
 
 
 
 
 
 
configs/__pycache__/tti_settings.cpython-310.pyc ADDED
Binary file (1.11 kB). View file
 
configs/inpainting.yaml DELETED
@@ -1,12 +0,0 @@
1
- segmentation_model: 'facebook/sam-vit-large'
2
- detection_model: 'yolov8l'
3
- model: 'kandinsky-community/kandinsky-2-2-decoder-inpaint'
4
- target_width: 1920
5
- target_height: 1080
6
- prompt: 'product is on the kitchen floor , ultrarealistic lighting , commercial, award , winning photography'
7
- negative_prompt: 'low resolution , bad resolution'
8
- roi_scale: 0.5
9
- strength: 0.7
10
- guidance_scale: 7.5
11
- num_inference_steps: 600
12
- output_path: '../outputs'
 
 
 
 
 
 
 
 
 
 
 
 
 
picpilot.egg-info/SOURCES.txt CHANGED
@@ -3,9 +3,6 @@ README.md
3
  setup.py
4
  api/__init__.py
5
  api/endpoints.py
6
- api/models/__init__.py
7
- api/models/painting.py
8
- api/models/sdxl_input.py
9
  picpilot.egg-info/PKG-INFO
10
  picpilot.egg-info/SOURCES.txt
11
  picpilot.egg-info/dependency_links.txt
@@ -13,11 +10,15 @@ picpilot.egg-info/top_level.txt
13
  scripts/__init__.py
14
  scripts/api_utils.py
15
  scripts/config.py
 
 
16
  scripts/inpainting_pipeline.py
17
  scripts/load_pipeline.py
 
18
  scripts/products10k_captions.py
19
  scripts/s3_manager.py
20
  scripts/sdxl_lora_inference.py
21
  scripts/sdxl_lora_tuner.py
22
  ui/__init__.py
23
- ui/ui.py
 
 
3
  setup.py
4
  api/__init__.py
5
  api/endpoints.py
 
 
 
6
  picpilot.egg-info/PKG-INFO
7
  picpilot.egg-info/SOURCES.txt
8
  picpilot.egg-info/dependency_links.txt
 
10
  scripts/__init__.py
11
  scripts/api_utils.py
12
  scripts/config.py
13
+ scripts/controlnet_outpainting.py
14
+ scripts/image_to_video.py
15
  scripts/inpainting_pipeline.py
16
  scripts/load_pipeline.py
17
+ scripts/outpainting.py
18
  scripts/products10k_captions.py
19
  scripts/s3_manager.py
20
  scripts/sdxl_lora_inference.py
21
  scripts/sdxl_lora_tuner.py
22
  ui/__init__.py
23
+ ui/ui.py
24
+ ui/vars.py
scripts/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (127 Bytes). View file
 
scripts/__pycache__/api_utils.cpython-310.pyc ADDED
Binary file (5.71 kB). View file
 
scripts/__pycache__/config.cpython-310.pyc ADDED
Binary file (2.72 kB). View file
 
scripts/__pycache__/s3_manager.cpython-310.pyc ADDED
Binary file (2.4 kB). View file