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
Documentation for use cases associated with the dataset in #4
Use Cases
This is a major feature so it would be worth it to showcase a few examples for how this can be used for most problems. Here is an outline of some ways this can be used
Coordinate-Based Interpolation
This is useful for Interpolation using Neural Fields (a.k.a. Implicit NNs, Coordinate-Based NNs). Some methods include NerFs or even GPs.
Use Cases
This is a major feature so it would be worth it to showcase a few examples for how this can be used for most problems. Here is an outline of some ways this can be used
Coordinate-Based Interpolation
This is useful for Interpolation using Neural Fields (a.k.a. Implicit NNs, Coordinate-Based NNs). Some methods include NerFs or even GPs.
Model Formulation
Input Variables:
The$\mathbf{x}$ is a 3-dimension vector with of
[lat,lon,time]
.Output Variables:
The output$\mathbf{y}$ is a 2-dimensional vector with of
[ssh, sst]
.Full-Field Interpolation
This is useful where we want the full field to go into our model
Model Formulation:
Input Variables:
The$\mathbf{X}$ is a multi-dimensional array of rank 4 of size
[lat x lon x time x variables]
.Example Applications
GPs, NerFs
x=[lat,lon,time]
f=[ssh,sst]
CNN
f=u(lat x lon x time x var)
x=(lat,lon,time,mask)
4DVar
f=u_sim(lat x lon x time x vars)
y=u_obs(lat x lon x time x vars)
x=(lat,lon,time,mask)
GPs, NerFs
f=[var1,var2,...]
c=[var1,var2,...]
x=[lat,lon,time]
FNO, MNO
f=u(lat x lon x time x var)
g=a(lat x lon x time x var)
x=(lat,lon,time,mask)
The text was updated successfully, but these errors were encountered: