EVA787797 commited on
Commit
84c9d95
1 Parent(s): 746c525

Add 10 files

Browse files
Art Photography of People and Peach Blossoms_1.0.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff07d0444d446913ee86cdbbd1b29fdcf78c60dcb5c7921367ac37634bb5b67b
3
+ size 6938043264
FLUX-dev-lora-add_details.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f0d6648babfeafa79d67559c163b8f8639a067e6d30d87e0c65b4071db2bca0
3
+ size 687476088
Taskfile.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # https://taskfile.dev
2
+
3
+ version: "3"
4
+
5
+ dotenv:
6
+ - .env
7
+
8
+ tasks:
9
+ default:
10
+ cmds:
11
+ - echo "$PYTHON"
12
+ - echo "$WEBUI"
13
+ - echo "$UV_PYTHON"
14
+ silent: true
15
+
16
+ launch:
17
+ dir: "{{.WEBUI}}"
18
+ cmds:
19
+ - "{{.PYTHON}} launch.py --xformers --api"
20
+ silent: true
21
+
22
+ lint:
23
+ cmds:
24
+ - pre-commit run -a
25
+
26
+ update:
27
+ cmds:
28
+ - "{{.PYTHON}} -m uv pip install -U ultralytics mediapipe ruff pre-commit black devtools pytest hypothesis"
29
+
30
+ update-torch:
31
+ cmds:
32
+ - "{{.PYTHON}} -m uv pip install -U torch torchvision torchaudio -f https://download.pytorch.org/whl/torch_stable.html"
clip_l.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:660c6f5b1abae9dc498ac2d21e1347d2abdb0cf6c0c0c8576cd796491d9a6cdd
3
+ size 246144152
images/a9416306-5343-4ac8-972a-27cad91f3c99.jfif ADDED
Binary file (71.1 kB). View file
 
lora (1).safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a83a924b822b70b5e458d27935ebfa7713edaee04ff9f194209525354031eca
3
+ size 22431400
lora (2).safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a83a924b822b70b5e458d27935ebfa7713edaee04ff9f194209525354031eca
3
+ size 22431400
pre-commit-config (1).yaml ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ci:
2
+ autoupdate_branch: "dev"
3
+
4
+ exclude: ^modules/
5
+
6
+ repos:
7
+ - repo: https://github.com/pre-commit/pre-commit-hooks
8
+ rev: v4.6.0
9
+ hooks:
10
+ - id: check-added-large-files
11
+ args: [--maxkb=100]
12
+ - id: check-merge-conflict
13
+ - id: check-case-conflict
14
+ - id: check-ast
15
+ - id: check-yaml
16
+ - id: trailing-whitespace
17
+ args: [--markdown-linebreak-ext=md]
18
+ - id: end-of-file-fixer
19
+ - id: mixed-line-ending
20
+
21
+ - repo: https://github.com/rbubley/mirrors-prettier
22
+ rev: v3.3.3
23
+ hooks:
24
+ - id: prettier
25
+
26
+ - repo: https://github.com/astral-sh/ruff-pre-commit
27
+ rev: v0.5.7
28
+ hooks:
29
+ - id: ruff
30
+ args: [--fix, --exit-non-zero-on-fix]
31
+ - id: ruff-format