Could you provide an explanation of parameters in params.py ?
See original GitHub issueHi ! Thanks for your amazing work.
I’d like to use it as a base for further works. Could you please provide an explanation for the numpy matrices loaded in params.py
? In particular:
- Keypoints
- w_shp
- w_exp
- u_shp
- u_exp
I could be wrong but I am under the impression that these are base mesh data that are then deformed by the network’s prediction.
Thanks a lot for your help !
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Four Types of Parameters and Two Types of Arguments in ...
Parameters are the variables in the definition of a function. In other words, they exist in the function signature and will be used...
Read more >24. Passing Arguments | Python Tutorial
The passing of parameters and arguments in Python. Explaining the difference between call by object sharing, call by value and call by name....
Read more >What does * mean as a parameter in python? [duplicate]
It means all arguments afterwards are keyword-only. As said in the official glossary under the word parameter: keyword-only: specifies an ...
Read more >Python - Function Parameters and Arguments with Code ...
Functions may or may not have parameters - A parameter is the function input specified in the function definition - An argument is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It is the 3DMM basis constructed by PCA, the original shape is 159645x199 but I remove the last 159 dimensions to perform acceleration, which has little effect on the reconstructed face.
Why there’s u_shp and u_exp separately? What 's the meaning of u_exp here ?