Model weights
This page will contain links to pre-trained FootNet weights and instructions for loading them into the package. Replace these placeholders with the actual hosting location for the weights.
Available weights
- Surface FootNet — SurfaceFootNet_in_sample.pth
- Column FootNet — ColumnFootNet_in_sample.pth
Usage
from SurfaceFootNet import SurfaceFootNet
# Loading FootNet model
model_path = "../models/SurfaceFootNet_in_sample.pth"
model = SurfaceFootNet(model_path=model_path)
from ColumnFootNet import ColumnFootNet
# Loading FootNet model
model_path = "../models/ColumnFootNet_in_sample.pth"
model = ColumnFootNet(model_path=model_path)