Open Skyexu opened 5 years ago
Hey @Skyexu, there's a parameter in the fit
method for disableNorm
and other options.
model.fit(X, y, is_instance_norm=False)
There doesn't appear to be a cv
method.
Edit: You can reference the underlying model with model._XLearnModel.cv(...)
, but I imagine this could break between versions.
@ankane ok thank u 😁
I can't find some function like
fm.disableNorm()
or.cv()
in sklearn api,does it work ,when set fold below?
fm_regressor = xl.FMModel(task='reg', metric='rmse', epoch=500, k=4, stop_window=10, lr=0.0001, reg_lambda=0.01,fold=5)
thank u