Spaces:
Build error
Build error
File size: 1,256 Bytes
19677a1 0d35ba8 19677a1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import os
import flax
from jax import random
from flax.training import checkpoints
from jaxnerf.nerf import models
from jaxnerf.nerf import utils
from demo.src.config import NerfConfig, MODEL_DIR, MODEL_NAME, FILE_ID
rng = random.PRNGKey(0)
# TODO @Alex: make image size flexible if needed
dummy_rays = random.uniform(rng, shape=NerfConfig.IMAGE_SHAPE)
dummy_batch = {"rays": utils.Rays(dummy_rays, dummy_rays, dummy_rays)}
dummy_lr = 1e-2
def load_trained_model(model_dir, model_fn):
model, init_variables = init_model()
optimizer = flax.optim.Adam(dummy_lr).create(init_variables)
state = utils.TrainState(optimizer=optimizer)
del optimizer, init_variables
assert os.path.isfile(os.path.join(model_dir, model_fn))
state = checkpoints.restore_checkpoint(model_dir, state,
prefix=model_fn)
return model, state
def init_model():
_, key = random.split(rng)
model, init_variables = models.get_model(key, dummy_batch,
NerfConfig)
return model, init_variables
if __name__ == '__main__':
_model_dir = '../ship_fewshot_wsc'
_model_fn = 'checkpoint_345000'
_model, _state = load_trained_model(_model_dir, _model_fn)
|