My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Month: September 2021

  Import Packages and Build the ML model:- from sklearn.linear_model import LogisticRegression from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split # Load the data Iris_data = load_iris() # Split data Xtrain, Xtest, Ytrain, Ytest…

Useful Python packages

  Web: Requests: https://pypi.org/project/requests/ Django: https://pypi.org/project/Django/ Flask: https://pypi.org/project/Flask/ Twisted: https://twistedmatrix.com/trac/ BeautifulSoup: https://pypi.org/project/beautifulsoup4/ Selenium: https://selenium-python.readthedocs.io/ Data science: Numpy: https://numpy.org/ Pandas: https://pandas.pydata.org/ Matplotlib: https://matplotlib.org/ Nltk: https://www.nltk.org/ Opencv: https://selenium-python.readthedocs.io/ Machine Learning: Tensorflow: https://www.tensorflow.org/ Keras: https://keras.io/ PyTorch: https://pytorch.org/…

Back to top