Tutorial 3-Build,Train, Deploy Machine Learning Model In AWS SageMaker- Creating S3 Buckets

preview_player
Показать описание

Please donate if you want to support the channel through GPay UPID,

Please join as a member in my channel to get additional benefits like materials in Data Science, live streaming for Members and many more

Please do subscribe my other channel too

Connect with me here:
Рекомендации по теме
Комментарии
Автор

Hi Krish,
Nice explanation. One small addition for creating the bucket which always works will be using the below command
s3.create_bucket(Bucket=bucket-name, CreateBucketConfiguration={
'LocationConstraint': region-name})
Without specifying the region constraint sometimes I have faced failures in creating bucket.

venkateshsadagopan
Автор

Love you sir for providing such a quality content. I know many academy are charging heavily without even 1 percent of the content what you are providing in youtube

karth
Автор

Nice exolanation. Keep up the good work

anandhasrivi
Автор

's3_input' class will be renamed to 'TrainingInput' in SageMaker Python SDK v2.

suhasshirbavikar
Автор

5:48
While naming the S3 bucket please take care of these steps
If this error came add the following line in the s3.create_bucket()
s3.create_bucket(Bucket=bucket_name, CreateBucketConfiguration={'LocationConstraint':'us-east-2'}) instead of 'us-east-2' please use your specified location

AshwinKachu
Автор

Very good tutorial and very helpful. Thank you Krish, you always deliver

basiletalla
Автор

S3 error An error occurred when calling the CreateBucket operation: The unspecified location constraint is incompatible for the region specific endpoint this request was sent to.

asrarafi
Автор

Code for region other than "us-east1-"

s3 = boto3.resource("s3")
try:
if my_region == "ap-south-1":
s3.create_bucket(Bucket = bucket_name, CreateBucketConfiguration =

print("Bucket Created")

except Exception as e:
print("S3 Error:", e)

harshwardhanwaghchoure
Автор

3 error: An error occurred when calling the CreateBucket operation: The unspecified location constraint is incompatible for the region specific endpoint this request was sent to.

baselmaarof
Автор

Thanks krish for the tutorial. helped me to create ML model in sagemaker

arulsebastian
Автор

can you make video about multiprocessing in python and how its work backend and whats there benefits

princepatel
Автор

Man, you are such an amazing guy, made things very clear and Thank you very much Krishna! /\, please if possible also make videos on Lambda, Redshift, RDS and

manideepgupta
Автор

can you please make a video to fetch data from the MySQL database using this was services?

maYYidtS
Автор

Just curious to know @Krish.. on an average how many hours do you spend in front of your laptop?

arjundev
Автор

Hi, I really appreciate your way of helping people like me. Thanks for this Sagemaker video series. While creating instance I am facing issue like S3 error: An error occurred when calling the CreateBucket operation: The unspecified location constraint is incompatible for the region specific endpoint this request was sent to. my_region is 'us-east-2'. Thanks in advance.

pz
Автор

I'm not able to see the S3 bucket created from s3.create_bucket(Bucket=bucket_name, 'ap-south-1'}) in the S3 console. Any one faced this? I logged in as root user

janmajayadhikari
Автор

Very good tutorial sir.
is it required to be very good in aws sagemaker for datascientist,
does datascientist need to deploy all the models through sagemaker?

chetanmundhe
Автор

Parameter image_name will be renamed to image_uri in SageMaker Python SDK v2.

suhasshirbavikar
Автор

Seems like us-east-1 is a default. If your region is different you have to consider constraints. I dont know how to do that. It seems way more complicated..

JannickBayar
Автор

Sir, how is storing data in s3 bucket different from uploading the dataset directly to the instance.

kaushikdayalan