-
Notifications
You must be signed in to change notification settings - Fork 204
Open
Labels
Description
Hi @ibayer, I'd like to load X_train separately when it is to big to fit at a time, i.e., instead of
fm = bpr.FMRecommender(n_iter=10,
init_stdev=0.01, l2_reg_w=.5, l2_reg_V=.5, rank=10,
step_size=.002, random_state=11)
fm.fit(X_train, compares)
I'd like to do something like this..., can I get some advice???
for i in range(10):
compares = sklearn.utils.shuffle(compares)
for [some_parts] in compares:
fm.fit(X_train[some_parts], compares[some_parts])
where instead of creating a csc_matrix X_train, parts of them are created and loaded for fitting fm.
Reactions are currently unavailable