Sandy4321

Results 306 comments of Sandy4321

we see from page 84 https://gmoein.github.io/files/Amazon%20SageMaker.pdf dynamic_feat (optional)—An array of arrays of floating-point values or integers that represents the vector of custom feature time series (dynamic features). If you set...

can integer represent categorical? or dynamic_feat may have only numerical values?

seems to be this works import girth.synthetic as gsyn import girth.factoranalysis as gfa import girth.common as gcm import numpy as np if __name__ == '__main__': discrimination = np.random.uniform(-2, 2, (20,...

Great for answer I mean read data row by row Like streaming online data Seems to widely used package is wappal wabit Also I found this link https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/binary.html#criteo_tb So data...

Data on this link is already preprocessed https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/binary.html#criteo_tb And size is 370gb zipped So it would be great to try something simple like logistics regression By the link to code...

https://stackoverflow.com/questions/38079853/how-can-i-implement-incremental-training-for-xgboost This link had discussion of incremental learning As I understand it We can get chunk of data and create model Than take another chunk of data and create another...

Great thanks, looking forward so it will be example for 2 classes ( let's say yes and no) for classification were each data observation is presented by vector. Data is...

I see you updated to Python 3 Great thanks It would be very kind of you to add this well deserved classification example As well Thanks a lot in advance

thanks for soon answer If you have low cardinality categories they can be represented by one-hot-encoding, otherwise, by jointly trained embeddings may you share code example of such a use?...