creek

The AI Image Editor of 2030
commit 4e628078cc7298d9512c485c7c277ab6714457ce
parent 7bec11a0160201da9290d6b3b97fa1101c2b8870
Author: maydayv7 <maydayv7@gmail.com>
Date:   Wed,  3 Dec 2025 23:31:57 +0530

Add flask models

Diffstat:
M.gitignore | 6+++++-
Aflask/.gitattributes | 3+++
Dflask/.gitignore | 5-----
Aflask/BiRefNet/.gitignore | 3+++
Aflask/BiRefNet/LICENSE | 3+++
Aflask/BiRefNet/README.md | 3+++
Aflask/BiRefNet/birefnet_fp16.pt | 3+++
Aflask/BiRefNet/config.py | 3+++
Aflask/BiRefNet/dataset.py | 3+++
Aflask/BiRefNet/eval_existingOnes.py | 3+++
Aflask/BiRefNet/evaluation/metrics.py | 3+++
Aflask/BiRefNet/gen_best_ep.py | 3+++
Aflask/BiRefNet/image_proc.py | 3+++
Aflask/BiRefNet/inference.py | 3+++
Aflask/BiRefNet/loss.py | 3+++
Aflask/BiRefNet/make_a_copy.sh | 3+++
Aflask/BiRefNet/models/backbones/build_backbone.py | 3+++
Aflask/BiRefNet/models/backbones/dino_v3.py | 3+++
Aflask/BiRefNet/models/backbones/pvt_v2.py | 3+++
Aflask/BiRefNet/models/backbones/swin_v1.py | 3+++
Aflask/BiRefNet/models/birefnet.py | 3+++
Aflask/BiRefNet/models/modules/aspp.py | 3+++
Aflask/BiRefNet/models/modules/decoder_blocks.py | 3+++
Aflask/BiRefNet/models/modules/deform_conv.py | 3+++
Aflask/BiRefNet/models/modules/lateral_blocks.py | 3+++
Aflask/BiRefNet/models/modules/utils.py | 3+++
Aflask/BiRefNet/requirements.txt | 3+++
Aflask/BiRefNet/rm_cache.sh | 3+++
Aflask/BiRefNet/sub.sh | 3+++
Aflask/BiRefNet/test.sh | 3+++
Aflask/BiRefNet/train.py | 3+++
Aflask/BiRefNet/train.sh | 3+++
Aflask/BiRefNet/train_test.sh | 3+++
Aflask/BiRefNet/tutorials/BiRefNet_inference.ipynb | 3+++
Aflask/BiRefNet/tutorials/BiRefNet_inference_video.ipynb | 3+++
Aflask/BiRefNet/tutorials/BiRefNet_pth2onnx.ipynb | 3+++
Aflask/BiRefNet/utils.py | 3+++
Aflask/Florence-2-4bit-Quantized/added_tokens.json | 3+++
Aflask/Florence-2-4bit-Quantized/config.json | 3+++
Aflask/Florence-2-4bit-Quantized/configuration_florence2.py | 3+++
Aflask/Florence-2-4bit-Quantized/generation_config.json | 3+++
Aflask/Florence-2-4bit-Quantized/merges.txt | 3+++
Aflask/Florence-2-4bit-Quantized/model.safetensors | 3+++
Aflask/Florence-2-4bit-Quantized/modeling_florence2.py | 3+++
Aflask/Florence-2-4bit-Quantized/preprocessor_config.json | 3+++
Aflask/Florence-2-4bit-Quantized/processing_florence2.py | 3+++
Aflask/Florence-2-4bit-Quantized/processor_config.json | 3+++
Aflask/Florence-2-4bit-Quantized/special_tokens_map.json | 3+++
Aflask/Florence-2-4bit-Quantized/tokenizer.json | 3+++
Aflask/Florence-2-4bit-Quantized/tokenizer_config.json | 3+++
Aflask/Florence-2-4bit-Quantized/vocab.json | 3+++
Aflask/local_inpainting_model/feature_extractor/preprocessor_config.json | 3+++
Aflask/local_inpainting_model/model_index.json | 3+++
Aflask/local_inpainting_model/safety_checker/config.json | 3+++
Aflask/local_inpainting_model/safety_checker/model.safetensors | 3+++
Aflask/local_inpainting_model/scheduler/scheduler_config.json | 3+++
Aflask/local_inpainting_model/text_encoder/config.json | 3+++
Aflask/local_inpainting_model/text_encoder/model.safetensors | 3+++
Aflask/local_inpainting_model/tokenizer/merges.txt | 3+++
Aflask/local_inpainting_model/tokenizer/special_tokens_map.json | 3+++
Aflask/local_inpainting_model/tokenizer/tokenizer_config.json | 3+++
Aflask/local_inpainting_model/tokenizer/vocab.json | 3+++
Aflask/local_inpainting_model/unet/config.json | 3+++
Aflask/local_inpainting_model/unet/diffusion_pytorch_model.safetensors | 3+++
Aflask/local_inpainting_model/vae/config.json | 3+++
Aflask/local_inpainting_model/vae/diffusion_pytorch_model.safetensors | 3+++
66 files changed, 197 insertions(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -41,5 +41,9 @@ app.*.map.json /android/app/release # Python +venv python_env/ -/.vscode/ +__pycache__ + +# VS Code +.vscode/ diff --git a/flask/.gitattributes b/flask/.gitattributes @@ -0,0 +1,3 @@ +local_inpainting_model/** filter=lfs diff=lfs merge=lfs -text +Florence-2-4bit-Quantized/** filter=lfs diff=lfs merge=lfs -text +BiRefNet/** filter=lfs diff=lfs merge=lfs -text diff --git a/flask/.gitignore b/flask/.gitignore @@ -1,5 +0,0 @@ -__pycache__ -venv -local_inpainting_model -Florence-2-4bit-Quantized -BiRefNet diff --git a/flask/BiRefNet/.gitignore b/flask/BiRefNet/.gitignore @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7939c19c49e8257b5311fea54e45cb79aa970fa0909629151f6fb3abaeb49b9d +size 2026 diff --git a/flask/BiRefNet/LICENSE b/flask/BiRefNet/LICENSE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a7089e0915fc32bc40067560b398f1e6a7a5958abd7d04eda393629a5acefb +size 1066 diff --git a/flask/BiRefNet/README.md b/flask/BiRefNet/README.md @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b142fd5846651860b86ff640849309f549ad238080501c0220a6cc9da637609d +size 40449 diff --git a/flask/BiRefNet/birefnet_fp16.pt b/flask/BiRefNet/birefnet_fp16.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e0be5d62afd3d1413a863999a06e67cf5084cbe634ecbd81c91448775a0b69 +size 444669483 diff --git a/flask/BiRefNet/config.py b/flask/BiRefNet/config.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6580aacdd661a16575a700561f91eb341d6d2df1440591056f462a1a1b1044aa +size 11365 diff --git a/flask/BiRefNet/dataset.py b/flask/BiRefNet/dataset.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e684883e7ba07c95f0b98f8ebe7d9cb33749583ba043b0fba70c59a29677862d +size 10316 diff --git a/flask/BiRefNet/eval_existingOnes.py b/flask/BiRefNet/eval_existingOnes.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774393da63c66aa2b45e7d2d0830ae256142a951b92b424f2a4bcdacde55dc11 +size 4354 diff --git a/flask/BiRefNet/evaluation/metrics.py b/flask/BiRefNet/evaluation/metrics.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494d096de5e62c09cc19ffed903ada93b094605c432df9278a6eb40875ba7926 +size 40411 diff --git a/flask/BiRefNet/gen_best_ep.py b/flask/BiRefNet/gen_best_ep.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af9a4efe44afecd2a0cc8c2a9ebef8fd9545366ec0a4a22d265d203e86eeb85 +size 4197 diff --git a/flask/BiRefNet/image_proc.py b/flask/BiRefNet/image_proc.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fe45da1e49e10801b70a2e336f4222c5f6c0482fe613227cc5893c7553f045 +size 6836 diff --git a/flask/BiRefNet/inference.py b/flask/BiRefNet/inference.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451d6ee07edf7d05f550fd3bb879696b9af8860cd6cbe7a26d58ea8a920593ec +size 4741 diff --git a/flask/BiRefNet/loss.py b/flask/BiRefNet/loss.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db830cfa50b0c10acf6f24fb18ae11f1b3a6b0839df8883a7734c18ed93199df +size 9269 diff --git a/flask/BiRefNet/make_a_copy.sh b/flask/BiRefNet/make_a_copy.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a620fcb6cef8d2e5932dd58fbea7d39a595894d2a3f62dfdca49dace3963557 +size 428 diff --git a/flask/BiRefNet/models/backbones/build_backbone.py b/flask/BiRefNet/models/backbones/build_backbone.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f262062aea3f841f6e687b8544e98197e9a07d96f5edb67f705942e94104bc9f +size 2611 diff --git a/flask/BiRefNet/models/backbones/dino_v3.py b/flask/BiRefNet/models/backbones/dino_v3.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92743fe56795c25cc4b0954ddb05ba3a396e25efa51cb4bc6dd7c782803bb8 +size 2337 diff --git a/flask/BiRefNet/models/backbones/pvt_v2.py b/flask/BiRefNet/models/backbones/pvt_v2.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31550a9b1d9e1388a4d7d759bfbc2e2065a97e524a8036e618efcfd8941b7d14 +size 17064 diff --git a/flask/BiRefNet/models/backbones/swin_v1.py b/flask/BiRefNet/models/backbones/swin_v1.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a222afabd3f967d3bd95e9a88d902d57a2a0403f042df6b6f28e5d273ff484f0 +size 24710 diff --git a/flask/BiRefNet/models/birefnet.py b/flask/BiRefNet/models/birefnet.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3ccc1db3826e9cb350c5cd76de148d515826f9c19b342d9db617781c494871 +size 16702 diff --git a/flask/BiRefNet/models/modules/aspp.py b/flask/BiRefNet/models/modules/aspp.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa5b8214294cb2a94eeb4cf470ad2a62db65655201152f8e421699493704e32 +size 5058 diff --git a/flask/BiRefNet/models/modules/decoder_blocks.py b/flask/BiRefNet/models/modules/decoder_blocks.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a133e43a24cbeb7e592181c136963eec3af52a660c747dd0bb3cd1f9d5d4c4d5 +size 2525 diff --git a/flask/BiRefNet/models/modules/deform_conv.py b/flask/BiRefNet/models/modules/deform_conv.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16b32456eccf80b6ecd4d5ab64ef7f452b4f686cb9222e09b2de19abfe2bb42 +size 2439 diff --git a/flask/BiRefNet/models/modules/lateral_blocks.py b/flask/BiRefNet/models/modules/lateral_blocks.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ebc38a49438ddd4c705ccc6fa0e8bf903bd1f4d39cab8a4a2c04b7639d09809 +size 354 diff --git a/flask/BiRefNet/models/modules/utils.py b/flask/BiRefNet/models/modules/utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd9561952e14985fb90d9785bba6e68039f8cf84a64b6e6da4d83e22561e8f2 +size 1481 diff --git a/flask/BiRefNet/requirements.txt b/flask/BiRefNet/requirements.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d40d5a37d5427d70ea54aac210c972d54a3c05d99c9be5c024139804761b6b2 +size 155 diff --git a/flask/BiRefNet/rm_cache.sh b/flask/BiRefNet/rm_cache.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb2ff17f559976e2eb0d4901e68b95d096b2eee26487409fd2fc272205a8de2 +size 290 diff --git a/flask/BiRefNet/sub.sh b/flask/BiRefNet/sub.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cc3576b8110a6d824abbdcdd14b727226bc67cc659bb0aafd1ba0b95daf905 +size 602 diff --git a/flask/BiRefNet/test.sh b/flask/BiRefNet/test.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e024bb1c604d8b717b9fa34cf0f2a0d1a17d24e5c90261d93bdb8c62297ad44 +size 710 diff --git a/flask/BiRefNet/train.py b/flask/BiRefNet/train.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b75f7d76ca74966587f676115d786f4944545703e5e4ad0c5f4c988e6d1eeff +size 11050 diff --git a/flask/BiRefNet/train.sh b/flask/BiRefNet/train.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3741a620a69afedbd5893fa3bedf1e5a38a5c463ed18c102eeeea34f637f17e8 +size 1463 diff --git a/flask/BiRefNet/train_test.sh b/flask/BiRefNet/train_test.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c40d976a612b93cdb7f713bf52c88bb13dcd878fd33c8ec52eb0193eca9cc5e +size 244 diff --git a/flask/BiRefNet/tutorials/BiRefNet_inference.ipynb b/flask/BiRefNet/tutorials/BiRefNet_inference.ipynb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d9d18ba6fde5d80fbf0b05375f3a2500ddb91c82991c62c3e0b3778f28f5b2 +size 58955 diff --git a/flask/BiRefNet/tutorials/BiRefNet_inference_video.ipynb b/flask/BiRefNet/tutorials/BiRefNet_inference_video.ipynb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9fb19d779a214eab60c4b100b85e97026e540ce6b22251d8fad8590dd4f8ec +size 61043 diff --git a/flask/BiRefNet/tutorials/BiRefNet_pth2onnx.ipynb b/flask/BiRefNet/tutorials/BiRefNet_pth2onnx.ipynb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129388fdf66b99d4cc7d193a63b61721bba631c368d4fcc668a7120056b7e90d +size 10453 diff --git a/flask/BiRefNet/utils.py b/flask/BiRefNet/utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbdcd4d5dedca7c251e1b5d6848494bb8512899b21f280dbe7a2625fa7043a4 +size 2908 diff --git a/flask/Florence-2-4bit-Quantized/added_tokens.json b/flask/Florence-2-4bit-Quantized/added_tokens.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba67457c577895525996e7a42d7da60a05856506ea4fd25ff9a023a64662f74b +size 22410 diff --git a/flask/Florence-2-4bit-Quantized/config.json b/flask/Florence-2-4bit-Quantized/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161b960decdd1e205c551328cfab21aba2f53a352adc0076b9c1bfb6ac9b23e8 +size 6015 diff --git a/flask/Florence-2-4bit-Quantized/configuration_florence2.py b/flask/Florence-2-4bit-Quantized/configuration_florence2.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2e45a975b3582de05d2f4d963a3e9f9a3d20dccf78d28e0052932a0be93bdf +size 15119 diff --git a/flask/Florence-2-4bit-Quantized/generation_config.json b/flask/Florence-2-4bit-Quantized/generation_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bc064fef2956e8c40be5efa98bc45889bbe2b8015911045ccf7c0e42e1d8d8 +size 292 diff --git a/flask/Florence-2-4bit-Quantized/merges.txt b/flask/Florence-2-4bit-Quantized/merges.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce1664773c50f3e0cc8842619a93edc4624525b728b188a9e0be33b7726adc5 +size 456318 diff --git a/flask/Florence-2-4bit-Quantized/model.safetensors b/flask/Florence-2-4bit-Quantized/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4a6b8ee9e02a4dce366cc56084f9a97c0e0bf07a0da13f4f53e3f971e6d275 +size 200489948 diff --git a/flask/Florence-2-4bit-Quantized/modeling_florence2.py b/flask/Florence-2-4bit-Quantized/modeling_florence2.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5162bf465e61b6e29cc113a467630ec3cb56ed8e4d46eb6207157f10fb9b8a24 +size 127455 diff --git a/flask/Florence-2-4bit-Quantized/preprocessor_config.json b/flask/Florence-2-4bit-Quantized/preprocessor_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1396ec5a0a7adfe1c04fb777b09e8ba753be6dbb5868212ab3c3ef39d91fe031 +size 603 diff --git a/flask/Florence-2-4bit-Quantized/processing_florence2.py b/flask/Florence-2-4bit-Quantized/processing_florence2.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f146023a507c009f425a49ee39aa037f4f25c64e14336e3e4f3f1d7377a68e98 +size 48676 diff --git a/flask/Florence-2-4bit-Quantized/processor_config.json b/flask/Florence-2-4bit-Quantized/processor_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb1a2e487fa8b7521691a3382b5afd92a78e8ea34b385f8824fa07563e92245 +size 130 diff --git a/flask/Florence-2-4bit-Quantized/special_tokens_map.json b/flask/Florence-2-4bit-Quantized/special_tokens_map.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ff172dc769bc1551b1b4211628ce3271643bc60379e4da45d85a9be9332c39 +size 146627 diff --git a/flask/Florence-2-4bit-Quantized/tokenizer.json b/flask/Florence-2-4bit-Quantized/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b466914d9e7f9a39936c9bbe2ac28c86cd8b35c83a905699b01f83178f27c51 +size 3747961 diff --git a/flask/Florence-2-4bit-Quantized/tokenizer_config.json b/flask/Florence-2-4bit-Quantized/tokenizer_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29290b47f21706f6a987cba4abb61e529fd71a607331860ace7c88d47041960a +size 197773 diff --git a/flask/Florence-2-4bit-Quantized/vocab.json b/flask/Florence-2-4bit-Quantized/vocab.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed19656ea1707df69134c4af35c8ceda2cc9860bf2c3495026153a133670ab5e +size 798293 diff --git a/flask/local_inpainting_model/feature_extractor/preprocessor_config.json b/flask/local_inpainting_model/feature_extractor/preprocessor_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205d45875859846dc1ca211b9a19f5db72f47e953b396954ee34d48d8e95c3c6 +size 466 diff --git a/flask/local_inpainting_model/model_index.json b/flask/local_inpainting_model/model_index.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c908f4a7a55be3b21efddd2694f20c07056d6df55aabd0bf1d601c0a2b7163 +size 688 diff --git a/flask/local_inpainting_model/safety_checker/config.json b/flask/local_inpainting_model/safety_checker/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43897735497f5b63df27d78e78af429d90efcf5803706398007e1ef5e2c53d5a +size 1167 diff --git a/flask/local_inpainting_model/safety_checker/model.safetensors b/flask/local_inpainting_model/safety_checker/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ecdfa243b170f9b4cb3eefaf0f64552ef78fc0bf0eb1c5b9675308447184f6 +size 608016280 diff --git a/flask/local_inpainting_model/scheduler/scheduler_config.json b/flask/local_inpainting_model/scheduler/scheduler_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5105cbb737c7567c8743f0242340c6c3c34dce5c6652610a76e8bd44a2b6bac +size 528 diff --git a/flask/local_inpainting_model/text_encoder/config.json b/flask/local_inpainting_model/text_encoder/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cb5894d3c18c0a7f422186062e9f5a160f750fdafe53316a71358006b6f0b5 +size 554 diff --git a/flask/local_inpainting_model/text_encoder/model.safetensors b/flask/local_inpainting_model/text_encoder/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:660c6f5b1abae9dc498ac2d21e1347d2abdb0cf6c0c0c8576cd796491d9a6cdd +size 246144152 diff --git a/flask/local_inpainting_model/tokenizer/merges.txt b/flask/local_inpainting_model/tokenizer/merges.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd691f7c8039210e0fced15865466c65820d09b63988b0174bfe25de299051a +size 524619 diff --git a/flask/local_inpainting_model/tokenizer/special_tokens_map.json b/flask/local_inpainting_model/tokenizer/special_tokens_map.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4864a9376a8401918425bed71fc14fc0e81f9b59ec45c1cf96cccb2df508eac +size 472 diff --git a/flask/local_inpainting_model/tokenizer/tokenizer_config.json b/flask/local_inpainting_model/tokenizer/tokenizer_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19f835a5e93d299b21dfee61c8f6a7cd06f5d83c8e828c013c25d2f36b47ccf +size 735 diff --git a/flask/local_inpainting_model/tokenizer/vocab.json b/flask/local_inpainting_model/tokenizer/vocab.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e089ad92ba36837a0d31433e555c8f45fe601ab5c221d4f607ded32d9f7a4349 +size 1059962 diff --git a/flask/local_inpainting_model/unet/config.json b/flask/local_inpainting_model/unet/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038a57614b4bf87b2c20ffdf6ec39309cd40adf965f79436ea2d1297f7a3c47c +size 1932 diff --git a/flask/local_inpainting_model/unet/diffusion_pytorch_model.safetensors b/flask/local_inpainting_model/unet/diffusion_pytorch_model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b788b4a777748377cc20364eea4ae113c8c42f4468c16bc8c02fdae5492af9 +size 1719154104 diff --git a/flask/local_inpainting_model/vae/config.json b/flask/local_inpainting_model/vae/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bd71bcd70ade38b0367af3087fa3c4a6eb0e090fc70eca16a7282eaea5080d +size 916 diff --git a/flask/local_inpainting_model/vae/diffusion_pytorch_model.safetensors b/flask/local_inpainting_model/vae/diffusion_pytorch_model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbcf0ebe55a0984f5a5e00d8c4521d52359af7229bb4d81890039d2aa16dd7c +size 167335342