Closed 4ound closed 5 years ago
@4ound Hi, thanks for the attention of xLearn.
We use uint32 by default because of the performance concern. You can change it to uint64 for your case.
For distributed training, we have an internal version of that but I think it's not ready to release. I will release it in the future, but we don't have a concrete deadline.
Thanks!
Thanks
Number of features * k > uint32 You'll get error "Segmentation fault" while training I read your code and found two lines, where
typedef uint32 index_t;
I've changed it totypedef uint64 index_t;
After that everything worked ok. But I'm not sure, is it correct? Could it broke some computations?Distributed learning Judging by your docs, model should support distributed training. Could you tell the idea of implementation? Will you implement it soon?