Classification of multiple sequential inputs

Hi everyone,

I’m trying to create a model taking multiple dimension vectors as sequences and output multiples values.
How would modify the Language model and the classification model to make it fit the FastAi Library ?
I’m under the impression that I need to create a Learner. Has the documentation being written yet ? If not, how could I help writing it ?

Thanks

1 Like

Yes we’d love help writing documentation! I don’t think you’d need a different Learner, since that class doesn’t do much (take a look at Rnn_Learner to see an example). You’ll need a dataset, which you can then pass to ModelDataLoader.create_dl to get a DataLoader. And you’ll need a pytorch nn.Module of course.

How should I start ? Writing DocString for example ?
Do you plan to start a ReadTheDocs page ?