yerfor / GeneFacePlusPlus

GeneFace++: Generalized and Stable Real-Time 3D Talking Face Generation; Official Code
MIT License
1.48k stars 216 forks source link

Does NerfRender support multi-batch inference? #163

Open Happenmass opened 5 months ago

Happenmass commented 5 months ago

To accelerate the inference process, I attempted to adapt the inference code for multi-batch processing. However, I encountered an issue where the original NeRF rendering code appears to be incompatible with a batch_size greater than 1. This is primarily due to numerous operations, such as .view(-1,), that eliminate the batch dimension. Could you please provide any insights or plans regarding the implementation of multi-batch inference? Is such an adaptation feasible?To accelerate the inference process, I attempted to adapt the inference code for multi-batch processing. However, I encountered an issue where the original NeRF rendering code appears to be incompatible with a batch_size greater than 1. This is primarily due to numerous operations, such as .view(-1,), that eliminate the batch dimension. Could you please provide any insights or plans regarding the implementation of multi-batch inference? Is such an adaptation feasible?

xiao-keeplearning commented 2 months ago

Have you solve this problem?