Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
SIGGRAPH2022 (SIGGRAPH 2022)
[go: Go Back, main page]

Join organization by clicking here\n

This organization invites participants to add gradio demos/models/datasets for conference papers on huggingface (Note: This is not a official SIGGRAPH sponsored event)

\n

Hugging Face Gradio SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting Gradio demo submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit Gradio demos for any SIGGRAPH paper for a chance to win prizes, you can submit demos for multiple papers. Find tutorial on getting started with Gradio on Hugging Face here and to get started with the new Gradio Blocks API here

\n\n

Hugging Face Models SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting models submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit models for any SIGGRAPH paper for a chance to win prizes, you can submit models for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding models here

\n\n

Hugging Face Datasets SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting dataset submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit datasets for any SIGGRAPH paper for a chance to win prizes, you can submit datasets for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding datasets here

\n\n\n

Hugging Face Prizes

\n
    \n
  • Top 5 spaces/models/datasets based on likes\n
  • \n
\n\n

LeaderBoard for Most Popular SIGGRAPH Spaces

\n

See the SIGGRAPH Spaces Leaderboard

\n

LeaderBoard for Most Popular SIGGRAPH Models

\n

See the SIGGRAPH Models Leaderboard

\n

LeaderBoard for Most Popular SIGGRAPH Datasets

\n

See the SIGGRAPH Datasets Leaderboard

\n \n
\n

Hugging Face Spaces & Gradio for Showcasing your SIGGRAPH โ€˜22 Demo \n

\n

\n In this tutorial, we will demonstrate how to showcase your demo with an easy to use web interface using the Gradio Python library and host it on Hugging Face Spaces so that conference attendees can easily find and try out your demos. Also, see https://gradio.app/introduction_to_blocks/, for a more flexible way to build Gradio Demos\n

\n

๐Ÿš€ Create a Gradio Demo from your Model\n

\n

\nThe first step is to create a web demo from your model. As an example, we will be creating a demo from an image classification model (called model) which we will be uploading to Spaces. The full code for steps 1-4 can be found in this colab notebook.\n


\n\n

1. Install the gradio library\n

\n

\nAll you need to do is to run this in the terminal: pip install gradio\n

\n
\n

2. Define a function in your Python code that performs inference with your model on a data point and returns the prediction\n

\n

\nHereโ€™s we define our image classification model prediction function in PyTorch (any framework, like TensorFlow, scikit-learn, JAX, or a plain Python will work as well):\n

\ndef predict(inp):\n\n  inp = Image.fromarray(inp.astype('uint8'), 'RGB')\n\n  inp = transforms.ToTensor()(inp).unsqueeze(0)\n\n  with torch.no_grad():\n\n    prediction = torch.nn.functional.softmax(model(inp)[0], dim=0)\n\n  return {labels[i]: float(prediction[i]) for i in range(1000)}\n\n
\n

\n\n

3. Then create a Gradio Interface using the function and the appropriate input and output types\n

\n

\nFor the image classification model from Step 2, it would like like this:\n

\n
\n\ninputs = gr.inputs.Image()\n\noutputs = gr.outputs.Label(num_top_classes=3)\n\nio = gr.Interface(fn=predict, inputs=inputs, outputs=outputs)\n\n
\n

\nIf you need help creating a Gradio Interface for your model, check out the Gradio Getting Started guide.\n

\n\n

4. Then launch() you Interface to confirm that it runs correctly locally (or wherever you are running Python)\n

\n
\n\nio.launch() \n\n
\n

\nYou should see a web interface like the following where you can drag and drop your data points and see the predictions:\n

\n\"Gradio\n
\n
\n\n\n\n\n\n","html":"
\n

Join organization by clicking here

\n

This organization invites participants to add gradio demos/models/datasets for conference papers on huggingface (Note: This is not a official SIGGRAPH sponsored event)

\n

Hugging Face Gradio SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting Gradio demo submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit Gradio demos for any SIGGRAPH paper for a chance to win prizes, you can submit demos for multiple papers. Find tutorial on getting started with Gradio on Hugging Face here and to get started with the new Gradio Blocks API here

\n\n

Hugging Face Models SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting models submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit models for any SIGGRAPH paper for a chance to win prizes, you can submit models for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding models here

\n\n

Hugging Face Datasets SIGGRAPH 2022 event\n

\n

\nSIGGRAPH organization is accepting dataset submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit datasets for any SIGGRAPH paper for a chance to win prizes, you can submit datasets for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding datasets here

\n\n\n

Hugging Face Prizes

\n
    \n
  • Top 5 spaces/models/datasets based on likes\n
  • \n
\n\n

LeaderBoard for Most Popular SIGGRAPH Spaces

\n

See the SIGGRAPH Spaces Leaderboard

\n

LeaderBoard for Most Popular SIGGRAPH Models

\n

See the SIGGRAPH Models Leaderboard

\n

LeaderBoard for Most Popular SIGGRAPH Datasets

\n

See the SIGGRAPH Datasets Leaderboard

\n \n
\n

Hugging Face Spaces & Gradio for Showcasing your SIGGRAPH โ€˜22 Demo \n

\n

\n In this tutorial, we will demonstrate how to showcase your demo with an easy to use web interface using the Gradio Python library and host it on Hugging Face Spaces so that conference attendees can easily find and try out your demos. Also, see https://gradio.app/introduction_to_blocks/, for a more flexible way to build Gradio Demos\n

\n

๐Ÿš€ Create a Gradio Demo from your Model\n

\n

\nThe first step is to create a web demo from your model. As an example, we will be creating a demo from an image classification model (called model) which we will be uploading to Spaces. The full code for steps 1-4 can be found in this colab notebook.\n


\n\n

1. Install the gradio library\n

\n

\nAll you need to do is to run this in the terminal: pip install gradio\n

\n
\n

2. Define a function in your Python code that performs inference with your model on a data point and returns the prediction\n

\n

\nHereโ€™s we define our image classification model prediction function in PyTorch (any framework, like TensorFlow, scikit-learn, JAX, or a plain Python will work as well):\n

def predict(inp):\n\n

inp = Image.fromarray(inp.astype('uint8'), 'RGB')

\n

inp = transforms.ToTensor()(inp).unsqueeze(0)

\n

with torch.no_grad():

\n
prediction = torch.nn.functional.softmax(model(inp)[0], dim=0)\n
\n

return {labels[i]: float(prediction[i]) for i in range(1000)}\n\n

\n

\n\n

3. Then create a Gradio Interface using the function and the appropriate input and output types\n

\n

\nFor the image classification model from Step 2, it would like like this:\n

\n
\ninputs = gr.inputs.Image()\n\n

outputs = gr.outputs.Label(num_top_classes=3)

\n

io = gr.Interface(fn=predict, inputs=inputs, outputs=outputs)\n\n

\n

\nIf you need help creating a Gradio Interface for your model, check out the Gradio Getting Started guide.\n

\n\n

4. Then launch() you Interface to confirm that it runs correctly locally (or wherever you are running Python)\n

\n
\nio.launch() \n\n
\n

\nYou should see a web interface like the following where you can drag and drop your data points and see the predictions:\n

\n\"Gradio\n
\n
\n\n\n\n\n\n","classNames":"hf-sanitized hf-sanitized-MdC6Xb_O1JILWxuewONPw"},"users":[{"_id":"60f1abe7544c2adfd699860c","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1674929746905-60f1abe7544c2adfd699860c.jpeg","isPro":false,"fullname":"AK","user":"akhaliq","type":"user"},{"_id":"61fc476120c583345f868e83","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/61fc476120c583345f868e83/wNKd3iNG8BbDcXGIf1k-T.jpeg","isPro":true,"fullname":"dawood","user":"dawood","type":"user"},{"_id":"622baba40082a62318573900","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1653516128323-622baba40082a62318573900.png","isPro":false,"fullname":"Patricio","user":"mlnotes","type":"user"},{"_id":"602cf2d9b184d4bd2df3f07e","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1613558486784-noauth.png","isPro":false,"fullname":"Daniel Leong","user":"Scrya","type":"user"},{"_id":"626d5aa418565bd9fad1f7e1","avatarUrl":"/avatars/de2f90d578f7abeb1d9e9f9b11b20fd7.svg","isPro":false,"fullname":"Brenden Connors","user":"brendenc","type":"user"},{"_id":"621c88aca7d6c7e0563256ae","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1646037095915-noauth.jpeg","isPro":false,"fullname":"Xaheen","user":"Xhaheen","type":"user"},{"_id":"62e9431ff4ad581eede77bf2","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659454105205-noauth.jpeg","isPro":false,"fullname":"Manish Roy","user":"manish-pro","type":"user"},{"_id":"61b9835574ae3d6a548a5cf8","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1639547718615-noauth.jpeg","isPro":false,"fullname":"Anneudy Alberto Valdera","user":"Blade88","type":"user"},{"_id":"62e9df713366d3a0d80bf918","avatarUrl":"/avatars/b3011d718d967b903fed3fe289ddd187.svg","isPro":false,"fullname":"Nero AG","user":"NeroAI","type":"user"},{"_id":"62e9e91110473e777647b674","avatarUrl":"/avatars/075a3099aee5cb45890eb65b8f2226c5.svg","isPro":false,"fullname":"Tommy Ly","user":"tommyly20","type":"user"},{"_id":"629c95b7a5d6f5fe10e6ed45","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/629c95b7a5d6f5fe10e6ed45/Sy0Ype5snsRookID-gsSm.jpeg","isPro":false,"fullname":"Yuming Jiang","user":"yumingj","type":"user"},{"_id":"5fcaabed246881afd5b00167","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1651847561574-5fcaabed246881afd5b00167.jpeg","isPro":false,"fullname":"Muhtasham Oblokulov","user":"muhtasham","type":"user"},{"_id":"61e745874f67219569ede04d","avatarUrl":"/avatars/9ba2eaab3bbff2f5a7e828956df446f3.svg","isPro":false,"fullname":"abhijit-two","user":"abhijit-two","type":"user"},{"_id":"62de3ba341f2b70237359da5","avatarUrl":"/avatars/2a87e43f10c3dd3ee364c4d682d51738.svg","isPro":false,"fullname":"Hirata Kazuki","user":"shiro-manju","type":"user"},{"_id":"61ff8330a3f03cce621e1e3d","avatarUrl":"/avatars/3ed416e686d33ad1858597515463787a.svg","isPro":false,"fullname":"Muhammad Zubair","user":"zubair5544","type":"user"},{"_id":"6245927be1b9dab15a3e7760","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1649901394922-6245927be1b9dab15a3e7760.png","isPro":false,"fullname":"ZengYifu","user":"Zengyf-CVer","type":"user"},{"_id":"62ecaeb1d0d93142d672a067","avatarUrl":"/avatars/46a572438c4ac0a0b0d24c7033b8cb53.svg","isPro":false,"fullname":"Sheng-Yu Wang","user":"sywang","type":"user"},{"_id":"62ef8ab29ff12341d15bcb74","avatarUrl":"/avatars/2b15b72a3462c96758a9660b8974a3b6.svg","isPro":false,"fullname":"AveryZhou","user":"AZEclipse","type":"user"},{"_id":"62f0265b43fe5ab0b3e5f058","avatarUrl":"/avatars/b68a6d0e43ab803d1859cc6d2bbec996.svg","isPro":false,"fullname":"Mojtaba Bemana","user":"mbemana","type":"user"},{"_id":"629463615f2097c17b80fe38","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/629463615f2097c17b80fe38/fNXfixT2dK2WmpC0b92tN.png","isPro":false,"fullname":"Anoir Ben Tanfous","user":"neoOpus","type":"user"},{"_id":"62e3f0a4ac55121820954920","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659105442232-noauth.jpeg","isPro":false,"fullname":"Sriniketh J","user":"srini047","type":"user"},{"_id":"61705e4d863f8160df539e54","avatarUrl":"/avatars/429586250cec7db8efd2d17f8c00854b.svg","isPro":false,"fullname":"Jezia zakraoui ","user":"Jezia","type":"user"},{"_id":"60ec109280b434965987d1de","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1626345802673-60ec109280b434965987d1de.jpeg","isPro":false,"fullname":"Aleksey Korshuk","user":"AlekseyKorshuk","type":"user"},{"_id":"60406e85076aa73940921532","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1660005014100-60406e85076aa73940921532.jpeg","isPro":false,"fullname":"Divyanshu Kumar","user":"divyanshusingh","type":"user"},{"_id":"615d4612209774c7b623b0e2","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1653899215783-615d4612209774c7b623b0e2.jpeg","isPro":false,"fullname":"Mahmoud Hamza","user":"Santarabantoosoo","type":"user"},{"_id":"6103ed2248a651effc4e32ad","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1662709588384-6103ed2248a651effc4e32ad.jpeg","isPro":true,"fullname":"Dhruv K","user":"unography","type":"user"},{"_id":"61bb7f4d9d77f2f37143a83d","avatarUrl":"/avatars/b0cf60bd45150a88319edc5e9fbfdb9f.svg","isPro":false,"fullname":"Shamima Hossain","user":"Shamima","type":"user"},{"_id":"605b1a536ce6cabbb3474b5a","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1655583590216-605b1a536ce6cabbb3474b5a.jpeg","isPro":false,"fullname":"Animesh","user":"animesh007","type":"user"},{"_id":"62f5db4731ee3f3670fee4f0","avatarUrl":"/avatars/f26579971dfa559e3b5663c5cda88678.svg","isPro":false,"fullname":"Kirill Brodt","user":"kbrodt","type":"user"},{"_id":"62b45e0fc624a43b1a1d783b","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1655990960438-62b45e0fc624a43b1a1d783b.png","isPro":false,"fullname":"Tatsuya Kida","user":"kidapu","type":"user"},{"_id":"62a08d4ad066f825a0192c45","avatarUrl":"/avatars/6da1408b26ff53ac63065370f30ff12c.svg","isPro":false,"fullname":"erer","user":"erer","type":"user"},{"_id":"61673848debabc73978921c4","avatarUrl":"/avatars/48410d7c148c0bcb10b9695c51f0ffae.svg","isPro":false,"fullname":"Masood Khan Patel","user":"masoodkhanpatel","type":"user"},{"_id":"62fb3fc89af1d16bc0ac5bba","avatarUrl":"/avatars/77a13138f330800db289748b3a840314.svg","isPro":false,"fullname":"smb","user":"legendsmb","type":"user"},{"_id":"6183d0b249ef1d984699e4a3","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/6183d0b249ef1d984699e4a3/M6B9b73v8su9H8jfdcbgu.jpeg","isPro":false,"fullname":"Yuliang Xiu","user":"Yuliang","type":"user"},{"_id":"6178ff1b9e61d7ff71b52b93","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1635319522808-noauth.jpeg","isPro":false,"fullname":"Kavya","user":"RobotJelly","type":"user"},{"_id":"60ce47e515ecba5f22003052","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1674457683364-60ce47e515ecba5f22003052.png","isPro":false,"fullname":"Tashin Ahmed","user":"745H1N","type":"user"},{"_id":"6135daf9e46f11de864705de","avatarUrl":"/avatars/857efda79f5f5fef35e68105fc09f5b2.svg","isPro":false,"fullname":"Simon Shengyu Meng","user":"shengyu-meng","type":"user"},{"_id":"603472929aa44495c80dd049","avatarUrl":"/avatars/110de7011e34cd84bbd2bd32a97d694e.svg","isPro":false,"fullname":"Thร nh Lรช","user":"imthanhlv","type":"user"},{"_id":"61042649143162bfea30c3bd","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1627661889572-noauth.jpeg","isPro":false,"fullname":"Mayank Shrivastava","user":"mpamt","type":"user"},{"_id":"620df756dbac1855c00529d4","avatarUrl":"/avatars/0a5bda350f46e152baab4c8eedbb85f3.svg","isPro":false,"fullname":"Yael Vinker","user":"yaelvinker","type":"user"},{"_id":"603b05d38832ef9aad2e6587","avatarUrl":"/avatars/2f8f56b9b3ead5ad2cb179a679e7b09f.svg","isPro":false,"fullname":"Daniel Hug","user":"DanielHug","type":"user"},{"_id":"61f8f1b03c1583dba38d9bb4","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1643704749290-noauth.jpeg","isPro":false,"fullname":"SuperSecureHuman","user":"SuperSecureHuman","type":"user"},{"_id":"626c59ca030a6e7363b94dad","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1661096595351-626c59ca030a6e7363b94dad.jpeg","isPro":true,"fullname":"Michael Kirchner","user":"kirch","type":"user"},{"_id":"60368f527bdf98f8e4513763","avatarUrl":"/avatars/fdbca5fbbc79d118710ece0ca87339a1.svg","isPro":false,"fullname":"Mukesh","user":"muks","type":"user"},{"_id":"621413c8b670cb63a3807598","avatarUrl":"/avatars/f2ae9ea06a71bb20fcb53961c09a1410.svg","isPro":false,"fullname":"Naufan Rusyda Faikar","user":"naruaika","type":"user"},{"_id":"62d7fdb3f830483a73152c38","avatarUrl":"/avatars/d19f8c23f79f6f547dbd1efbea6d3f77.svg","isPro":false,"fullname":"Jack Leo","user":"shangdibufashi","type":"user"},{"_id":"631ecaa97beada3046608c0e","avatarUrl":"/avatars/d4113947c16b1354f2ac880454aa2896.svg","isPro":false,"fullname":"Patrick","user":"Patraick","type":"user"},{"_id":"61b3fd1c54bffebd52322712","avatarUrl":"/avatars/668c14fb9fe7f46c2c147f49653041b1.svg","isPro":false,"fullname":"zhy","user":"zhangxioais","type":"user"},{"_id":"6358edff3b3638bdac83f7ac","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1666772404424-noauth.jpeg","isPro":false,"fullname":"Pratyay Banerjee","user":"Neilblaze","type":"user"},{"_id":"633ef47b33ba83e00bd5d410","avatarUrl":"/avatars/233be4f77439a1dbe03586420ae7e056.svg","isPro":false,"fullname":"YukinaryL","user":"YukinaryL","type":"user"},{"_id":"63109523f5acafacccf82bee","avatarUrl":"/avatars/ffd0758b8820808203c36540d2510594.svg","isPro":true,"fullname":"Abdullah","user":"abdullahnust","type":"user"},{"_id":"634f6aa2d049354d7ee89045","avatarUrl":"/avatars/b1705e62dfa5caf0c7f758d06e8289f0.svg","isPro":false,"fullname":"gaohuan","user":"gaohuan","type":"user"},{"_id":"636d7005dddcc01da6595b19","avatarUrl":"/avatars/d6244785298ae1d1bd0fb51b10ec4c9b.svg","isPro":false,"fullname":"Mayur","user":"mayurmistry","type":"user"},{"_id":"635bcc8537c6a2c12e2f7b71","avatarUrl":"/avatars/3c45354271b9432aa6d7f98fdb671a84.svg","isPro":false,"fullname":"Keshav Kalra","user":"neokeshav","type":"user"},{"_id":"62d7859d83a921367ac1c8e8","avatarUrl":"/avatars/8f1a1bf35881f8050d96d2c22518fdfc.svg","isPro":false,"fullname":"zekui","user":"lzkhit","type":"user"},{"_id":"6299d69e0fa8aec7f1baa3be","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1667567489831-6299d69e0fa8aec7f1baa3be.jpeg","isPro":false,"fullname":"JIGNESH PATEL","user":"jarvisx17","type":"user"},{"_id":"635369dda023833e59da51e3","avatarUrl":"/avatars/5961c71cb4b556dd23a2cdeda896c287.svg","isPro":false,"fullname":"chen","user":"vbqgy","type":"user"},{"_id":"63077eabbc0a2a5ee21de80a","avatarUrl":"/avatars/c3772d0aec8195d5daa032705e6ac9ef.svg","isPro":false,"fullname":"lurui","user":"langzizhixin","type":"user"},{"_id":"62cd8941248f9e6bc20b1215","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/62cd8941248f9e6bc20b1215/MbD16SkuKimqwxwiTx3lx.jpeg","isPro":false,"fullname":"Timotheus gmeiner","user":"tgmeiner","type":"user"},{"_id":"63d2721e57ab367124eae1f0","avatarUrl":"/avatars/6edce7ebe3f9e8f21bfcbc4a78c0e7a2.svg","isPro":false,"fullname":"Marcelo Ferreira","user":"marcelof91","type":"user"},{"_id":"63c71f14656e7822e23c1842","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/63c71f14656e7822e23c1842/Vl8CIT2xzLFfKn4BcyTkr.jpeg","isPro":false,"fullname":"Marcos Isidio da silva Junior","user":"UltraMarkoBR","type":"user"},{"_id":"638da7978da27a1390be163e","avatarUrl":"/avatars/5829acea1f05f9dee42fa740022d65c8.svg","isPro":false,"fullname":"Wang Can","user":"Bobabc","type":"user"},{"_id":"635b40a268dfa0be4dc77a56","avatarUrl":"/avatars/a8084af38246c887e74cb914a2b30790.svg","isPro":false,"fullname":"WuLei","user":"wuleiiii","type":"user"},{"_id":"61769654cd67a132d5eae501","avatarUrl":"/avatars/a80538ddd43f39bfc39ceed6cd9ba5f6.svg","isPro":false,"fullname":"Micro","user":"Edge","type":"user"},{"_id":"631c073e9edb6d320a175b50","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1662781228166-noauth.png","isPro":false,"fullname":"yuna0x0","user":"yuna0x0","type":"user"},{"_id":"6361d44400905b1ffb92779f","avatarUrl":"/avatars/6032498d0520236770933f883d23f72d.svg","isPro":false,"fullname":"Lee","user":"Jack003","type":"user"},{"_id":"641bfd8ea6d3ff92426ec819","avatarUrl":"/avatars/c8414bae6f8e9bad4dbc0e6785319b5f.svg","isPro":false,"fullname":"yanpeng","user":"rrroc","type":"user"},{"_id":"60d36ba0cec45518d9df5f1c","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1652881095493-60d36ba0cec45518d9df5f1c.png","isPro":true,"fullname":"TOIVANEN","user":"RASMUS","type":"user"},{"_id":"630796918b054d85f2998ce3","avatarUrl":"/avatars/c784dd84c142253b7fa6b4ff7ca01f7a.svg","isPro":false,"fullname":"Alexandre","user":"alelordelo","type":"user"},{"_id":"644ab771e5d42b8aa8d67d11","avatarUrl":"/avatars/b122ee01bfc95bd413423bfa390d7b02.svg","isPro":false,"fullname":"Pedro Gabriel","user":"pplanel","type":"user"},{"_id":"6469ba168eaf6dcec22cf9bf","avatarUrl":"/avatars/9b85b9854c8f67958c0814e2d0c24246.svg","isPro":false,"fullname":"zhang","user":"xinwang1","type":"user"},{"_id":"636e171fb0ebc048881206ff","avatarUrl":"/avatars/14246aaa0e9fa79f6e1fb817ef69256a.svg","isPro":false,"fullname":"My Fang","user":"fmyk","type":"user"},{"_id":"64788618d946c2a46a58dbdd","avatarUrl":"/avatars/f4b4782e5871c60bf131acc420348df0.svg","isPro":false,"fullname":"Muhammad Rehan Aslam","user":"rajreehan","type":"user"},{"_id":"638ee0b22cc490759feb38e9","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/638ee0b22cc490759feb38e9/lVukf_rRENslcOSRA1RuS.jpeg","isPro":false,"fullname":"LazerTC","user":"Lazycuber","type":"user"},{"_id":"647fd152095af0bf116d94bb","avatarUrl":"/avatars/bbdc47dc4443680b9c29583fb858fe20.svg","isPro":false,"fullname":"SHUOLIN XU","user":"xushuolin","type":"user"},{"_id":"64b34b25aa03b652081873a0","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/64b34b25aa03b652081873a0/jgXgRuHV4hn527rOgW2-V.jpeg","isPro":false,"fullname":"QIU JUNZHE","user":"Justin-Choo","type":"user"},{"_id":"634f827407e669188d3fb48f","avatarUrl":"/avatars/ff6665c11d75a260208fb2670ebd3f6e.svg","isPro":false,"fullname":"jeong","user":"pain0710","type":"user"},{"_id":"64d5049f54bb9eb704d96056","avatarUrl":"/avatars/f761d96c1bc7c147434c96d7809cf3f2.svg","isPro":false,"fullname":"Tam WaiBan","user":"TamWaiban","type":"user"},{"_id":"64ae20c7d15440de82a5398b","avatarUrl":"/avatars/53221d0d89998b6ec1fcd32b83f75e17.svg","isPro":false,"fullname":"wei wei","user":"weiwei100","type":"user"},{"_id":"64367b5c1adb261e94e2a940","avatarUrl":"/avatars/1774abe8f924a057f9a9ecf4cd6a7e3b.svg","isPro":false,"fullname":"Meng-Li Shih","user":"MLShih","type":"user"},{"_id":"64f887b86389380c7784dfc8","avatarUrl":"/avatars/8dce2ece63892cc2eb644ebb9d117050.svg","isPro":false,"fullname":"P","user":"Artem-Pan","type":"user"},{"_id":"65242e8fe5d47a2f52b96cc2","avatarUrl":"/avatars/de7788ebfaf9a6791f221daf3d4ede4c.svg","isPro":false,"fullname":"Jimmy Chao","user":"HungMing","type":"user"},{"_id":"64634e5851fa6e630603b90a","avatarUrl":"/avatars/7eafabd537dd4505a78d7d24d921747d.svg","isPro":false,"fullname":"Caozhongqiang","user":"zhongqiang","type":"user"},{"_id":"63159c9f3adf8fbbe2548273","avatarUrl":"/avatars/645bea486b943743d354ef31a8f72f2c.svg","isPro":false,"fullname":"qingtian","user":"qingtian","type":"user"},{"_id":"64be41c330a1f0f0f0a1e0eb","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/8W-z1xMGnQGQ2M4LXnZfy.jpeg","isPro":false,"fullname":"VORTEX","user":"Abhaykoul","type":"user"},{"_id":"61914f536d34e827404ceb99","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1643012094339-61914f536d34e827404ceb99.jpeg","isPro":false,"fullname":"hysts","user":"hysts","type":"user"},{"_id":"630f3e4002ce39336c411048","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/630f3e4002ce39336c411048/Dbb855C55XdPd3rRH9auc.jpeg","isPro":false,"fullname":"alkinun","user":"AtAndDev","type":"user"},{"_id":"65f5028761a19b8f17f4db68","avatarUrl":"/avatars/c954a9099e1dce3b87830f8bf963edd0.svg","isPro":false,"fullname":"yagyavendra tiwari","user":"yagyavendratiwari","type":"user"},{"_id":"6601652a62471e09811ed20b","avatarUrl":"/avatars/c793bb33757d6e249b777b7b602d933d.svg","isPro":false,"fullname":"wang renming","user":"m1ndless","type":"user"},{"_id":"5f58bae73f32f12a3c069345","avatarUrl":"/avatars/73d00d1f6c4373505eda707707dd0059.svg","isPro":false,"fullname":"Melison","user":"xiao2mo","type":"user"},{"_id":"65a534832138495d16f4fc34","avatarUrl":"/avatars/2f75cd336db6ccdde095f465f177246e.svg","isPro":false,"fullname":"yuanwenguang","user":"theoy95","type":"user"},{"_id":"656351e94e8918182db296cc","avatarUrl":"/avatars/e6ad357785a58880eb6868b19a502471.svg","isPro":false,"fullname":"shawnlee","user":"shawnlee0","type":"user"},{"_id":"636b68cbcde3707d1098b297","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/636b68cbcde3707d1098b297/cBWungFw4Uw0pnDg2JdGW.png","isPro":false,"fullname":"yosun","user":"Yosun","type":"user"},{"_id":"64371b564aacf7bf786fb530","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/64371b564aacf7bf786fb530/0lZEdVu06bx11fy1uTjpt.jpeg","isPro":true,"fullname":"Nymbo","user":"Nymbo","type":"user"},{"_id":"63776c95c32e3fde29c70184","avatarUrl":"/avatars/adade5023cd2c797bb47dd4176eee7f2.svg","isPro":false,"fullname":"JOJO","user":"JOJO999","type":"user"},{"_id":"67366cce70cfca66d9a99889","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/67366cce70cfca66d9a99889/nlOFEdisXRoSrM2QCeSwE.jpeg","isPro":false,"fullname":"ALLJ","user":"ALIMHGFY","type":"user"},{"_id":"635be5b8f95a6561c5551596","avatarUrl":"/avatars/d185083866ca55034dbed6036e7253a7.svg","isPro":false,"fullname":"jx z","user":"JUSTIDI","type":"user"},{"_id":"677fcdf29b9a9863eba3f29f","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/677fcdf29b9a9863eba3f29f/3dL2oIwA1BVnq4kyKpANa.png","isPro":false,"fullname":"Parvesh Rawal","user":"Parveshiiii","type":"user"}],"userCount":100,"collections":[],"datasets":[],"models":[],"paperPreviews":[],"spaces":[{"author":"SIGGRAPH2022","authorData":{"_id":"62e2f8c93715ed86cbc56e04","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659042690288-60f1abe7544c2adfd699860c.png","fullname":"SIGGRAPH 2022","name":"SIGGRAPH2022","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":117,"isUserFollowing":false},"colorFrom":"red","colorTo":"yellow","createdAt":"2022-08-17T04:23:11.000Z","emoji":"๐Ÿƒ","id":"SIGGRAPH2022/sketch2pose","lastModified":"2024-06-27T14:50:20.000Z","likes":38,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"errorMessage":"Exit code: 1. Reason: asyncio.py\", line 2470, in run_sync_in_worker_thread\n return await future\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 967, in run\n result = context.run(func, *args)\n File \"/usr/local/lib/python3.10/site-packages/gradio/routes.py\", line 403, in main\n gradio_api_info = api_info(False)\n File \"/usr/local/lib/python3.10/site-packages/gradio/routes.py\", line 432, in api_info\n app.api_info = app.get_blocks().get_api_info()\n File \"/usr/local/lib/python3.10/site-packages/gradio/blocks.py\", line 2743, in get_api_info\n python_type = client_utils.json_schema_to_python_type(info)\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 893, in json_schema_to_python_type\n type_ = _json_schema_to_python_type(schema, schema.get(\"$defs\"))\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 947, in _json_schema_to_python_type\n des = [\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 948, in \n f\"{n}: {_json_schema_to_python_type(v, defs)}{get_desc(v)}\"\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 955, in _json_schema_to_python_type\n f\"str, {_json_schema_to_python_type(schema['additionalProperties'], defs)}\"\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 901, in _json_schema_to_python_type\n type_ = get_type(schema)\n File \"/usr/local/lib/python3.10/site-packages/gradio_client/utils.py\", line 863, in get_type\n if \"const\" in schema:\nTypeError: argument of type 'bool' is not iterable\nTraceback (most recent call last):\n File \"/home/user/app/app.py\", line 157, in \n main()\n File \"/home/user/app/app.py\", line 153, in main\n demo.launch()\n File \"/usr/local/lib/python3.10/site-packages/gradio/blocks.py\", line 2420, in launch\n raise ValueError(\nValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your proxy settings to allow access to localhost.\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"siggraph2022-sketch2pose.hf.space","stage":"READY"}]},"title":"Sketch2pose","isLikedByUser":false,"ai_short_description":"Estimate 3D character pose from a sketch","ai_category":"Pose Estimation","trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"SIGGRAPH2022","authorData":{"_id":"62e2f8c93715ed86cbc56e04","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659042690288-60f1abe7544c2adfd699860c.png","fullname":"SIGGRAPH 2022","name":"SIGGRAPH2022","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":117,"isUserFollowing":false},"colorFrom":"indigo","colorTo":"red","createdAt":"2022-04-05T02:40:27.000Z","emoji":"๐Ÿจ","id":"SIGGRAPH2022/Self-Distilled-StyleGAN","lastModified":"2024-06-10T04:35:19.000Z","likes":9,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"errorMessage":"Exit code: 1. Reason: d_all_models()\n File \"/home/user/app/model.py\", line 101, in _download_all_models\n self._load_model(name)\n File \"/home/user/app/model.py\", line 74, in _load_model\n path = hf_hub_download(\"public-data/Self-Distilled-StyleGAN\", f\"models/{model_name}_pytorch.pkl\")\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/utils/_validators.py\", line 114, in _inner_fn\n return fn(*args, **kwargs)\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1221, in hf_hub_download\n return _hf_hub_download_to_cache_dir(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1367, in _hf_hub_download_to_cache_dir\n _download_to_tmp_and_move(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1884, in _download_to_tmp_and_move\n http_get(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 459, in http_get\n r = _request_wrapper(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 396, in _request_wrapper\n hf_raise_for_status(response)\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/utils/_errors.py\", line 371, in hf_raise_for_status\n raise HfHubHTTPError(str(e), response=response) from e\nhuggingface_hub.utils._errors.HfHubHTTPError: 404 Client Error: Not Found for url: https://s3.us-east-1.amazonaws.com/lfs.huggingface.co/repos/b7/13/b71334506b16076912448ec3899ea02a5215f5906e6ba733beccdd33487a938e/a882a83ad273db2b3401dd151dbd9108650108f9d1e61876c93e7b2431fd33e3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA4N7VTDGOYNNAVQWR%2F20250223%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250223T104703Z&X-Amz-Expires=3600&X-Amz-Signature=28acbe19672c239a38f0c6931b8814415495773675074de6b7111653685fd22e&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27dogs_1024_pytorch.pkl%3B%20filename%3D%22dogs_1024_pytorch.pkl%22%3B&x-id=GetObject\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"siggraph2022-self-distilled-stylegan.hf.space","stage":"READY"}]},"title":"Self-Distilled StyleGAN","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"SIGGRAPH2022","authorData":{"_id":"62e2f8c93715ed86cbc56e04","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659042690288-60f1abe7544c2adfd699860c.png","fullname":"SIGGRAPH 2022","name":"SIGGRAPH2022","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":117,"isUserFollowing":false},"colorFrom":"red","colorTo":"purple","createdAt":"2022-03-31T19:20:05.000Z","emoji":"๐Ÿƒ","id":"SIGGRAPH2022/StyleGAN-XL","lastModified":"2024-06-10T04:31:31.000Z","likes":22,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"errorMessage":"Exit code: 1. Reason: e 31, in __init__\n self._download_all_models()\n File \"/home/user/app/model.py\", line 51, in _download_all_models\n self._load_model(name)\n File \"/home/user/app/model.py\", line 36, in _load_model\n path = hf_hub_download(\"public-data/StyleGAN-XL\", f\"models/{model_name}.pkl\")\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/utils/_validators.py\", line 114, in _inner_fn\n return fn(*args, **kwargs)\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1221, in hf_hub_download\n return _hf_hub_download_to_cache_dir(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1367, in _hf_hub_download_to_cache_dir\n _download_to_tmp_and_move(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 1884, in _download_to_tmp_and_move\n http_get(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 459, in http_get\n r = _request_wrapper(\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/file_download.py\", line 396, in _request_wrapper\n hf_raise_for_status(response)\n File \"/usr/local/lib/python3.10/site-packages/huggingface_hub/utils/_errors.py\", line 371, in hf_raise_for_status\n raise HfHubHTTPError(str(e), response=response) from e\nhuggingface_hub.utils._errors.HfHubHTTPError: 404 Client Error: Not Found for url: https://s3.us-east-1.amazonaws.com/lfs.huggingface.co/repos/61/b1/61b16630d183da741e86656b9492e8538ae0c75f990cf15eaf3795e1e865d14d/582cb72083291cc8a5d42cf5832e72879c57bde0ad7ae6a53b938577ad8a98a9?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA4N7VTDGOYNNAVQWR%2F20250226%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250226T140308Z&X-Amz-Expires=3600&X-Amz-Signature=fe6ec02dff5e716fb86624b21c3172f6777ab538f01ba787ef44e6d28f51ef28&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27imagenet16.pkl%3B%20filename%3D%22imagenet16.pkl%22%3B&x-id=GetObject\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"siggraph2022-stylegan-xl.hf.space","stage":"READY"}]},"title":"StyleGAN-XL","isLikedByUser":false,"ai_short_description":"Generate images using StyleGAN-XL model","ai_category":"Image Generation","trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"SIGGRAPH2022","authorData":{"_id":"62e2f8c93715ed86cbc56e04","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659042690288-60f1abe7544c2adfd699860c.png","fullname":"SIGGRAPH 2022","name":"SIGGRAPH2022","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":117,"isUserFollowing":false},"colorFrom":"red","colorTo":"purple","createdAt":"2022-08-14T23:10:33.000Z","emoji":"๐Ÿ“‰","id":"SIGGRAPH2022/DCT-Net","lastModified":"2022-08-14T23:42:55.000Z","likes":14,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"errorMessage":"-easycv, open-clip-torch, nerfacc, lpips, kornia, fastai, fairscale, face-alignment, easyrobust, ddpm-guided-diffusion, clip, accelerate\n Running setup.py install for sklearn: started\n Running setup.py install for sklearn: finished with status 'error'\n error: subprocess-exited-with-error\n \n ร— Running setup.py install for sklearn did not run successfully.\n โ”‚ exit code: 1\n โ•ฐโ”€> [18 lines of output]\n The 'sklearn' PyPI package is deprecated, use 'scikit-learn'\n rather than 'sklearn' for pip commands.\n \n Here is how to fix this error in the main use cases:\n - use 'pip install scikit-learn' rather than 'pip install sklearn'\n - replace 'sklearn' by 'scikit-learn' in your pip requirements files\n (requirements.txt, setup.py, setup.cfg, Pipfile, etc ...)\n - if the 'sklearn' package is used by one of your dependencies,\n it would be great if you take some time to track which package uses\n 'sklearn' instead of 'scikit-learn' and report it to their issue tracker\n - as a last resort, set the environment variable\n SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True to avoid this error\n \n More information is available at\n https://github.com/scikit-learn/sklearn-pypi-package\n \n If the previous advice does not cover your use case, feel free to report it at\n https://github.com/scikit-learn/sklearn-pypi-package/issues/new\n [end of output]\n \n note: This error originates from a subprocess, and is likely not a problem with pip.\nerror: legacy-install-failure\n\nร— Encountered error while trying to install package.\nโ•ฐโ”€> sklearn\n\nnote: This is an issue with the package mentioned above, not pip.\nhint: See above for output from the failure.\n\n[notice] A new release of pip available: 22.3.1 -> 23.1\n[notice] To update, run: python -m pip install --upgrade pip\nTraceback (most recent call last):\n File \"app.py\", line 5, in \n from modelscope.outputs import OutputKeys\nModuleNotFoundError: No module named 'modelscope'\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"siggraph2022-dct-net.hf.space","stage":"READY"}]},"title":"DCT Net","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"SIGGRAPH2022","authorData":{"_id":"62e2f8c93715ed86cbc56e04","avatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1659042690288-60f1abe7544c2adfd699860c.png","fullname":"SIGGRAPH 2022","name":"SIGGRAPH2022","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":117,"isUserFollowing":false},"colorFrom":"purple","colorTo":"gray","createdAt":"2022-08-03T03:53:01.000Z","emoji":"๐Ÿƒ","id":"SIGGRAPH2022/Text2Human","lastModified":"2022-08-03T03:54:40.000Z","likes":6,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"errorMessage":"Space failed to start. Exit code: 1","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"siggraph2022-text2human.hf.space","stage":"READY"}]},"title":"Text2Human","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false}],"buckets":[],"numBuckets":0,"numDatasets":0,"numModels":0,"numSpaces":7,"lastOrgActivities":[{"time":"2026-02-17T15:52:17.856Z","user":"AlekseyKorshuk","userAvatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1626345802673-60ec109280b434965987d1de.jpeg","type":"paper","paper":{"id":"2510.08270","title":"Evaluation of a Robust Control System in Real-World Cable-Driven Parallel Robots","publishedAt":"2025-10-09T14:28:58.000Z","upvotes":2,"isUpvotedByUser":true}},{"time":"2026-02-09T18:51:51.587Z","user":"akhaliq","userAvatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1674929746905-60f1abe7544c2adfd699860c.jpeg","type":"paper-daily","paper":{"id":"2602.04811","title":"SE-Bench: Benchmarking Self-Evolution with Knowledge Internalization","thumbnailUrl":"https://cdn-thumbnails.huggingface.co/social-thumbnails/papers/2602.04811.png","upvotes":2,"publishedAt":"2026-02-04T17:58:32.000Z","isUpvotedByUser":true}},{"time":"2026-02-02T16:51:23.893Z","user":"akhaliq","userAvatarUrl":"https://cdn-avatars.huggingface.co/v1/production/uploads/1674929746905-60f1abe7544c2adfd699860c.jpeg","type":"paper-daily","paper":{"id":"2601.22680","title":"Visual Personalization Turing Test","thumbnailUrl":"https://cdn-thumbnails.huggingface.co/social-thumbnails/papers/2601.22680.png","upvotes":2,"publishedAt":"2026-01-30T07:53:07.000Z","isUpvotedByUser":true}}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{},"paperView":false}">

AI & ML interests

None defined yet.

Recent Activity

Join organization by clicking here

This organization invites participants to add gradio demos/models/datasets for conference papers on huggingface (Note: This is not a official SIGGRAPH sponsored event)

Hugging Face Gradio SIGGRAPH 2022 event

SIGGRAPH organization is accepting Gradio demo submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit Gradio demos for any SIGGRAPH paper for a chance to win prizes, you can submit demos for multiple papers. Find tutorial on getting started with Gradio on Hugging Face here and to get started with the new Gradio Blocks API here

Hugging Face Models SIGGRAPH 2022 event

SIGGRAPH organization is accepting models submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit models for any SIGGRAPH paper for a chance to win prizes, you can submit models for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding models here

Hugging Face Datasets SIGGRAPH 2022 event

SIGGRAPH organization is accepting dataset submissions for SIGGRAPH 2022 papers from anyone for a chance to win prizes from Hugging Face, see prizes section and the leaderboard below. The deadline to submit demos is August 31st, 2022 (AOE Time Zone). For all partipants, feel free to submit datasets for any SIGGRAPH paper for a chance to win prizes, you can submit datasets for multiple papers. Find tutorial on getting started with repos on Hugging Face here and to get started with adding datasets here

Hugging Face Prizes

  • Top 5 spaces/models/datasets based on likes

LeaderBoard for Most Popular SIGGRAPH Spaces

See the SIGGRAPH Spaces Leaderboard

LeaderBoard for Most Popular SIGGRAPH Models

See the SIGGRAPH Models Leaderboard

LeaderBoard for Most Popular SIGGRAPH Datasets

See the SIGGRAPH Datasets Leaderboard

Hugging Face Spaces & Gradio for Showcasing your SIGGRAPH โ€˜22 Demo

In this tutorial, we will demonstrate how to showcase your demo with an easy to use web interface using the Gradio Python library and host it on Hugging Face Spaces so that conference attendees can easily find and try out your demos. Also, see https://gradio.app/introduction_to_blocks/, for a more flexible way to build Gradio Demos

๐Ÿš€ Create a Gradio Demo from your Model

The first step is to create a web demo from your model. As an example, we will be creating a demo from an image classification model (called model) which we will be uploading to Spaces. The full code for steps 1-4 can be found in this colab notebook.


1. Install the gradio library

All you need to do is to run this in the terminal: pip install gradio


2. Define a function in your Python code that performs inference with your model on a data point and returns the prediction

Hereโ€™s we define our image classification model prediction function in PyTorch (any framework, like TensorFlow, scikit-learn, JAX, or a plain Python will work as well):

def predict(inp):

inp = Image.fromarray(inp.astype('uint8'), 'RGB')

inp = transforms.ToTensor()(inp).unsqueeze(0)

with torch.no_grad():

prediction = torch.nn.functional.softmax(model(inp)[0], dim=0)

return {labels[i]: float(prediction[i]) for i in range(1000)}

3. Then create a Gradio Interface using the function and the appropriate input and output types

For the image classification model from Step 2, it would like like this:


inputs = gr.inputs.Image()

outputs = gr.outputs.Label(num_top_classes=3)

io = gr.Interface(fn=predict, inputs=inputs, outputs=outputs)

If you need help creating a Gradio Interface for your model, check out the Gradio Getting Started guide.

4. Then launch() you Interface to confirm that it runs correctly locally (or wherever you are running Python)


io.launch() 

You should see a web interface like the following where you can drag and drop your data points and see the predictions:

Gradio Interface

models 0

None public yet

datasets 0

None public yet