Related topic: Do we need to replace data.processor when loading learner?
I’m migrating my code to V2 and wonder if I need to do the same. But I can’t find the conterparty of the processor in the previous version of from_df
in V2:
TabularDataLoaders.from_df
[source]
TabularDataLoaders.from_df
(df
,path
='.'
,procs
=None
,cat_names
=None
,cont_names
=None
,y_names
=None
,y_block
=None
,valid_idx
=None
,bs
=64
,shuffle_train
=None
,shuffle
=True
,val_shuffle
=False
,n
=None
,device
=None
,drop_last
=None
,val_bs
=None
)
What is the right way to do so?