Does GDL treat node/edge features as numbers or class?

if input features are 0, 1, 2, does DGL treat them as real numbers or just different class? Thanks!

DGL only allows you to store node/edge features in a DGLGraph object and it does not matter whether they are FloatTensor or LongTensor.