charbel-malo commited on
Commit
ed1fe40
·
verified ·
1 Parent(s): ba5a266

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -36,3 +36,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
36
  3D-Genesis/app/examples/bag.png filter=lfs diff=lfs merge=lfs -text
37
  3D-Genesis/app/examples/ex1.png filter=lfs diff=lfs merge=lfs -text
38
  3D-Genesis/assets/teaser_safe.jpg filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
36
  3D-Genesis/app/examples/bag.png filter=lfs diff=lfs merge=lfs -text
37
  3D-Genesis/app/examples/ex1.png filter=lfs diff=lfs merge=lfs -text
38
  3D-Genesis/assets/teaser_safe.jpg filter=lfs diff=lfs merge=lfs -text
39
+ Unique3D/gradio_app/examples/bag.png filter=lfs diff=lfs merge=lfs -text
40
+ Unique3D/gradio_app/examples/ex1.png filter=lfs diff=lfs merge=lfs -text
41
+ Unique3D/package/nvdiffrast-0.3.1.torch-cp310-cp310-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
42
+ Unique3D/package/onnxruntime_gpu-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl filter=lfs diff=lfs merge=lfs -text
Unique3D/README.md CHANGED
@@ -6,7 +6,7 @@ colorTo: purple
6
  sdk: gradio
7
  python_version: 3.10.8
8
  sdk_version: 4.12.0
9
- app_file: app.py
10
  pinned: true
11
  short_description: Create a 1M faces 3D colored model from an image!
12
  license: mit
 
6
  sdk: gradio
7
  python_version: 3.10.8
8
  sdk_version: 4.12.0
9
+ app_file: gradio_app/gradio_3dgen_steps.py
10
  pinned: true
11
  short_description: Create a 1M faces 3D colored model from an image!
12
  license: mit
Unique3D/ckpt/image2normal/image_encoder/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4b33d864f89a793357a768cb07d0dc18d6a14e6664f4110a0d535ca9ba78da8
3
+ size 607980488
Unique3D/ckpt/image2normal/vae/diffusion_pytorch_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d0c34f57abe50f323040f2366c8e22b941068dcdf53c8eb1d6fafb838afecb7
3
+ size 167335590
Unique3D/ckpt/realesrgan-x4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bc5d0c85207adad8bca26286f0c0007f266f85e7aa7c454c565da9b5f3c940a
3
+ size 67051617
Unique3D/gradio_app/examples/Groot.png ADDED
Unique3D/gradio_app/examples/aaa.png ADDED
Unique3D/gradio_app/examples/abma.png ADDED
Unique3D/gradio_app/examples/akun.png ADDED
Unique3D/gradio_app/examples/anya.png ADDED
Unique3D/gradio_app/examples/bag.png ADDED

Git LFS Details

  • SHA256: ac798ea1f112091c04f5bdfa47c490806fb433a02fe17758aa1f8c55cd64b66e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
Unique3D/gradio_app/examples/ex1.png ADDED

Git LFS Details

  • SHA256: d49ccccd40fe0317c2886b0d36a11667003d17a49cc49d9244208d250de9fe31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.17 MB
Unique3D/gradio_app/examples/ex2.png ADDED
Unique3D/gradio_app/examples/ex4.png ADDED
Unique3D/gradio_app/examples/generated_1715761545_frame0.png ADDED
Unique3D/gradio_app/examples/generated_1715762357_frame0.png ADDED
Unique3D/gradio_app/examples/generated_1715763329_frame0.png ADDED
Unique3D/gradio_app/examples/hatsune_miku.png ADDED
Unique3D/gradio_app/examples/princess-large.png ADDED
Unique3D/gradio_app/gradio_3dgen_steps.py CHANGED
@@ -1,9 +1,9 @@
1
  import gradio as gr
2
  from PIL import Image
3
 
4
- from gradio_app.custom_models.mvimg_prediction import run_mvprediction
5
- from gradio_app.utils import make_image_grid, split_image
6
- from scripts.utils import save_glb_and_video
7
 
8
  def concept_to_multiview(preview_img, input_processing, seed, guidance=1.):
9
  seed = int(seed)
@@ -40,8 +40,8 @@ def concept_to_multiview_ui(concurrency_id="wkl"):
40
  )
41
  return output_rgb, output_front
42
 
43
- from gradio_app.custom_models.normal_prediction import predict_normals
44
- from scripts.multiview_inference import geo_reconstruct
45
  def multiview_to_mesh_v2(rgb_pil, normal_pil, front_pil, do_refine=False, expansion_weight=0.1, init_type="std"):
46
  rgb_pils = split_image(rgb_pil, rows=2)
47
  if normal_pil is not None:
 
1
  import gradio as gr
2
  from PIL import Image
3
 
4
+ from .custom_models.mvimg_prediction import run_mvprediction
5
+ from .utils import make_image_grid, split_image
6
+ from ..scripts.utils import save_glb_and_video
7
 
8
  def concept_to_multiview(preview_img, input_processing, seed, guidance=1.):
9
  seed = int(seed)
 
40
  )
41
  return output_rgb, output_front
42
 
43
+ from .custom_models.normal_prediction import predict_normals
44
+ from ..scripts.multiview_inference import geo_reconstruct
45
  def multiview_to_mesh_v2(rgb_pil, normal_pil, front_pil, do_refine=False, expansion_weight=0.1, init_type="std"):
46
  rgb_pils = split_image(rgb_pil, rows=2)
47
  if normal_pil is not None:
Unique3D/package/nvdiffrast-0.3.1.torch-cp310-cp310-linux_x86_64.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff4a35615ed42148c8579622bee6dca88f7f3be683671524a282fafaf7589682
3
+ size 3079614
Unique3D/package/onnxruntime_gpu-1.17.0-cp310-cp310-manylinux_2_28_x86_64.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11e7f7f781fef16c09ec8d03bfb6da84cf61c54fc59e8a4ea047a90c4a24e88f
3
+ size 162720703
Unique3D/requirements-detail.txt CHANGED
@@ -25,3 +25,4 @@ transformers==4.39.3
25
  trimesh==4.3.0
26
  typeguard==2.13.3
27
  wandb==0.16.6
 
 
25
  trimesh==4.3.0
26
  typeguard==2.13.3
27
  wandb==0.16.6
28
+ rembg
Unique3D/requirements.txt CHANGED
@@ -26,4 +26,5 @@ trimesh
26
  typeguard
27
  wandb
28
  xformers
29
- ninja
 
 
26
  typeguard
27
  wandb
28
  xformers
29
+ ninja
30
+ rembg
requirements-detail.txt CHANGED
@@ -25,3 +25,4 @@ transformers==4.39.3
25
  trimesh==4.3.0
26
  typeguard==2.13.3
27
  wandb==0.16.6
 
 
25
  trimesh==4.3.0
26
  typeguard==2.13.3
27
  wandb==0.16.6
28
+ rembg
requirements.txt CHANGED
@@ -26,4 +26,5 @@ trimesh
26
  typeguard
27
  wandb
28
  xformers
29
- ninja
 
 
26
  typeguard
27
  wandb
28
  xformers
29
+ ninja
30
+ rembg