paulpanwang commited on
Commit
3a3602f
·
verified ·
1 Parent(s): b823627

Upload folder using huggingface_hub

Browse files
Files changed (21) hide show
  1. app.py +7 -4
  2. gradio_cached_examples/22/component 0/68d04f14532ff058931d/image.webp +0 -0
  3. gradio_cached_examples/22/component 0/6c31219c5299a1a8a2a8/image.webp +0 -0
  4. gradio_cached_examples/22/component 0/7bbbbff26aaf3d3ea1fa/image.webp +0 -0
  5. gradio_cached_examples/22/component 0/80fc601c7cb5370269b8/image.webp +0 -0
  6. gradio_cached_examples/22/component 0/96acb21998cf0d8faa61/image.webp +0 -0
  7. gradio_cached_examples/22/component 0/de29dd88ef0511de5233/image.webp +0 -0
  8. gradio_cached_examples/22/log.csv +6 -3
  9. gradio_cached_examples/22/video/41a19292a48da5f52b1c/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.mp4 +0 -0
  10. gradio_cached_examples/22/video/7090ac155da8cea553f3/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.mp4 +0 -0
  11. gradio_cached_examples/22/video/a9f425a604c082e06c83/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.mp4 +0 -0
  12. gradio_cached_examples/22/video/b38551dea06c8360392d/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.mp4 +0 -0
  13. gradio_cached_examples/22/video/f58cf1a9b8e83a3ae07d/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.mp4 +0 -0
  14. gradio_cached_examples/22/video/fbcccc86750b5bd80e41/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.mp4 +0 -0
  15. gradio_cached_examples/23/component 0/5462172ad5df0049ecf3/image.webp +0 -0
  16. gradio_cached_examples/23/component 0/72bc4d7be40dce243524/image.webp +0 -0
  17. gradio_cached_examples/23/component 0/7dcfd03a2cc9b6b7ce68/image.webp +0 -0
  18. gradio_cached_examples/23/log.csv +3 -1
  19. gradio_cached_examples/23/video/47ef463cb54218af066f/_a cute panda..._013020.mp4 +0 -0
  20. gradio_cached_examples/23/video/5659135046271cb479c4/_an ancient leather-b..._013020.mp4 +0 -0
  21. gradio_cached_examples/23/video/58cbe157dbbdd79f4236/_a toy robot..._013020.mp4 +0 -0
app.py CHANGED
@@ -65,7 +65,8 @@ def process(input_image, prompt='a_high_quality_3D_asset', prompt_neg='poor_qual
65
  # subprocess.run("cd extensions/RaDe-GS/submodules/diff-gaussian-rasterization && python3 setup.py bdist_wheel ", shell=True)
66
 
67
  if input_image is not None:
68
- image_path = os.path.join(TMP_DIR, "input_image.png")
 
69
  image_name = image_path.split('/')[-1].split('.')[0] + "_rgba"
70
  input_image.save(image_path)
71
  TAG_DEST = TAG[MODEL_TYPE][1]
@@ -161,8 +162,9 @@ with block:
161
  ],
162
  inputs=[input_image],
163
  outputs=[output_image, output_video, output_file],
164
- fn=lambda x: process(input_image=x,input_elevation=input_elevation,),
165
- run_on_click=True,
 
166
  label='Image-to-3D Examples'
167
  )
168
 
@@ -175,7 +177,8 @@ with block:
175
  inputs=[input_text],
176
  outputs=[output_image, output_video, output_file],
177
  fn=lambda x: process(input_image=None, prompt=x),
178
- run_on_click=True,
 
179
  label='Text-to-3D Examples'
180
  )
181
 
 
65
  # subprocess.run("cd extensions/RaDe-GS/submodules/diff-gaussian-rasterization && python3 setup.py bdist_wheel ", shell=True)
66
 
67
  if input_image is not None:
68
+ import uuid
69
+ image_path = os.path.join(TMP_DIR, f"{str(uuid.uuid4())}.png")
70
  image_name = image_path.split('/')[-1].split('.')[0] + "_rgba"
71
  input_image.save(image_path)
72
  TAG_DEST = TAG[MODEL_TYPE][1]
 
162
  ],
163
  inputs=[input_image],
164
  outputs=[output_image, output_video, output_file],
165
+ fn=lambda x: process(input_image=x),
166
+ # run_on_click=True,
167
+ cache_examples=True,
168
  label='Image-to-3D Examples'
169
  )
170
 
 
177
  inputs=[input_text],
178
  outputs=[output_image, output_video, output_file],
179
  fn=lambda x: process(input_image=None, prompt=x),
180
+ # run_on_click=True,
181
+ cache_examples=True,
182
  label='Text-to-3D Examples'
183
  )
184
 
gradio_cached_examples/22/component 0/68d04f14532ff058931d/image.webp ADDED
gradio_cached_examples/22/component 0/6c31219c5299a1a8a2a8/image.webp ADDED
gradio_cached_examples/22/component 0/7bbbbff26aaf3d3ea1fa/image.webp ADDED
gradio_cached_examples/22/component 0/80fc601c7cb5370269b8/image.webp ADDED
gradio_cached_examples/22/component 0/96acb21998cf0d8faa61/image.webp ADDED
gradio_cached_examples/22/component 0/de29dd88ef0511de5233/image.webp ADDED
gradio_cached_examples/22/log.csv CHANGED
@@ -1,4 +1,7 @@
1
  component 0,video,3D Gaussians (ply format),flag,username,timestamp
2
- "{""path"": ""gradio_cached_examples/22/component 0/cd1d45b33118c74ec316/image.webp"", ""url"": ""/file=/tmp/gradio/dbf713c255683bb9a0817141f85a0a122fcfda997c9ee184c11cadc4ec699dbf/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/ec435fc314aa872dfb6e/_a toy robot..._013020.mp4"", ""url"": ""/file=/tmp/gradio/93e4187e3359a1457f501416c2ee86ed9e0ab485007ff0784cd226ac2f6e8e0b/_a toy robot..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a toy robot...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/33a17050938079dd150f/_a toy robot..._013020.ply"", ""url"": ""/file=/tmp/gradio/3eb386a0bd35349d3271f7ac5431b26af1f8549b7a8a16c10af894877bb22c09/_a toy robot..._013020.ply"", ""size"": 1476719, ""orig_name"": ""[]_[a toy robot...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-05 17:47:05.343823
3
- "{""path"": ""gradio_cached_examples/22/component 0/517a0af9278241bc3f9a/image.webp"", ""url"": ""/file=/tmp/gradio/7879af8e96c9236c48faefd790d084d712f2f5f45fbfe2dc54798540be16479f/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/c92a16a38a98e6f71c23/_a cute panda..._013020.mp4"", ""url"": ""/file=/tmp/gradio/f9588f3f7218e15a80c4c8393b1335b3d70cbedc1f9ff91347daae9945325bd7/_a cute panda..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a cute panda...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/9084f12000e4d0861282/_a cute panda..._013020.ply"", ""url"": ""/file=/tmp/gradio/2ad3fb46683cdbfdb83050203762230a7a3d4889bb133f4376b8da0e3119fd1d/_a cute panda..._013020.ply"", ""size"": 2347854, ""orig_name"": ""[]_[a cute panda...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-05 17:47:55.710773
4
- "{""path"": ""gradio_cached_examples/22/component 0/28ff098ce84070297ffa/image.webp"", ""url"": ""/file=/tmp/gradio/0381c7b9d1a19b575d2568376ee9bfa18292716cc1e45ae95bb4528ca92557d6/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/604d963b41840a83f80d/_a book..._013020.mp4"", ""url"": ""/file=/tmp/gradio/3d8e3fa54c906aff498f443284df7d5b2e9e9e8018558ea4f3199074aa342813/_a book..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a book...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/927242333ba684b13bb2/_a book..._013020.ply"", ""url"": ""/file=/tmp/gradio/191f72e3e00089869450ba9fe70cab622e94089489c0cf5104a724f2fa98d5ee/_a book..._013020.ply"", ""size"": 2224072, ""orig_name"": ""[]_[a book...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-05 17:48:46.330335
 
 
 
 
1
  component 0,video,3D Gaussians (ply format),flag,username,timestamp
2
+ "{""path"": ""gradio_cached_examples/22/component 0/68d04f14532ff058931d/image.webp"", ""url"": ""/file=/tmp/gradio/b55779750147f2036694b341e825b56ccbcda349714cf004674326d8725a699c/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/b38551dea06c8360392d/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/9506327297f18c2a8be0decc3b6a8aa893747455a77b6695e3dbc847a384e53c/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[71a43d32-6448-4fc1-b916-915b39df69c8_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/6d833f6c8e4dc9befc5d/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/b70d827400eb6cab6bf0adbda6b0aa95bcead8de851c976b8489d0573072b592/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.ply"", ""size"": 1902286, ""orig_name"": ""[71a43d32-6448-4fc1-b916-915b39df69c8_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:19:27.366195
3
+ "{""path"": ""gradio_cached_examples/22/component 0/6c31219c5299a1a8a2a8/image.webp"", ""url"": ""/file=/tmp/gradio/2285d7bcead6be2be668f982422a474b7229e44fb48e02a84a0e57be6f34d4b5/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/fbcccc86750b5bd80e41/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/a1047041789434e689e7c1fc3d96a77696ea849ec6bc590898b0012c108a7fbc/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[84a87de1-b369-43d8-843d-f23ed9a47162_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/e7b46ec8c3df6cf221a6/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/e9ae2fd7a9dd27e1612061f5b47f755519f45db3ca02a9e80ea4ba9b9446460e/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.ply"", ""size"": 2163125, ""orig_name"": ""[84a87de1-b369-43d8-843d-f23ed9a47162_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:20:01.153337
4
+ "{""path"": ""gradio_cached_examples/22/component 0/de29dd88ef0511de5233/image.webp"", ""url"": ""/file=/tmp/gradio/c8b702a1bae4c9e5b903f7e8c111e641c3e01abd64586c4ceeca803d27a74f9c/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/f58cf1a9b8e83a3ae07d/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/072af019e307afca24f1951affce8ccc392030d744631d13b412c000aaa87db0/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/81e29a26f7bb9e7fb942/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/952affc78702d068f578fdaf53b484d3eabac2a457116b569ea0d97723cfa9ae/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.ply"", ""size"": 4047939, ""orig_name"": ""[95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:20:34.362412
5
+ "{""path"": ""gradio_cached_examples/22/component 0/7bbbbff26aaf3d3ea1fa/image.webp"", ""url"": ""/file=/tmp/gradio/f4f1629c88fa8bd57dc3c2d1d42a19b5c01c4ba91409bc61dd10943242bb5c00/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/7090ac155da8cea553f3/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/925f672c7e4cf1af08e2c8e821ce41631f27bef8a2b234b179c1758936a96386/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/d62d97a8cfe68f6c1b98/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/4d6ba8da7cc49d3f40a663e8c708b1b35f90fe3fa1741ee75f2fdcbbc5504d1d/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.ply"", ""size"": 3830052, ""orig_name"": ""[fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:21:08.573889
6
+ "{""path"": ""gradio_cached_examples/22/component 0/96acb21998cf0d8faa61/image.webp"", ""url"": ""/file=/tmp/gradio/e9b509baa4ebe464183ec1a3302d41a7dabbb2a1bca082b8dc9b0332a7f7d516/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/a9f425a604c082e06c83/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/dbf61d4266d724ff2f8adfb781ea6701b99c079676e0cb8d3474e58b5e9d20c4/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/4f55b3198f1fa3f66719/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/a696357e921e3f614e5421d795f15fd3e48059cd989ec8fca99ea96d760c33ce/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.ply"", ""size"": 3027829, ""orig_name"": ""[5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:21:42.067740
7
+ "{""path"": ""gradio_cached_examples/22/component 0/80fc601c7cb5370269b8/image.webp"", ""url"": ""/file=/tmp/gradio/598f2e8442d41f2b4aeb195ebacaf8f009186c7324cf2b7fb5f7683bef352770/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/22/video/41a19292a48da5f52b1c/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.mp4"", ""url"": ""/file=/tmp/gradio/16b3612f7375d15b6943483c0c2467750cfa42c0e52fa60413c9e29310db3560/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.mp4"", ""size"": null, ""orig_name"": ""[42e32c80-0b97-4364-a16e-ea17223399c1_rgba]_[a high quality 3D as...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/22/3D Gaussians ply format/ab4520339eb880c61c58/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.ply"", ""url"": ""/file=/tmp/gradio/c9891b2f524a2c6581d547b7b558da9717672980c478e11c834fe98fe252b593/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.ply"", ""size"": 1786292, ""orig_name"": ""[42e32c80-0b97-4364-a16e-ea17223399c1_rgba]_[a high quality 3D as...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:22:14.527578
gradio_cached_examples/22/video/41a19292a48da5f52b1c/42e32c80-0b97-4364-a16e-ea17223399c1_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (25.3 kB). View file
 
gradio_cached_examples/22/video/7090ac155da8cea553f3/fa5f785a-0409-4d8a-91a8-6b027eb7161e_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (50.6 kB). View file
 
gradio_cached_examples/22/video/a9f425a604c082e06c83/5afe3144-9ef7-48d5-8770-74fe86a6714d_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (44.3 kB). View file
 
gradio_cached_examples/22/video/b38551dea06c8360392d/71a43d32-6448-4fc1-b916-915b39df69c8_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (35.4 kB). View file
 
gradio_cached_examples/22/video/f58cf1a9b8e83a3ae07d/95941237-ffe9-4b3d-b441-fa7326f0d4a2_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (49.4 kB). View file
 
gradio_cached_examples/22/video/fbcccc86750b5bd80e41/84a87de1-b369-43d8-843d-f23ed9a47162_rgba_a high quality 3D as..._013020.mp4 ADDED
Binary file (38 kB). View file
 
gradio_cached_examples/23/component 0/5462172ad5df0049ecf3/image.webp ADDED
gradio_cached_examples/23/component 0/72bc4d7be40dce243524/image.webp ADDED
gradio_cached_examples/23/component 0/7dcfd03a2cc9b6b7ce68/image.webp ADDED
gradio_cached_examples/23/log.csv CHANGED
@@ -1,2 +1,4 @@
1
  component 0,video,3D Gaussians (ply format),flag,username,timestamp
2
- "{""path"": ""gradio_cached_examples/23/component 0/e4f43cec7e020a66d596/image.webp"", ""url"": ""/file=/tmp/gradio/dbf713c255683bb9a0817141f85a0a122fcfda997c9ee184c11cadc4ec699dbf/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/23/video/3f82eb6a8d5e1cc88e28/_a toy robot..._013020.mp4"", ""url"": ""/file=/tmp/gradio/93e4187e3359a1457f501416c2ee86ed9e0ab485007ff0784cd226ac2f6e8e0b/_a toy robot..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a toy robot...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/23/3D Gaussians ply format/a6d4bba77a6f190743e6/_a toy robot..._013020.ply"", ""url"": ""/file=/tmp/gradio/3eb386a0bd35349d3271f7ac5431b26af1f8549b7a8a16c10af894877bb22c09/_a toy robot..._013020.ply"", ""size"": 1476719, ""orig_name"": ""[]_[a toy robot...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 12:39:16.678627
 
 
 
1
  component 0,video,3D Gaussians (ply format),flag,username,timestamp
2
+ "{""path"": ""gradio_cached_examples/23/component 0/7dcfd03a2cc9b6b7ce68/image.webp"", ""url"": ""/file=/tmp/gradio/bba96e04cc868c987fd87742bfeb670a39889b184ce9390caa51f3284cc8d874/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/23/video/58cbe157dbbdd79f4236/_a toy robot..._013020.mp4"", ""url"": ""/file=/tmp/gradio/9344ad7db056bc31dc08d99ea9c24c394b9c1e6d3d2adae23abfeffc51f21c83/_a toy robot..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a toy robot...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/23/3D Gaussians ply format/ac00c4f9886a4fdec12e/_a toy robot..._013020.ply"", ""url"": ""/file=/tmp/gradio/dd26b30f758f215f9963151cc0f13a414eb4448f2fa65c5cd6ba9de82e7f8541/_a toy robot..._013020.ply"", ""size"": 2371513, ""orig_name"": ""[]_[a toy robot...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:22:45.701020
3
+ "{""path"": ""gradio_cached_examples/23/component 0/5462172ad5df0049ecf3/image.webp"", ""url"": ""/file=/tmp/gradio/4add8d28c4ce2d696054a446bac8196776369c84ace89bc1d7742e6b9965baa4/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/23/video/47ef463cb54218af066f/_a cute panda..._013020.mp4"", ""url"": ""/file=/tmp/gradio/d76c76c6a8f6298d1dfd932bff105fa94c92c2e434cfb25649fa5e2c979e48bd/_a cute panda..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[a cute panda...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/23/3D Gaussians ply format/2d4e08918edfa450a668/_a cute panda..._013020.ply"", ""url"": ""/file=/tmp/gradio/b3a8a80c408577fd3690ab9fa20aab09461c4acae79ade99af228029fad22463/_a cute panda..._013020.ply"", ""size"": 3756715, ""orig_name"": ""[]_[a cute panda...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:23:16.783106
4
+ "{""path"": ""gradio_cached_examples/23/component 0/72bc4d7be40dce243524/image.webp"", ""url"": ""/file=/tmp/gradio/5ae55fae7af9ff65b3db3d6b2d069809b82725a4fd7b13e8e0381c679c1881c1/image.webp"", ""size"": null, ""orig_name"": ""image.webp"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}","{""video"": {""path"": ""gradio_cached_examples/23/video/5659135046271cb479c4/_an ancient leather-b..._013020.mp4"", ""url"": ""/file=/tmp/gradio/4b9da8d06a7d38a62ff22ac65fe57ed65f133c54bb8cc50f098cdc2164888ca1/_an ancient leather-b..._013020.mp4"", ""size"": null, ""orig_name"": ""[]_[an ancient leather-b...]_013020.mp4"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}, ""subtitles"": null}","{""path"": ""gradio_cached_examples/23/3D Gaussians ply format/6d59480843f6fd4d9305/_an ancient leather-b..._013020.ply"", ""url"": ""/file=/tmp/gradio/c980a36adf3943b5add09ff5468f6e7bb0f2d615bde99b4c1a620181598d9594/_an ancient leather-b..._013020.ply"", ""size"": 4054547, ""orig_name"": ""[]_[an ancient leather-b...]_013020.ply"", ""mime_type"": null, ""is_stream"": false, ""meta"": {""_type"": ""gradio.FileData""}}",,,2025-02-06 15:23:47.612279
gradio_cached_examples/23/video/47ef463cb54218af066f/_a cute panda..._013020.mp4 ADDED
Binary file (25.4 kB). View file
 
gradio_cached_examples/23/video/5659135046271cb479c4/_an ancient leather-b..._013020.mp4 ADDED
Binary file (30 kB). View file
 
gradio_cached_examples/23/video/58cbe157dbbdd79f4236/_a toy robot..._013020.mp4 ADDED
Binary file (30.2 kB). View file