You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I tried to run cvit_4x4 for navier stoke problem. I would like to know how to get the original state or size of 128 by 128 while the num_querry_point is 1024?
thanks
The text was updated successfully, but these errors were encountered:
Hi,
I just want to clarify from eval.py, is the code here will give me the result of 128,128, 3 (height, width, channel)? from my test, the model output is 1024, 3 (num querry point, channel)
l2_error_list = []
for batch in test_loader:
batch = jax.tree_map(lambda x: jnp.array(x), batch)
x, y = batch
pred = model.apply(state.params, x, coords)
pred = pred.reshape(-1, 1, h, w, c)
or
pred = rollout(
state,
x,
coords,
prev_steps=config.dataset.prev_steps,
pred_steps=config.dataset.pred_steps,
rollout_steps=config.eval.rollout_steps,
)
Hi,
I tried to run cvit_4x4 for navier stoke problem. I would like to know how to get the original state or size of 128 by 128 while the num_querry_point is 1024?
thanks
The text was updated successfully, but these errors were encountered: