apple / ml-pgdvs

[ICLR 2024] Official implementation of "Pseudo-Generalized Dynamic View Synthesis from a Video"
https://xiaoming-zhao.github.io/projects/pgdvs/
Other
21 stars 0 forks source link

Pretrained gnt model install #1

Closed lan-creator closed 4 months ago

lan-creator commented 4 months ago

Hello, I notice that there is a pretrained gnt model in your download_ckpts.sh like this:

if [ "${FLAG_ORIGINAL}" == "1" ]; then

GNT

if [ ! -f ${DATA_ROOT}/gnt/generalized_model_720000.pth ]; then
    gdown 1AMN0diPeHvf2fw53IO5EE2Qp4os5SkoX -O ${DATA_ROOT}/gnt/
fi 

However, I couldn't find this file on google drive and they tell me it not exist. How could I get this? Thanks!

Xiaoming-Zhao commented 4 months ago

It seems like GNT's repo changes the link in this commit.

I am not sure whether the checkpoint in the new url is the same as what I used.

To align with the one I used before, you can download the checkpoint from here.

Hope this helps.

lan-creator commented 4 months ago

Oh thank you, this help me!