The instance types you are seeing are Fast Launch Instances ( which are instance types designed to launch in under two minutes). In order to see all the types of instances, click on the switch on top of the instance type list that says "Fast Launch", that should display the rest of available instances. Here is additional info about fast launch instances: https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks.html Hope it helps! Answer from AWS-User-7480677 on repost.aws
🌐
Amazon Web Services
aws.amazon.com › machine learning › amazon sagemaker › pricing
SageMaker pricing - AWS
1 week ago - Pricing is based on the number of nodes and instance hours used, with costs varying by node type. The model includes options for on-demand and reserved instances, with the latter providing cost savings for long-term commitments. For the most accurate and detailed pricing information, consult Amazon Redshift pricing. SageMaker Data Processing, which brings together capabilities from Amazon Athena, Amazon EMR, AWS Glue, and Amazon Managed Workflows for Apache Airflow (Amazon MWAA), offers a flexible, pay-as-you-go pricing model without upfront commitments or a minimum fee.
Discussions

python - Sagemaker Notebook Instance Type Recommendation - Stack Overflow
I will be running ml models on a pretty large dataset. It is about 15 gb, with 200 columns and 4.3 million rows. I'm wondering what the best Notebook instance type is for this kind of dataset in AWS More on stackoverflow.com
🌐 stackoverflow.com
AWS SageMaker Instance Type change
https://stackoverflow.com/questions/60429339/update-live-aws-sagemaker-auto-scaled-endpoint-instance-type-without-putting-it More on reddit.com
🌐 r/aws
1
1
October 5, 2023
Where can I find sagemaker ML instance limits?
I can't see them in the EC2 -> Limits and I keep running into the issue of having to wait 12-24h for the service to be increased. Is there anyway them all increased? More on github.com
🌐 github.com
20
November 22, 2018
GPU optimized instances only able to be launched through Sagemaker Studio? (and not as a sagemaker notebook)
Have you tried via the CLI? What error do you get? More on reddit.com
🌐 r/aws
7
6
April 14, 2021
🌐
AWS
docs.aws.amazon.com › amazon sagemaker › developer guide › machine learning environments offered by amazon sagemaker ai › amazon sagemaker notebook instances
Amazon SageMaker notebook instances - Amazon SageMaker AI
Use Jupyter notebooks in your notebook instance to: ... SageMaker AI updates the underlying software for Amazon SageMaker Notebook Instances at least once every 90 days. Some maintenance updates, such as operating system upgrades, may require your application to be taken offline for a short period of time.
Top answer
1 of 1
7

For choosing a SageMaker hosted notebook type:

Do you plan to do all of your preprocessing of your data in-memory on the notebook, or do you plan to orchestrate ETL with external services?

If you're planning to load the dataset into memory on the notebook instance for exploration/preprocessing, the primary bottleneck here would be ensuring the instance has enough memory for your dataset. This would require at least the 16gb types (.xlarge) (full list of ML instance types available here). Further, depending on how compute intensive your pre-processing is, and your desired pre-processing completion time, you can opt for a compute optimized instance (c4, c5) to speed this up.


For the training job, specifically:

Using the Amazon SageMaker SDK, your training data will be loaded and distributed to the training cluster, allowing your training job to be completely separate from the instance your hosted notebook is running on.

Figuring out the ideal instance type for training will depend on whether your algorithm of choice/training job is memory, CPU, or IO bound. Since your dataset will likely be loaded onto your training cluster from S3, the instance you choose for your hosted notebook will have no bearing on the speed of your training job.


Broadly: When it comes to SageMaker notebooks, the best practice is to use your notebook as a "puppeteer" or orchestrator, that calls out to external services (AWS Glue or Amazon EMR for preprocessing, SageMaker for training, S3 for storage, etc). It is best to treat them as ephemeral forms of compute/storage for building and kicking off your experiment pipeline.

This will allow you to more closely pair compute, storage, and hosting resources/services with the demands for your workload, ultimately resulting in the best bang for your buck by not having you pay for latent or unused resources.


🌐
Medium
arindam-dey.medium.com › a-gentle-introduction-to-aws-sagemaker-part-i-7e4ef93a6ba4
A Gentle Introduction to AWS SageMaker - Part I | by Arindam Dey | Medium
July 2, 2022 - Use the File option to rename the notebook to something suitable. ... Fig 12. JupyterLab running on SageMaker Instance · Phew !! We now have an instance running SageMaker, which we will use to build a classification model. ... Let us summarize what we have done so far. We created a Sagemaker instance of type ml.t2.medium.
🌐
Aws-news
aws-news.com › article › 018f6450-0970-8874-9c26-deb8926a2c34
Amazon SageMaker notebooks now support G6 instance types
May 10, 2024 - Keep track of AWS news and blogs. See what's hot, read summaries, search, set bookmarks and ratings, and categorize articles with tags.
Find elsewhere
🌐
Amazon Web Services
aws.amazon.com › machine learning › amazon sagemaker ai › pricing
SageMaker Pricing
1 week ago - It is fully integrated with SageMaker Studio and supports IDE extensions available in the Open VSX extension registry. ... RStudio RStudio offers on-demand cloud compute resources to accelerate model development and improve productivity. You are charged for the instance types you choose to run the RStudio Session app and the RStudio Server Pro app. ... Notebook Instances Notebook instances are compute instances running the Jupyter notebook app.
🌐
Holori
holori.com › accueil › blog › ultimate aws sagemaker pricing guide
Holori - Ultimate AWS Sagemaker pricing guide
October 23, 2024 - Here’s what the free tier includes:SageMaker is available to try for free as part of the AWS Free Tier, offering new users two months of free usage to explore its features without initial costs. Here’s what the free tier includes: Studio Notebooks and Notebook Instances: 250 hours of ml.t3.medium instance on Studio notebooks OR 250 hours of ml.t2.medium or ml.t3.medium instance on notebook instances per month for the first two months.
🌐
AWSstatic
d1.awsstatic.com › events › reinvent › 2019 › REPEAT_1_Choose_the_right_instance_type_in_Amazon_SageMaker,_with_Texas_Instruments_AIM311-R1.pdf pdf
AIM311 - awsstatic.com
https://aws.amazon.com/sagemaker/pricing/instance-types/ Instance · Family · t family · m family · r family · c family · p family · g family · Inf1 · Elastic · Inference · Workload · Type · Short jobs/ Notebooks · Standard · CPU/ Memory ratio ·
🌐
SageMaker
sagemaker.readthedocs.io › en › v2.218.0 › api › utility › instance_types.html
Instance Types — sagemaker 2.218.0 documentation
Accessors to retrieve instance types. sagemaker.instance_types.retrieve_default(region=None, model_id=None, model_version=None, scope=None, tolerate_vulnerable_model=False, tolerate_deprecated_model=False, sagemaker_session=<sagemaker.session.Session object>, training_instance_type=None, model_type=JumpStartModelType.OPEN_WEIGHTS)¶
🌐
Reddit
reddit.com › r/aws › aws sagemaker instance type change
r/aws on Reddit: AWS SageMaker Instance Type change
October 5, 2023 -

Hi all,

I had a dev who created me a SageMaker RealTime inference API that uses lowest instance - to save me some money. I asked him what if I want to plug in more powerful instance later on when people start using this app actively - he said that then I have to do extra coding etc., which did not give me enough confidence, because I'm pretty sure that you can change instance types quite easily and it should not require any dev work to be done. Am I missing something here? I could not find a way on how to change instance type with root account even though I can edit endpoint etc.?

🌐
ClassMethod
dev.classmethod.jp › articles › how-to-choose-the-right-amazon-sagemaker-instance-type
How to Choose the Right Amazon SageMaker Instance Type | DevelopersIO
You may choose an instance type that matches your individual demands by taking into account parameters such as workload type, data size, and budget. Amazon SageMaker provides a broad choice of instance types tailored for various machine learning workloads, so it's critical to thoroughly consider ...
🌐
Saturn Cloud
saturncloud.io › sagemaker-pricing
Amazon SageMaker Pricing | Saturn Cloud
The details of Amazon SageMaker’s free tier pricing are in the table below. The Saturn Cloud price is the price per hour for the Saturn Cloud component, while the hosting price is the charge for the underlying AWS EC2 instances that the resources run on. Both of these will be charged directly through Saturn Cloud to the credit card attached to the hosted account. Available on the Saturn Cloud Hosted Free tier. To enable these instance types, email [email protected].
🌐
GitHub
github.com › aws › amazon-sagemaker-examples › issues › 593
Where can I find sagemaker ML instance limits? · Issue #593 · aws/amazon-sagemaker-examples
November 22, 2018 - Where can I find sagemaker ML instance limits?#593 · Copy link · jackdh · opened · on Jan 26, 2019 · Issue body actions · I can't see them in the EC2 -> Limits · and I keep running into the issue of having to wait 12-24h for the service to be increased. Is there anyway them all increased? 👍React with 👍3farhanhubble, strawberrypie and torstenrudolf · No one assigned · No labels · No labels · No type ·
Published   Jan 26, 2019
🌐
SystemsArchitect
systemsarchitect.io › services › aws-sagemaker › avoid-mistakes › pt › aws-sagemaker-avoid-mistakes-avoid-using-large-instance-types-for-notebook-deve
Avoid Using Large Instance Types for Notebook Development | AWS SageMaker | SystemsArchitect
November 9, 2025 - Back|AWS SageMaker: : Avoid Mistakes · • · Developers often select oversized notebook instances (like ml · • · p3 · • · 8xlarge) for simple exploratory data analysis, wasting significant costs · • · Use smaller, cheaper instances for development and code writing, and only scale up to GPU or larger instances when actually training models ·
🌐
AWS Builder Center
builder.aws.com › content › 2gQdprHlr1l6dzICRquva417Xhp › unlocking-powerful-performance-in-amazon-sagemaker-notebooks
Unlocking Powerful Performance in Amazon SageMaker ...
May 13, 2024 - Connect with builders who understand your journey. Share solutions, influence AWS product development, and access useful content that accelerates your growth. Your community starts here.
🌐
Medium
medium.com › technicalnotes › creating-an-amazon-sagemaker-notebook-instance-for-machine-learning-activities-a-step-by-step-f1715044973f
Creating an Amazon SageMaker Notebook Instance for Machine Learning activities: A Step-by-Step Guide | by Mohamad Mahmood | Technical Notes | Medium
July 22, 2025 - Begin by navigating to the Amazon SageMaker console at https://console.aws.amazon.com/sagemaker/ . From the navigation pane, select “Notebook instances,” then click “Create notebook instance.” · On the creation page, enter the required details. For the Notebook instance name, specify a unique identifier for your instance. Under Notebook Instance type, select ml.t2.medium, which is the most cost-effective option suitable for basic workloads.