Premium Content Waitlist Banner

Digital Product Studio

Tencent Drops Hunyuan3D-DiT-v2-mv to Create Ultra-Realistic 3D Shapes in Seconds

Tencent Drops Hunyuan3D-DiT-v2-mv to Create Ultra-Realistic 3D Shapes in Seconds

In today’s world of digital creation, 3D modelling has always been a tough skill to master. Artists and designers spend years learning complex software just to create basic models. But things are changing fast. AI-powered tools like Trellis 3D, GEN3C by NVIDIA, Stable Fast 3D, etc., are making it easier than ever to turn ideas into 3D shapes without the huge learning curve. Recently, Tencent has also released one such amazing 3D tool, Hunyuan3D-2.0. Building upon it, the company dropped a new 3D tool, the Hunyuan3D-DiT-v2-mv model, with added powers. Let’s explore this tool and learn how to get started!

What is Hunyuan3D-DiT-v2-mv?

Hunyuan3D-DiT-v2-mv or Hunyuan3D-2mv is Tencent’s newest multiview 3D generation model. It’s specially designed to create detailed 3D shapes from multiple 2D images. As discussed above, this powerhouse tool is actually a fine-tuned version of the original Hunyuan3D-2 model but with added support for multiview-controlled shape generation.

What makes this 3D model stand out is how it can understand different angles of the same object. You can feed it front, back, and side views of something, and it will build a complete 3D model that matches all those perspectives. This is huge for anyone who needs to create 3D content quickly and accurately.

Tencent Drops Hunyuan3D-DiT-v2-mv to Create Ultra-Realistic 3D Shapes in Seconds
Tencent Drops Hunyuan3D-DiT-v2-mv to Create Ultra-Realistic 3D Shapes in Seconds
Tencent Drops Hunyuan3D-DiT-v2-mv to Create Ultra-Realistic 3D Shapes in Seconds

How Hunyuan3D-DiT-v2-mv Works

As this model is a part of Tencent’s larger Hunyuan3D 2.0 system, the whole setup includes two main parts:

1. Hunyuan3D-DiT

 This is the shape generation model that creates the basic 3D geometry

2. Hunyuan3D-Paint

 This is the texture synthesis model that adds realistic surfaces to the shapes

Together, these models work like a digital sculptor and painter team. First, Hunyuan3D-DiT-v2-mv creates the shape based on your images, and then Hunyuan3D-Paint adds all the colours and textures that make it look real.

The Architecture Behind Hunyuan3D-DiT-v2-mv

This multiview 3D model is built on something called a “scalable flow-based diffusion transformer.” It uses advanced AI techniques to understand what makes a 2D image work in 3D space. What’s really cool about this tool is how it can take multiple views of an object and combine them into one accurate 3D model. The model is also designed to create geometry that properly aligns with your input images. 

Hunyuan3D-2mv Model Series

Tencent has released two versions of this multiview 3D generation tool. 

1. Hunyuan3D-DiT-v2-mv (Basic)

This is the main multiview image-to-shape model that can handle multiple input images. Access it here.

2. Hunyuan3D-DiT-v2-mv-Fast (Fast)

This is a faster version using guidance distillation to speed up the process. Access it here.

Both of these models are 1.1B in size and can be downloaded from Huggingface.

Getting Started with Hunyuan3D-DiT-v2-mv

Want to try this model yourself? Here’s a simple guide to get you started:

1. Installation Requirements

First, you’ll need to install PyTorch from the official site. Then, install the other requirements with:

pip install -r requirements.txt

# for texture

cd hy3dgen/texgen/custom_rasterizer

python3 setup.py install

cd ../../..

cd hy3dgen/texgen/differentiable_renderer

python3 setup.py install

2. Using Hunyuan3D-DiT-v2-mv

Here’s a basic example of how to use this tool:

from hy3dgen.shapegen import Hunyuan3DDiTFlowMatchingPipeline

pipeline = Hunyuan3DDiTFlowMatchingPipeline.from_pretrained(

    'tencent/Hunyuan3D-2mv',

    subfolder='hunyuan3d-dit-v2-mv',

    use_safetensors=True,

    device='cuda'

)

mesh = pipeline(

    image={

        "front": "your front view image.png",

        "left": "your left view image.png",

        "back": "your back view image.png"

    },

    num_inference_steps=30,

    octree_resolution=380,

    num_chunks=20000,

    generator=torch.manual_seed(12345),

    output_type='trimesh'

)[0]

This code loads the model and creates a 3D model from three different views of your object.

Ways to Use Hunyuan3D-DiT-v2-mv

There are several ways you can use this amazing tool:

1. Direct Code Integration

As shown above, you can import the model directly into your Python code. This gives you the most control over how the model works.

2. Gradio App

You can run a local web interface using Gradio:

python3 gradio_app.py --model_path tencent/Hunyuan3D-2mv --subfolder hunyuan3d-dit-v2-mv --texgen_model_path tencent/Hunyuan3D-2

This creates a user-friendly interface where you can upload images and generate 3D models without writing code.

3. API Server

You can set up a local API server:

python api_server.py --host 0.0.0.0 --port 8080

Then you can make API calls to generate models:

img_b64_str=$(base64 -i assets/demo.png)

curl -X POST "http://localhost:8080/generate" \

     -H "Content-Type: application/json" \

     -d '{

           "image": "'"$img_b64_str"'",

         }' \

     -o test2.glb

4. Blender Addon

If you use Blender, you can install the Hunyuan3D addon and access the model directly in your 3D workflow. This lets you generate models right inside Blender without switching between different programs.

5. Official Website

Don’t want to install anything? Visit the official Hunyuan3D website to try it out online.

Hunyuan3D-DiT-v2-mv MultiView Model Demo

The multiview capabilities of Hunyuan3D-DiT-v2-mv are pretty amazing. In the Hugging Face demo, you can upload up to four images showing different views of your object:

  • Front view
  • Back view
  • Left view
  • Right view

After uploading your images, you just click “Gen Shape”, and the AI does its magic. 

Once you’re happy with your 3D model, you can download it and use it in any 3D software.

Key Benefits of Hunyuan3D-2mv

This model stands out from other 3D generation tools in several ways:

1. Multiview Input

Unlike many other tools that work with just one image, it can understand multiple views of the same object.

2. High Detail

The model creates geometry with impressive detail, capturing the small features that make objects look realistic.

3. Fast Generation

Especially with the fast version, you can get results in seconds rather than minutes.

4. Easy Integration

Whether you’re a developer or a 3D artist, there are multiple ways to use the model in your existing workflow.

Wrapping Up

Hunyuan3D-DiT-v2-mv is indeed a creative 3d modelling tool that opens up new possibilities for digital artists and designers. The multiview approach solves one of the biggest problems in AI-generated 3D: getting the back of an object to look right when you only have a front view.

With this model, you can control how every side of your model looks, making it much more useful for serious projects. Moreover, you can create complete, production-ready 3D assets in a fraction of the time it would take using traditional methods.

| Latest From Us

SUBSCRIBE TO OUR NEWSLETTER

Stay updated with the latest news and exclusive offers!


* indicates required
Picture of Faizan Ali Naqvi
Faizan Ali Naqvi

Research is my hobby and I love to learn new skills. I make sure that every piece of content that you read on this blog is easy to understand and fact checked!

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

Huawei Ascend 910D Could Crush Nvidia’s H100 – Is This the End of U.S. Chip Dominance?

Huawei Ascend 910D Could Crush Nvidia’s H100 – Is This the End of U.S. Chip Dominance?(Image credit: chatgpt)

Huawei Technologies is making a global statement with the launch of the Ascend 910D, a powerful AI chip aimed directly at challenging Nvidia’s H100. Announced on April 27, 2025, the Ascend 910D marks a major step in China’s journey to achieve technological independence amidst tightening U.S. export controls.

Huawei Ascend 910D: The Future of AI Hardware

The Huawei Ascend 910D is positioned as the company’s most powerful AI processor yet, designed to match or even outperform Nvidia’s market-leading H100 chip. With Nvidia’s H100 banned from China since 2022, Huawei’s new chip offers a critical lifeline to Chinese tech giants.

Huawei has partnered with major players like Baidu to test the Ascend 910D, with sample shipments expected by late May 2025. Meanwhile, the 910C version is already rolling out for mass production, attracting interest from major companies like ByteDance.

According to The Wall Street Journal, Huawei claims the Ascend 910D could surpass the H100 in performance, a move that would disrupt Nvidia’s 80% share of the global AI chip market.

Why Huawei’s Ascend 910D Matters Now

The release of the Huawei Ascend 910D comes at a time when Chinese AI developers are urgently seeking high-performance alternatives. U.S. sanctions have limited access to Nvidia’s H20 chips, creating a surge in demand for homegrown solutions.

Backed by China’s $365 billion semiconductor fund, Huawei’s rapid progress highlights a broader strategic push to dominate AI hardware. Analysts say the 910C has already become the hardware of choice for many Chinese companies, and the 910D could cement Huawei’s leadership further.

Huawei’s Homegrown Innovation Powers Through Sanctions

The Ascend 910D is also a symbol of Huawei’s resilience. Despite facing U.S. sanctions, Huawei has leveraged domestic manufacturing capabilities to produce its new chips. Some reports suggest Huawei might even be using Samsung’s HBM memory to boost performance.

While challenges remain, including competing with Nvidia’s mature software ecosystem like CUDA, Huawei’s momentum is undeniable. Chinese firms eager for powerful AI chips have already begun testing the 910D, helping Huawei close the gap in global competition.

Huawei Ascend 910D vs Nvidia H100: The Global Stakes

Huawei’s chip strategy could reshape the global AI race. If the Huawei Ascend 910D meets or exceeds expectations, it could capture significant market share within China and beyond.

In a world increasingly cautious of U.S. tech dominance, Huawei’s success with the Ascend 910D could accelerate global diversification in AI hardware. This could be a major win for China’s broader ambitions in fields like autonomous vehicles, smart cities, and defense technologies.

Despite hurdles in scaling production and perfecting its AI software stack, Huawei, with strong government support and a growing domestic market, is ready to challenge the global AI status quo.

| Latest From Us

Picture of Faizan Ali Naqvi
Faizan Ali Naqvi

Research is my hobby and I love to learn new skills. I make sure that every piece of content that you read on this blog is easy to understand and fact checked!

ByteDance Drops UI-TARS-1.5, The AI Agent That Can Control Your Screen

ByteDance Drops UI-TARS-1.5, The AI Agent That Can Control Your Screen

Have you ever wished your computer could just do things for you? Not just answer questions, but actually click buttons, type text, and navigate websites? Well, that dream just got real. ByteDance recently dropped UI-TARS-1.5, a breakthrough AI agent that can see your screen and control it just like you would, with your mouse and keyboard. Most AI assistants can chat with you and maybe set an alarm. UI-TARS-1.5 goes way beyond that; it watches your screen and takes action.

What is UI-TARS-1.5

UI-TARS-1.5 is an open-source multimodal agent that can look at your screen, understand what it sees, and then take over your mouse and keyboard to get things done. What’s really cool is how it thinks before acting, it plans its moves. Let’s say you ask it to organize your messy desktop files. Instead of just giving you tips, it’ll actually create folders, drag files into them, and even rename things if needed,  all while you sit back and watch the magic happen.

How UI-TARS-1.5 AI Agent Works

The core of UI-TARS-1.5’s abilities lies in its enhanced perception system. Unlike other AI systems that require special access to understand interfaces, UI-TARS-1.5 works by looking at your screen, just like you do.

The agent has been trained on massive datasets of GUI screenshots, allowing it to recognize buttons, text fields, icons, and other interface elements across different apps and websites. It doesn’t need custom integration with each program; it can learn to use virtually any software with a visual interface.

When it looks at your screen, it’s not just seeing pixels; it understands context, identifies interactive elements, and plans how to navigate them to achieve your goals.

Example Tasks Performed by UI-TARS-1.5

The Technology Behind UI-TARS-1.5

It builds on ByteDance’s previous architecture but adds several key innovations:

1. Enhanced Perception: The AI understands context on your screen and can precisely caption what it sees

2. Unified Action Modeling: Actions are standardized across platforms for precise interaction

3. System-2 Reasoning: The agent incorporates deliberate thinking into its decision-making

4. Iterative Training: It continuously learns from mistakes and adapts to new situations

Perhaps most impressive is UI-TARS-1.5’s scaling ability; the longer it works on a task, the better it gets. This shows its ability to learn and adapt in real-time, just like humans do.

UI-TARS-1.5 vs. OpenAI CUA and Claude 3.7

ByteDance didn’t just create another AI agent; they built a record-breaker. In head-to-head tests against the OpenAI CUA and Claude 3.7, UI-TARS-1.5 came out on top:

  • In computer tests (OSworld), it scored 42.5%, while OpenAI CUA got 36.4%, and Claude 3.7 managed only 28%.
  • For browser tasks, it achieved 84.8% success in WebVoyager tests.
  • On phone interfaces, it reached 64.2% in Android World tests.
  • The secret to UI-TARS-1.5’s success? It can spot things on your screen with incredible accuracy. On the challenging ScreenSpotPro benchmark, which tests how well AI can locate specific elements, it scored 61.6%, more than double what OpenAI CUA (23.4%) and Claude 3.7 (27.7%) scored.

What makes these scores even more impressive is that the model gets better the longer it works on something. It doesn’t get tired or bored; it just keeps learning and improving with each step.

Key Tasks Performed by UI-TARS-1.5 AI Agent

1. Daily Computer Tasks

Think about all those repetitive tasks you handle daily: sorting emails, organizing files, updating spreadsheets. UI-TARS-1.5 can take these off your plate by watching and learning how you work.

In one demonstration, it was asked to transfer data from a LibreOffice Calc spreadsheet to a Writer document while keeping the original formatting. The AI handled it flawlessly.

What’s impressive isn’t just that it completed the task; it’s how it handled unexpected situations. When its first attempt to select data didn’t work perfectly, it recognized the problem, adjusted its approach, and tried again until successful.

2. Web Research

While UI-TARS-1.5 wasn’t specifically designed for deep research, it shows remarkable ability to navigate the web and find information. In SimpleQA tests, it scored 83.8, outperforming GPT-4.5’s 60.

Imagine asking, “Find me the latest research on climate change solutions and create a summary document.” It could open your browser, search for relevant information, organize findings, and even create a document with what it learns—all by controlling your computer just like you would.

3. Gaming Tasks

One of the most exciting applications for UI-TARS-1.5 is gaming. ByteDance tested the AI on 14 different games from poki.com, and the results were mind-blowing. It achieved perfect 100% scores across nearly all games tested.

Games like 2048, Snake, and various puzzle games pose no challenge for this AI. What’s even more impressive is that it gets better the longer it plays, learning from each move and refining its strategy.

The ultimate test came with Minecraft. It outperformed specialized gaming AI by a significant margin, successfully mining blocks and defeating enemies while navigating the 3D environment using only visual input and standard controls.

How to Get Started With UI-TARS-1.5

ByteDance has open-sourced this model, making it available for the research community. Developers can access it, which is trained from Qwen2.5-VL-7B. They’ve also released UI-TARS-desktop, an application that lets users experiment with the technology directly. This open approach encourages collaboration and further development from the community.

The Unlimited Benefits of UI-TARS-1.5

UI-TARS-1.5 represents a fundamental shift in human-computer interaction. Instead of you adapting to how computers work, it makes computers adapt to how humans work.

This approach makes AI immediately useful across countless applications without requiring special compatibility. You can use it to create presentations, manage email, organize photos, or fill out tax forms, all using standard software you already own.

For businesses, it could automate countless routine tasks. For individuals, it means having a digital assistant that can take real action instead of just offering advice.

With UI-TARS-1.5, ByteDance has potentially changed how we’ll interact with computers for years to come. As this technology continues to develop, the line between what humans do and what AI assistants do will continue to blur, freeing us to focus on more creative and fulfilling tasks.

| Latest From Us

Picture of Faizan Ali Naqvi
Faizan Ali Naqvi

Research is my hobby and I love to learn new skills. I make sure that every piece of content that you read on this blog is easy to understand and fact checked!

Diffusion Arc, the Ultimate Open Database for AI Image Models – A Civitai Alternative

Diffusion Arc, the Ultimate Open Database for AI Image Models, A Civitai Alternative

If you’ve been creating AI art, you’re probably familiar with Civitai. For years, it’s been the go-to platform for finding AI image models. But recently, Civitai has made some controversial changes that have upset many users. Their new subscription-based access to popular models, stricter content moderation policies, and the introduction of AI compute credits have left many creators feeling priced out and restricted. Just scroll through any AI art community forum, and you’ll see countless threads from frustrated users looking for alternatives. Enter Diffusion Arc – the free, open database for AI image models that’s rapidly winning over disillusioned Civitai users. It has launched at the perfect time when the community needs it the most.

What Is Diffusion Arc?

Diffusion Arc is a fresh community-driven platform where you can freely browse, upload, and download AI image generation models. It offers what many creators have been desperately seeking: a truly open platform without the paywalls and arbitrary restrictions that have recently plagued Civitai.

The platform was originally launched under a different name, Civit Arc, and has since rebranded to Diffusion Arc to better reflect its independent vision. What makes this stand out is its commitment to being completely free while offering a safe haven for models that might be removed elsewhere.

Key Features of Diffusion Arc

The platform comes packed with features designed to make sharing and discovering AI models easier than ever:

1. Easy, Restriction-Free Uploads

Unlike some other platforms that have begun implementing stricter content policies, Diffusion Arc allows you to upload your models with minimal restrictions. This is particularly valuable for creators who’ve had their content removed from other sites without clear explanations.

2. Always Free Downloads

One of Diffusion Arc’s core promises is that all models will remain free to download, without paywalls or limitations. No premium tiers, no subscription fees! Just open access for everyone in the community.

3. Wide Model Compatibility

Diffusion Arc supports models from various popular platforms, including Stable Diffusion, Flux, and others. This broad compatibility ensures that creators aren’t limited by technical constraints when sharing their work.

4. Community-First Approach

Built by AI enthusiasts for AI enthusiasts, the platform prioritizes community needs. The team is actively working on improvements based on user feedback, with plans to eventually make the platform open-source.

Explore Various AI Image Models on Diffusion Arc

When you first visit Diffusion Arc, you might be amazed by just how many AI image models are available at your fingertips. From realistic portrait generators to fantasy art creators and abstract pattern makers – there’s something for every style and need.

What makes Diffusion Arc special is how they’ve streamlined the experience of finding exactly what you need. Their search and filter options let you narrow down models by style, complexity, and even how recently they were added.

The platform already hosts many popular models that AI artists love:

  • Dreamshaper v9.0 (4.9 rating) – Specializes in realistic portraits
  • RealisticVision v5.1 (4.8 rating) – Creates photo-realistic images
  • Deliberate v3.0 (4.7 rating) – A versatile creator model
  • Anything XL v4.5 (4.9 rating) – Perfect for anime-style images
  • SDXL Turbo v1.0 (4.6 rating) – Known for fast generation
  • Juggernaut XL v8.0 (4.8 rating) – Excels at high-detail images

These models offer something for everyone, whether you’re into realistic portraits, anime, or highly detailed artistic creations. And there are many, many more!

AI Art Creation Accessible for All Users

The platform provides clear instructions for each model, explaining how to use it and what kinds of results you can expect. They even offer simple guides for getting started with the basic software you’ll need to run these models.

This approach has opened up AI art to:

  • Students exploring creative technology
  • Small business owners creating marketing materials
  • Writers who want to visualize their stories
  • Hobbyists just having fun with new tech

How to Get Started with Diffusion Arc Today

Ready to dive into this platform and see what all the buzz is about? Getting started is easier than you might think:

1. Visit the Diffusion Arc website and create a free account

2. Browse through the categories or use the search feature to find models that interest you

3. Download the models you want to try

4. Follow their beginner-friendly guides to set up the necessary software

5. Start creating!

The best part? You don’t need a super powerful computer to begin. While some advanced models do require more processing power, many entry-level models will run just fine on an average laptop. Diffusion Arc clearly marks which models are “lightweight” so beginners can start without investing in expensive hardware.

What Updates Will We Be Expecting

As AI technology continues to evolve at lightning speed, Diffusion Arc is positioning itself to grow right alongside it. The platform will regularly add new features based on user feedback and keep up with the latest developments in AI image generation.

The team behind Diffusion Arc has hinted at some exciting updates coming soon, including:

  • Torrent download functionality that will make getting large models much faster and more reliable
  • More interactive tutorials for beginners
  • Enhanced model comparison tools
  • Collaborative creation spaces
  • Mobile-friendly options for on-the-go creation

With each update, Diffusion Arc gets closer to their vision of making advanced AI creative tools as common and accessible as word processors or photo editors.

The Future of AI Image Generation With Diffusion Arc

By creating a space where advanced AI technology meets user-friendly design, Diffusion Arc is democratizing digital art creation. Whether you’re a curious beginner or a seasoned AI art creator looking for a better Civitai alternative, Diffusion Arc deserves a spot on your bookmarks bar.

The platform continues to add new models, features, and improvements almost daily, making it an exciting time to join the Diffusion Arc community. Who knows? The next amazing AI creation trending online might be yours, made with a model you discovered through Diffusion Arc.

So what are you waiting for? Jump into the world of AI image creation with Diffusion Arc – where your imagination is the only limit.

| Latest From Us

Picture of Faizan Ali Naqvi
Faizan Ali Naqvi

Research is my hobby and I love to learn new skills. I make sure that every piece of content that you read on this blog is easy to understand and fact checked!

Don't Miss Out on AI Breakthroughs!

Advanced futuristic humanoid robot

*No spam, no sharing, no selling. Just AI updates.

Ads slowing you down? Premium members browse 70% faster.