About 50 results
Open links in new tab
  1. Is it possible to use docker commands in Sagemaker Studio

    May 14, 2023 · It is not possible to install docker in the SageMaker Studio. Is there a way to install and use it? $ sudo yum install docker Loaded plugins: ovl, priorities No package docker available.

  2. How to add additional files in Sagemaker Pipeline Processing Step

    Nov 23, 2022 · The answer is similar to that of the question "How to install additional packages in sagemaker pipeline". Within the specified folder, there must be the script (in your case …

  3. Automatically "stop" Sagemaker notebook instance after inactivity?

    Dec 4, 2018 · I have a Sagemaker Jupyter notebook instance that I keep leaving online overnight by mistake, unnecessarily costing money... Is there any way to automatically stop the Sagemaker …

  4. How to mount an EFS volume on AWS Sagemaker Studio

    Aug 7, 2020 · Workaround: Instead of mounting your old EFS, you can mount the SageMaker studio EFS onto an EC2 instance, and copy over the data manually. You would need the correct EFS …

  5. Where are files located in Sagemaker Studio? - Stack Overflow

    Jun 5, 2023 · SageMaker Studio is, in essence, just a theme for Jupyter with a few added features. In the below diagram, you can see that your Studio interface and files are hosted by the " JupyterServer …

  6. Loading custom conda envs not working in SageMaker

    Aug 23, 2021 · I have installed miniconda on my AWS SageMaker persistent EBS instance. Here is my starting script: #!/bin/bash set -e # OVERVIEW # This script installs a custom, persistent installation …

  7. How to update an existing model in AWS sagemaker >= 2.0

    Sep 15, 2022 · In previous versions of sagemaker I could have updated the model with an extra argument passed to the .deploy() method called update_endpoint = True. In sagemaker >=2.0 this is …

  8. How to use SageMaker Estimator for model training and saving

    Sep 2, 2021 · How Amazon SageMaker Provides Training Information This section explains how SageMaker makes training information, such as training data, hyperparameters, and other …

  9. AWS Sagemaker: Jupyter Notebook kernel keeps dying

    Jan 27, 2021 · I get disconnect every now and then when running a piece of code in Jupyter Notebooks on Sagemaker. I usually just restart my notebook and run all the cells again. However, I want to …

  10. How to install additional packages in sagemaker pipeline

    Nov 23, 2022 · I want to add dependency packages in my sagemaker pipeline which will be used in Preprocess step. I have tried to add it in required_packages in setup.py file but it's not working. I …