-
[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…
-
[DevLog|UE5]Chatbot in Unreal with ChatGPT(Chinese version)
Error happened.
-
[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…
-
[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.
-
[Deep Learning]ONNX Runtime C++(2): Inferencing ONNX Model of Dynamic Input/Output Size Using CUDA
Some ONNX models have dynamic input/output size: In the above example, onnxruntime will set dimensions of batch_size, height, width to -1. NOTE: I tested it on onnxruntime v1.13.1 and onnxruntime-win-x64-gpu-1.13.1.zip. Some tips to avoid runtime errors(these errors often happen, and waste me a lot of time😱): We should Specify its shape when creating input tensors,…
-
[UE5]Set Fixed Camera in the Scene
After adjusting the camera’s parameter, now we can get: Error happened.
-
[Deep Learning]ONNX Runtime C++(1):DL Model Inference Using ONNX Runtime
Example: FnsCandyStyleTransfer This example is based on microsoft/onnxruntime-inference-examples. I use Windows x64 platform, so LibPNG is a dependency: Compile and use libpng and zlib in Visual Studio References Error happened.