-
[DevLog|UE5]Chatbot in Unreal with ChatGPT(Chinese version)
Error happened.
-
[Devlog]Deep Face Swap in Unreal 5 in Real-time
Finally, I got this. Deep face swap in unreal 5 in real-time! Error happened.
-
[DevLog] It seems I have some bugs to fix… but strangely it’s a bit of cool.
In unreal 5.1, I extract the frame in rendering pipeline, and then process it on CPU, then feed it back to GPU. Ouch! Error happened.
-
Showcase | More Old Demos
Automatic Animation Production In the Unreal Editor Skinning For Human Faces Deep Learning For IK One is from motion caption data and the another is from deep learning models for IK(Input is 3D joint positions). Deep Learning For In-betweening Real-time Face Swap Customed LiveLink Cinematics | Assets Editing Chat Bot Pixel Streaming MoCap Error happened.
-
[UE5]Clarification of Different Dependency Lists in a Build.cs File
I have the same question with darkgaze‘s question in the Unreal forums. It is kind of annoying to decide which dependency lists property should I use. PublicIncludePathModuleNames (List<String>) List of modules names (no path needed) with header files that our module’s public headers needs access to, but we don’t need to “import” or link against.…
-
[LeetCode] Graphs
Types of graphs: Terminologies: 1 Disjoint Set 1.1 Overview of Disjoint Set Q: Given the vertices and edges between them, how could we quickly check whether two vertices are connected? The disjoint set is a data structure(others might refer to it as an algorithm), also known as union-find data structure. The primary use of disjoint…
-
[Deep Learning | ChatGPT]Learn Transformers(1) Tensors: It’s All About APIs!
Environment: TensorFlow Code Error happened.
-
[Deep Learning | ChatGPT]Learn Transformers(0) Let’s Do Some Research!
I have not done much deep learning research for about one year, because I have focused on development development and deep learning model deployment in Unreal 5. These days, ChatGPT have gained much popularity in our world, and we do have some technical need to learn text-based interface of human-computer interaction. I have done deep…
-
[LeetCode 875] Koko Eating Bananas
When I first came across this problem, I was stuck. I could not write the solution in 20 minutus. I wondered whether it should be solved by dynamic programming, or whether it should be done by 2D state variable. Or it should be done by greedy algorithm? When I checked out the solution, I found…
-
[DevLog]Passing Custom Data in Unreal LiveLink
Based on some limited information, I’ve finally solved this problem: Error happened.
-
[UE5]How to Create a Plugin that Works with DLLs, Packaging, External Files
In this tutorial, my goal is to create a plugin that works with external third-party library (using dll). Besides, I want to make sure that this plugin will still work well when packaging an executable and fixing some path issues. NOTES: All tested in Unreal 5.0.3 Step 1: Creating a Third-party Library. I will create…