Download the folders from S3 Bucketimport boto3 import os def downloadDirectoryFroms3(remoteDirectoryName): aws_access_key_id = "" aws_secret_access_key = "" BUCKET_NAME = "" s3_resource = boto3.resource('s3', aws_access_key_id=aws_access_key_id, ...Nov 17, 2022·1 min read
Email Classifier using Machine Learning AlgorithmProblem We have to do the binary classification and trained model for classifying whether the email lies in spam or ham category. Flow to solve the problem 1. Download input file Input csv file can be downloaded from the link. 2. Data Preprocessi...Aug 20, 2022·2 min read
Run the Jupyter notebook in Virtual environments using pipIf we create a virtual environment and open up the jupyter notebook in it, we can face the problem of "no module found issue" . We can resolve this issue by following these steps. Create the virtual environment of any name using the following comman...Aug 19, 2022·1 min read