Tag: python

  • Applied Machine Learning – things you need to know

    Một số lưu ý khi áp dụng Machine Learning để giải quyết các vấn đề cụ thể: Always use train_test_split or similar GridSearchCV (built-in cross validation) HDF need to be shrunk after write/update –> ptrepack –chunkshape=auto –propindexes –complevel=9 –complib=blosc data_in.h5 data_out.h5 Use Keras optimizer instead of tensorflow itself (so that it can be saved later…

  • Python setup tools easy_install Linux

    Let’s not use easy_install anyway: https://packaging.python.org/discussions/pip-vs-easy-install/ https://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install Cai dat easy_install cho linux, unix : I ran into a bit of trouble installing easy_install, after reading many useless articles, this is how I solved the problem,  actually it’s rather simple : Type : wget https://bitbucket.org/pypa/setuptools/downloads/ez_setup.py && python ez_setup.py and you’re done .   Bonus : to…