<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-CA">
	<id>https://docs.deepsense.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PSuthar</id>
	<title>DeepSense Docs - User contributions [en-ca]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.deepsense.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PSuthar"/>
	<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Special:Contributions/PSuthar"/>
	<updated>2026-06-06T21:08:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=747</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=747"/>
		<updated>2025-10-22T18:31:22Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
** Managing Notebooks on AI Development Platform | Managing Notebooks&lt;br /&gt;
** Sharing Notebooks on AI Development Platform | Sharing Notebooks&lt;br /&gt;
** Accessing CLI in Notebooks AI Development Platform | Accessing CLI&lt;br /&gt;
** Hosting TensorBoard in Notebooks AI Development Platform | Hosting TensorBoard&lt;br /&gt;
&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Onboarding on AWS | AWS Account Setup&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Hosting_TensorBoard_in_Notebooks_AI_Development_Platform&amp;diff=746</id>
		<title>Hosting TensorBoard in Notebooks AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Hosting_TensorBoard_in_Notebooks_AI_Development_Platform&amp;diff=746"/>
		<updated>2025-10-22T15:03:09Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Hosting TensorBoard from JupyterLab Notebook Instance ==&lt;br /&gt;
TensorBoard is a visualization tool for TensorFlow and PyTorch experiments.  &lt;br /&gt;
When using AWS SageMaker or the AI Development Platform, TensorBoard can be hosted directly from your JupyterLab notebook instance and accessed securely via the built-in proxy server.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* Access to a running JupyterLab environment in SageMaker Studio or the AI Development Platform.  &lt;br /&gt;
* TensorFlow or PyTorch training logs saved to a local directory (e.g., &amp;lt;code&amp;gt;./logs/&amp;lt;/code&amp;gt;).  &lt;br /&gt;
* AWS CLI setup completed (see [[Accessing CLI in Notebooks AI Development Platform]]).  &lt;br /&gt;
&lt;br /&gt;
=== Step 1: Start TensorBoard Server ===&lt;br /&gt;
In a notebook cell or terminal, navigate to your log directory and run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tensorboard --logdir=./logs/ --port=6006 --host=0.0.0.0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This command starts TensorBoard on port 6006 and binds it to all network interfaces so it can be accessed via the Jupyter proxy.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Access TensorBoard via Proxy ===&lt;br /&gt;
Once the TensorBoard server is running, open the following URL pattern in your browser (from within the same JupyterLab environment):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
https://&amp;lt;your-notebook-domain&amp;gt;/proxy/6006/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
https://studiolab.sagemaker.aws/proxy/6006/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should now see the TensorBoard interface displaying your training metrics and graphs.&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Troubleshooting ===&lt;br /&gt;
* If TensorBoard doesn’t load, ensure:&lt;br /&gt;
** The port (6006) is available and not used by another process.  &lt;br /&gt;
** The logs directory exists and contains valid TensorFlow/PyTorch event files.  &lt;br /&gt;
** You’re using the correct proxy path (&amp;lt;code&amp;gt;/proxy/6006/&amp;lt;/code&amp;gt;).  &lt;br /&gt;
&lt;br /&gt;
* To stop TensorBoard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pkill tensorboard&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* TensorBoard will only remain active while the notebook instance is running.  &lt;br /&gt;
* Avoid exposing TensorBoard publicly; always access it via the secure notebook proxy.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Accessing_CLI_in_Notebooks_AI_Development_Platform&amp;diff=745</id>
		<title>Accessing CLI in Notebooks AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Accessing_CLI_in_Notebooks_AI_Development_Platform&amp;diff=745"/>
		<updated>2025-10-08T19:04:25Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Prerequisites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Accessing the Terminal from JupyterLab Notebook Instance ==&lt;br /&gt;
In the AI Development Platform (hosted on AWS SageMaker), you can access the terminal directly from your JupyterLab environment to use command-line tools such as the AWS CLI, Git, or Python scripts.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* Access to your DeepSense AI Platform&amp;#039;s Notebook project environment.  &lt;br /&gt;
* JupyterLab interface opened under your assigned project.&lt;br /&gt;
&lt;br /&gt;
=== Steps to Open the Terminal ===&lt;br /&gt;
# From the JupyterLab interface, click on the &amp;#039;&amp;#039;&amp;#039;+&amp;#039;&amp;#039;&amp;#039; icon to open the Launcher tab.  &lt;br /&gt;
# Under the &amp;#039;&amp;#039;Other&amp;#039;&amp;#039; section, click on &amp;#039;&amp;#039;&amp;#039;Terminal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# A new terminal tab will open within your notebook environment.  &lt;br /&gt;
# You can now run shell commands (e.g., to interact with AWS S3, manage files, or install dependencies).  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The terminal runs inside your notebook instance — all operations execute within the same compute environment.  &lt;br /&gt;
* Avoid installing system-wide packages unless instructed by your project lead.  &lt;br /&gt;
* For instructions on using the AWS CLI inside this terminal, see [[AWS S3 Bucket Access]].  &lt;br /&gt;
* To close the terminal, simply click the &amp;#039;&amp;#039;&amp;#039;X&amp;#039;&amp;#039;&amp;#039; icon on the terminal tab.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Hosting_TensorBoard_in_Notebooks_AI_Development_Platform&amp;diff=744</id>
		<title>Hosting TensorBoard in Notebooks AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Hosting_TensorBoard_in_Notebooks_AI_Development_Platform&amp;diff=744"/>
		<updated>2025-10-08T19:02:31Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Create hosting TensorBoard in notebooks page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Hosting TensorBoard from JupyterLab Notebook Instance ==&lt;br /&gt;
TensorBoard is a visualization tool for TensorFlow and PyTorch experiments.  &lt;br /&gt;
When using AWS SageMaker or the AI Development Platform, TensorBoard can be hosted directly from your JupyterLab notebook instance and accessed securely via the built-in proxy server.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* Access to a running JupyterLab environment in SageMaker Studio or the AI Development Platform.  &lt;br /&gt;
* TensorFlow or PyTorch training logs saved to a local directory (e.g., &amp;lt;code&amp;gt;./logs/&amp;lt;/code&amp;gt;).  &lt;br /&gt;
* AWS CLI setup completed (see [[Accessing CLI in Notebooks AI Development Platform]]).  &lt;br /&gt;
&lt;br /&gt;
=== Step 1: Start TensorBoard Server ===&lt;br /&gt;
In a notebook cell or terminal, navigate to your log directory and run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tensorboard --logdir=./logs/ --port=6006 --host=0.0.0.0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This command starts TensorBoard on port 6006 and binds it to all network interfaces so it can be accessed via the Jupyter proxy.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Access TensorBoard via Proxy ===&lt;br /&gt;
Once the TensorBoard server is running, open the following URL pattern in your browser (from within the same JupyterLab environment):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
https://&amp;lt;your-notebook-domain&amp;gt;/proxy/6006/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
https://studiolab.sagemaker.aws/proxy/6006/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should now see the TensorBoard interface displaying your training metrics and graphs.&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Troubleshooting ===&lt;br /&gt;
* If TensorBoard doesn’t load, ensure:&lt;br /&gt;
** The port (6006) is available and not used by another process.  &lt;br /&gt;
** The logs directory exists and contains valid TensorFlow/PyTorch event files.  &lt;br /&gt;
** You’re using the correct proxy path (&amp;lt;code&amp;gt;/proxy/6006/&amp;lt;/code&amp;gt;).  &lt;br /&gt;
&lt;br /&gt;
* To stop TensorBoard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pkill tensorboard&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* TensorBoard will only remain active while the notebook instance is running.  &lt;br /&gt;
* Avoid exposing TensorBoard publicly; always access it via the secure notebook proxy.  &lt;br /&gt;
* For more details, see [https://stackoverflow.com/questions/64909903/how-to-use-tensorboard-in-aws-sagemaker this Stack Overflow reference].&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Accessing_CLI_in_Notebooks_AI_Development_Platform&amp;diff=743</id>
		<title>Accessing CLI in Notebooks AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Accessing_CLI_in_Notebooks_AI_Development_Platform&amp;diff=743"/>
		<updated>2025-10-08T17:38:43Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Create accessing CLI on AI platform page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Accessing the Terminal from JupyterLab Notebook Instance ==&lt;br /&gt;
In the AI Development Platform (hosted on AWS SageMaker), you can access the terminal directly from your JupyterLab environment to use command-line tools such as the AWS CLI, Git, or Python scripts.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* Access to your DeepSense AWS SageMaker Studio project environment.  &lt;br /&gt;
* JupyterLab interface opened under your assigned project domain.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Open the Terminal ===&lt;br /&gt;
# From the JupyterLab interface, click on the &amp;#039;&amp;#039;&amp;#039;+&amp;#039;&amp;#039;&amp;#039; icon to open the Launcher tab.  &lt;br /&gt;
# Under the &amp;#039;&amp;#039;Other&amp;#039;&amp;#039; section, click on &amp;#039;&amp;#039;&amp;#039;Terminal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# A new terminal tab will open within your notebook environment.  &lt;br /&gt;
# You can now run shell commands (e.g., to interact with AWS S3, manage files, or install dependencies).  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* The terminal runs inside your notebook instance — all operations execute within the same compute environment.  &lt;br /&gt;
* Avoid installing system-wide packages unless instructed by your project lead.  &lt;br /&gt;
* For instructions on using the AWS CLI inside this terminal, see [[AWS S3 Bucket Access]].  &lt;br /&gt;
* To close the terminal, simply click the &amp;#039;&amp;#039;&amp;#039;X&amp;#039;&amp;#039;&amp;#039; icon on the terminal tab.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Sharing_Notebooks_on_AI_Development_Platform&amp;diff=742</id>
		<title>Sharing Notebooks on AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Sharing_Notebooks_on_AI_Development_Platform&amp;diff=742"/>
		<updated>2025-10-08T17:36:33Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Create sharing notebook page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Sharing Notebook Instance with Supervisor on DeepSense AI Platform ==&lt;br /&gt;
You can share your notebook instance with your supervisor to collaborate or review work.&lt;br /&gt;
&lt;br /&gt;
=== Steps to Share a Notebook ===&lt;br /&gt;
# Navigate to the &amp;#039;&amp;#039;&amp;#039;My Notebooks&amp;#039;&amp;#039;&amp;#039; page.  &lt;br /&gt;
# Select the notebook you want to share to open its details page.  &lt;br /&gt;
# Click the &amp;#039;&amp;#039;&amp;#039;Share&amp;#039;&amp;#039;&amp;#039; button in the upper-right corner.  &lt;br /&gt;
# Enter your supervisor’s valid email address in the provided field.  &lt;br /&gt;
# Click &amp;#039;&amp;#039;&amp;#039;Share&amp;#039;&amp;#039;&amp;#039; to send the invitation.  &lt;br /&gt;
&lt;br /&gt;
Once shared, your supervisor will gain access to the notebook instance.&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Ensure that your supervisor’s email is registered in the DeepSense domain.  &lt;br /&gt;
* You can revoke access at any time from the same Share menu.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Managing_Notebooks_on_AI_Development_Platform&amp;diff=741</id>
		<title>Managing Notebooks on AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Managing_Notebooks_on_AI_Development_Platform&amp;diff=741"/>
		<updated>2025-10-08T17:35:42Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Create managing notebooks page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Managing Notebooks on DeepSense AI Platform ==&lt;br /&gt;
This page describes how to edit, delete, and manage your notebooks in the DeepSense AI Platform.&lt;br /&gt;
&lt;br /&gt;
=== Editing or Deleting a Notebook ===&lt;br /&gt;
# To make changes or delete a notebook, it must first be stopped.  &lt;br /&gt;
# Navigate to the &amp;#039;&amp;#039;&amp;#039;Home&amp;#039;&amp;#039;&amp;#039; page and click on the notebook name.  &lt;br /&gt;
# The notebook details page will open.  &lt;br /&gt;
# To delete the notebook, click &amp;#039;&amp;#039;&amp;#039;Delete&amp;#039;&amp;#039;&amp;#039;. This will permanently terminate the notebook.  &lt;br /&gt;
# To edit the notebook, click &amp;#039;&amp;#039;&amp;#039;Edit&amp;#039;&amp;#039;&amp;#039;. The same form used during notebook creation will appear.  &lt;br /&gt;
# Make the necessary changes and save them.  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Always stop the notebook before editing or deleting.  &lt;br /&gt;
* Deleting a notebook cannot be undone.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=740</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=740"/>
		<updated>2025-10-08T17:22:29Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
** Managing Notebooks on AI Development Platform | Managing Notebooks&lt;br /&gt;
** Sharing Notebooks on AI Development Platform | Sharing Notebooks&lt;br /&gt;
** Accessing CLI in Notebooks AI Development Platform | Access CLI&lt;br /&gt;
** Hosting TensorBoard in Notebooks AI Development Platform | Hosting TensorBoard&lt;br /&gt;
&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Onboarding on AWS | AWS Account Setup&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=739</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=739"/>
		<updated>2025-10-08T17:21:00Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
** Managing Notebooks | Managing Notebooks&lt;br /&gt;
** Sharing Notebooks | Sharing Notebooks&lt;br /&gt;
** Accessing CLI | Access CLI in Notebooks&lt;br /&gt;
** Hosting TensorBoard | Hosting TensorBoard in Notebooks&lt;br /&gt;
&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Onboarding on AWS | AWS Account Setup&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=738</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=738"/>
		<updated>2025-10-08T17:20:05Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add new pages for AI dev platform&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
** Managing Notebooks | Managing Notebooks&lt;br /&gt;
** Sharing Notebooks | Sharing Notebooks&lt;br /&gt;
** Accessing CLI in Notebooks | Access CLI in Notebooks&lt;br /&gt;
** Hosting TensorBoard in Notebooks | Hosting TensorBoard in Notebooks&lt;br /&gt;
&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Onboarding on AWS | AWS Account Setup&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=737</id>
		<title>Onboarding on AWS</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=737"/>
		<updated>2025-09-11T18:57:55Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Steps to Access Your AWS Account */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DeepSense AWS Account Access ==&lt;br /&gt;
DeepSense provides each user with an AWS Identity and Access Management (IAM) account to access services such as SageMaker Studio and S3.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
You will receive a welcome email from AWS containing your login details. Follow the steps below to activate and secure your account.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Access Your AWS Account ===&lt;br /&gt;
# Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.  &lt;br /&gt;
# Alternatively, use the direct URL provided in the AWS correspondence email to sign in.  [[https://deepsense.awsapps.com/start DeepSense AWS]]&lt;br /&gt;
# Enter the &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; specified in the email.  &lt;br /&gt;
# On your first login, you will be prompted to &amp;#039;&amp;#039;&amp;#039;create a password&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# After creating the password, log in again using your username and new password.  &lt;br /&gt;
# During the first login, you will be required to set up &amp;#039;&amp;#039;&amp;#039;Multi-Factor Authentication (MFA)&amp;#039;&amp;#039;&amp;#039;. Follow the on-screen instructions to complete the MFA setup.  &lt;br /&gt;
# Once MFA is configured, you will be redirected to the &amp;#039;&amp;#039;&amp;#039;AWS Access Portal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# From the portal:  &lt;br /&gt;
** To access your assigned SageMaker Studio environment, click the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab and select SageMaker Studio. See [[Using AWS SageMaker Studio]] for details.  &lt;br /&gt;
** To access S3 storage, follow the steps in [[Using S3 Bucket]].&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Bookmark the AWS Access Portal URL for quicker access.  &lt;br /&gt;
* MFA setup is mandatory for account security. Ensure you use a reliable authenticator app (e.g., Microsoft Authenticator, Google Authenticator, Authy).  &lt;br /&gt;
* If you face login or MFA issues, contact the DeepSense Cloud Administrator.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=736</id>
		<title>DeepSense Documentation</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=736"/>
		<updated>2025-09-11T15:18:37Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Welcome to the DeepSense technical cloud documentation wiki&amp;#039;&amp;#039;&amp;#039;.  This is the primary source for users with questions on the DeepSense cloud equipment and services. DeepSense uses cloud services from various cloud vendors for the development of AI projects. You&amp;#039;ll now find all of our content on the sidebar.  Just below you can see the available cloud services, and information about any planned outages we may have.  &lt;br /&gt;
Due to the nature of &amp;quot;unlimited resources&amp;quot; of cloud computing, DeepSense doesn&amp;#039;t limit any cloud services that the projects need. The cloud services listed in the following tables are our currently running resources. This doesn&amp;#039;t necessarily indicate we cannot use other cloud resources. DeepSense users are encouraged to contact us to apply for required cloud computing services.  &lt;br /&gt;
We continuously explore the best cloud solutions to the AI projects. We don&amp;#039;t lock our solutions in any specific cloud vendors. The tables below show the cloud services we have tested and are developing projects on. More cloud services will be coming soon.&lt;br /&gt;
&lt;br /&gt;
We routinely make changes and update the content.  If you see anything missing, or have any suggestions for content, we would appreciate hearing from you.  You can send us an email at ([mailto:info@deepsense.ca info@deepsense.ca]).&lt;br /&gt;
You can click on &amp;quot;Resources&amp;quot; on the navigation panel to find the technical details of the virtual machines and serverless computing services.&lt;br /&gt;
&lt;br /&gt;
== DeepSense Cloud Computing Services ==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;DeepSense AI Development Platform&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| JupyterLab Notebook Instances &lt;br /&gt;
| JupyterLab notebook instance is a machine learning compute instance running the Jupyter Notebook application.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Instance attached Volume&lt;br /&gt;
| JupyterLab Notebook Instance attached with storage volume that hosts the directory on JupyterLab. The size of the storage volume is scalable.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Follow the steps here [[Access AI Development Platform]] to access the platform.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Amazon Web Services (AWS)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| S3 (Simple Storage Service) &lt;br /&gt;
| Amazon S3 can be used to store and retrieve any amount of data. Mainly use it for long term data storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| EC2 (Elastic Compute Cloud)&lt;br /&gt;
| Amazon EC2 can be used to create virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Notebook&lt;br /&gt;
| Amazon SageMaker notebook instance is a machine learning (ML) compute instance that runs the Jupyter Notebook App.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Studio - AutoML &lt;br /&gt;
| Amazon SageMaker Studio provides a single web-based visual interface where you can access purpose-built tools to perform all machine learning (ML) development steps.           &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Endpoint &lt;br /&gt;
| Amazon SageMaker Inference Endpoints are a powerful tool to deploy your machine learning models in the cloud and make predictions on new data.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Microsoft Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Blob Storage &lt;br /&gt;
| Azure Blob Storage is a store for objects capable of storing large amounts of unstructured data. Can be used for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Virtual Machine&lt;br /&gt;
| Azure Virtual Machines are image service instances that provide on-demand and scalable computing resources for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Machine Learning Workspace&lt;br /&gt;
| Azure Machine Learning is a cloud service for accelerating and managing the machine learning (ML) project lifecycle.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Google Cloud Platform (GCP)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Cloud Storage&lt;br /&gt;
| Cloud Storage is a service for storing your objects in Google Cloud. Mainly use it for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Compute Engine&lt;br /&gt;
| &lt;br /&gt;
Compute Engine is a customizable compute service that lets you create and run virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:orange&amp;quot; | Available Soon&lt;br /&gt;
| Vertex AI Notebooks&lt;br /&gt;
| Vertex AI Workbench managed notebooks instances are Google-managed end-to-end Jupyter notebook-based environment.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;HPC on AWS and Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| AWS ParallelCluster&lt;br /&gt;
| AWS ParallelCluster is an AWS supported open source cluster management tool that helps you to deploy and manage high performance computing (HPC) clusters in the AWS Cloud.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Azure CycleCloud&lt;br /&gt;
| Azure CycleCloud is designed to enable enterprise IT organizations to provide secure and flexible cloud HPC and Big Compute environments to their end users.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=735</id>
		<title>DeepSense Documentation</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=735"/>
		<updated>2025-09-11T15:16:51Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* DeepSense Cloud Computing Services */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Welcome to the DeepSense technical cloud documentation wiki&amp;#039;&amp;#039;&amp;#039;.  This is the primary source for users with questions on the DeepSense cloud equipment and services. DeepSense uses cloud services from various cloud vendors for the development of AI projects. You&amp;#039;ll now find all of our content on the sidebar.  Just below you can see the available cloud services, and information about any planned outages we may have.  &lt;br /&gt;
Due to the nature of &amp;quot;unlimited resources&amp;quot; of cloud computing, DeepSense doesn&amp;#039;t limit any cloud services that the projects need. The cloud services listed in the following tables are our currently running resources. This doesn&amp;#039;t necessarily indicate we cannot use other cloud resources. DeepSense users are encouraged to contact us to apply for required cloud computing services.  &lt;br /&gt;
We continuously explore the best cloud solutions to the AI projects. We don&amp;#039;t lock our solutions in any specific cloud vendors. The tables below show the cloud services we have tested and are developing projects on. More cloud services will be coming soon.&lt;br /&gt;
&lt;br /&gt;
We routinely make changes and update the content.  If you see anything missing, or have any suggestions for content, we would appreciate hearing from you.  You can send us an email at ([mailto:info@deepsense.ca info@deepsense.ca]).&lt;br /&gt;
You can click on &amp;quot;Resources&amp;quot; on the navigation panel to find the technical details of the virtual machines and serverless computing services.&lt;br /&gt;
&lt;br /&gt;
== DeepSense Cloud Computing Services ==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;DeepSense AI Development Platform&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| JupyterLab Notebook Instances &lt;br /&gt;
| JupyterLab notebook instance is a machine learning compute instance running the Jupyter Notebook application.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Instance attached Volume&lt;br /&gt;
| JupyterLab Notebook Instance attached with storage volume that hosts the directory on JupyterLab. The size of the storage volume is scalable.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Amazon Web Services (AWS)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| S3 (Simple Storage Service) &lt;br /&gt;
| Amazon S3 can be used to store and retrieve any amount of data. Mainly use it for long term data storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| EC2 (Elastic Compute Cloud)&lt;br /&gt;
| Amazon EC2 can be used to create virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Notebook&lt;br /&gt;
| Amazon SageMaker notebook instance is a machine learning (ML) compute instance that runs the Jupyter Notebook App.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Studio - AutoML &lt;br /&gt;
| Amazon SageMaker Studio provides a single web-based visual interface where you can access purpose-built tools to perform all machine learning (ML) development steps.           &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Endpoint &lt;br /&gt;
| Amazon SageMaker Inference Endpoints are a powerful tool to deploy your machine learning models in the cloud and make predictions on new data.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Microsoft Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Blob Storage &lt;br /&gt;
| Azure Blob Storage is a store for objects capable of storing large amounts of unstructured data. Can be used for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Virtual Machine&lt;br /&gt;
| Azure Virtual Machines are image service instances that provide on-demand and scalable computing resources for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Machine Learning Workspace&lt;br /&gt;
| Azure Machine Learning is a cloud service for accelerating and managing the machine learning (ML) project lifecycle.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Google Cloud Platform (GCP)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Cloud Storage&lt;br /&gt;
| Cloud Storage is a service for storing your objects in Google Cloud. Mainly use it for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Compute Engine&lt;br /&gt;
| &lt;br /&gt;
Compute Engine is a customizable compute service that lets you create and run virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:orange&amp;quot; | Available Soon&lt;br /&gt;
| Vertex AI Notebooks&lt;br /&gt;
| Vertex AI Workbench managed notebooks instances are Google-managed end-to-end Jupyter notebook-based environment.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;HPC on AWS and Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| AWS ParallelCluster&lt;br /&gt;
| AWS ParallelCluster is an AWS supported open source cluster management tool that helps you to deploy and manage high performance computing (HPC) clusters in the AWS Cloud.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Azure CycleCloud&lt;br /&gt;
| Azure CycleCloud is designed to enable enterprise IT organizations to provide secure and flexible cloud HPC and Big Compute environments to their end users.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=734</id>
		<title>DeepSense Documentation</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=DeepSense_Documentation&amp;diff=734"/>
		<updated>2025-09-11T15:16:03Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add AI Dev Platform&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Welcome to the DeepSense technical cloud documentation wiki&amp;#039;&amp;#039;&amp;#039;.  This is the primary source for users with questions on the DeepSense cloud equipment and services. DeepSense uses cloud services from various cloud vendors for the development of AI projects. You&amp;#039;ll now find all of our content on the sidebar.  Just below you can see the available cloud services, and information about any planned outages we may have.  &lt;br /&gt;
Due to the nature of &amp;quot;unlimited resources&amp;quot; of cloud computing, DeepSense doesn&amp;#039;t limit any cloud services that the projects need. The cloud services listed in the following tables are our currently running resources. This doesn&amp;#039;t necessarily indicate we cannot use other cloud resources. DeepSense users are encouraged to contact us to apply for required cloud computing services.  &lt;br /&gt;
We continuously explore the best cloud solutions to the AI projects. We don&amp;#039;t lock our solutions in any specific cloud vendors. The tables below show the cloud services we have tested and are developing projects on. More cloud services will be coming soon.&lt;br /&gt;
&lt;br /&gt;
We routinely make changes and update the content.  If you see anything missing, or have any suggestions for content, we would appreciate hearing from you.  You can send us an email at ([mailto:info@deepsense.ca info@deepsense.ca]).&lt;br /&gt;
You can click on &amp;quot;Resources&amp;quot; on the navigation panel to find the technical details of the virtual machines and serverless computing services.&lt;br /&gt;
&lt;br /&gt;
== DeepSense Cloud Computing Services ==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;DeepSense AI Development Platform&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| JupyterLab Notebook Instances &lt;br /&gt;
| JupyterLab notebook instance is a machine learning (ML) compute instance running the Jupyter Notebook application.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Instance attached Volume&lt;br /&gt;
| JupyterLab Notebook Instance attached with storage volume that hosts the directory on JupyterLab. The size of the storage volume is scalable.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Amazon Web Services (AWS)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| S3 (Simple Storage Service) &lt;br /&gt;
| Amazon S3 can be used to store and retrieve any amount of data. Mainly use it for long term data storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| EC2 (Elastic Compute Cloud)&lt;br /&gt;
| Amazon EC2 can be used to create virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Notebook&lt;br /&gt;
| Amazon SageMaker notebook instance is a machine learning (ML) compute instance that runs the Jupyter Notebook App.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Studio - AutoML &lt;br /&gt;
| Amazon SageMaker Studio provides a single web-based visual interface where you can access purpose-built tools to perform all machine learning (ML) development steps.           &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| SageMaker Endpoint &lt;br /&gt;
| Amazon SageMaker Inference Endpoints are a powerful tool to deploy your machine learning models in the cloud and make predictions on new data.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Microsoft Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Blob Storage &lt;br /&gt;
| Azure Blob Storage is a store for objects capable of storing large amounts of unstructured data. Can be used for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Virtual Machine&lt;br /&gt;
| Azure Virtual Machines are image service instances that provide on-demand and scalable computing resources for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Machine Learning Workspace&lt;br /&gt;
| Azure Machine Learning is a cloud service for accelerating and managing the machine learning (ML) project lifecycle.           &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;Google Cloud Platform (GCP)&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Cloud Storage&lt;br /&gt;
| Cloud Storage is a service for storing your objects in Google Cloud. Mainly use it for long term storage or backing up your data.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Compute Engine&lt;br /&gt;
| &lt;br /&gt;
Compute Engine is a customizable compute service that lets you create and run virtual machines for training models in a manually configured environment.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:orange&amp;quot; | Available Soon&lt;br /&gt;
| Vertex AI Notebooks&lt;br /&gt;
| Vertex AI Workbench managed notebooks instances are Google-managed end-to-end Jupyter notebook-based environment.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:120%&amp;gt;HPC on AWS and Azure&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Availability&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:20% | &amp;#039;&amp;#039;&amp;#039;Service&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|style=&amp;quot;width:70% | &amp;#039;&amp;#039;&amp;#039;Usage&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| AWS ParallelCluster&lt;br /&gt;
| AWS ParallelCluster is an AWS supported open source cluster management tool that helps you to deploy and manage high performance computing (HPC) clusters in the AWS Cloud.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;Color:green&amp;quot; | Available&lt;br /&gt;
| Azure CycleCloud&lt;br /&gt;
| Azure CycleCloud is designed to enable enterprise IT organizations to provide secure and flexible cloud HPC and Big Compute environments to their end users.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=733</id>
		<title>Onboarding on AWS</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=733"/>
		<updated>2025-09-10T13:30:31Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DeepSense AWS Account Access ==&lt;br /&gt;
DeepSense provides each user with an AWS Identity and Access Management (IAM) account to access services such as SageMaker Studio and S3.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
You will receive a welcome email from AWS containing your login details. Follow the steps below to activate and secure your account.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Access Your AWS Account ===&lt;br /&gt;
# Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.  &lt;br /&gt;
# Alternatively, use the direct URL provided in the AWS correspondence email to sign in.  &lt;br /&gt;
# Enter the &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; specified in the email.  &lt;br /&gt;
# On your first login, you will be prompted to &amp;#039;&amp;#039;&amp;#039;create a password&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# After creating the password, log in again using your username and new password.  &lt;br /&gt;
# During the first login, you will be required to set up &amp;#039;&amp;#039;&amp;#039;Multi-Factor Authentication (MFA)&amp;#039;&amp;#039;&amp;#039;. Follow the on-screen instructions to complete the MFA setup.  &lt;br /&gt;
# Once MFA is configured, you will be redirected to the &amp;#039;&amp;#039;&amp;#039;AWS Access Portal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# From the portal:  &lt;br /&gt;
** To access your assigned SageMaker Studio environment, click the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab and select SageMaker Studio. See [[Using AWS SageMaker Studio]] for details.  &lt;br /&gt;
** To access S3 storage, follow the steps in [[Using S3 Bucket]].  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Bookmark the AWS Access Portal URL for quicker access.  &lt;br /&gt;
* MFA setup is mandatory for account security. Ensure you use a reliable authenticator app (e.g., Microsoft Authenticator, Google Authenticator, Authy).  &lt;br /&gt;
* If you face login or MFA issues, contact the DeepSense Cloud Administrator.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=732</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=732"/>
		<updated>2025-09-10T13:24:20Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Accessing DeepSense AWS SageMaker Studio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML). It allows data scientists and developers to perform all ML development steps—data preparation, model building, training, deployment, and management—on a single unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to the Studio IDE.  &lt;br /&gt;
&lt;br /&gt;
You can find the Studio domain from the SageMaker service dashboard&amp;#039;s left-side panel. These domains provide [[Resources]] (instances) that can be used for project work.  &lt;br /&gt;
&lt;br /&gt;
SageMaker Studio includes a comprehensive set of tools for every stage of ML development, enabling you to:  &lt;br /&gt;
* Prepare and process data  &lt;br /&gt;
* Build, train, and deploy models  &lt;br /&gt;
* Manage experiments and training jobs  &lt;br /&gt;
* Switch quickly between workflows (JupyterLab, Code Editor, or RStudio)  &lt;br /&gt;
&lt;br /&gt;
Use Studio notebooks in your project domain to prepare data, write training code, deploy ML models, and validate results.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio ==&lt;br /&gt;
# Log in to the AWS Access Portal (see [[Onboarding on AWS]] for setup instructions).  &lt;br /&gt;
# Click on the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab.  &lt;br /&gt;
# Select your assigned &amp;#039;&amp;#039;&amp;#039;SageMaker Studio&amp;#039;&amp;#039;&amp;#039; to be redirected to the Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Working on DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* From the Studio UI, create a new JupyterLab space:  &lt;br /&gt;
** Click on &amp;#039;&amp;#039;&amp;#039;JupyterLab&amp;#039;&amp;#039;&amp;#039; and select &amp;#039;&amp;#039;&amp;#039;Create a new space&amp;#039;&amp;#039;&amp;#039; (top-right corner).  &lt;br /&gt;
** If you have a supervisor, select a &amp;#039;&amp;#039;&amp;#039;Shared space&amp;#039;&amp;#039;&amp;#039;; otherwise, create a &amp;#039;&amp;#039;&amp;#039;Private space&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
** After creation, select the space and review its details.  &lt;br /&gt;
&lt;br /&gt;
* Launch a Jupyter application:  &lt;br /&gt;
** Select the &amp;#039;&amp;#039;&amp;#039;JupyterServer&amp;#039;&amp;#039;&amp;#039; application.  &lt;br /&gt;
** Start the specific instance type you are instructed to use.  &lt;br /&gt;
** (Optional) In the &amp;#039;&amp;#039;Change environment&amp;#039;&amp;#039; dialog box, select a startup script if required.  &lt;br /&gt;
&lt;br /&gt;
* Recommended instance usage:  &lt;br /&gt;
** Use &amp;#039;&amp;#039;&amp;#039;ml.t3.medium&amp;#039;&amp;#039;&amp;#039; if editing code without execution.  &lt;br /&gt;
** For training or running experiments, switch to the instance type specified by your project lead.  &lt;br /&gt;
&lt;br /&gt;
* Notebook management:  &lt;br /&gt;
** To create a new notebook: go to &amp;#039;&amp;#039;&amp;#039;File → New → Notebook&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
** Save your work frequently.  &lt;br /&gt;
** To stop an instance:  &lt;br /&gt;
::: 1. Navigate to the &amp;#039;&amp;#039;&amp;#039;Running instances&amp;#039;&amp;#039;&amp;#039; section in the SageMaker console.  &lt;br /&gt;
::: 2. Click &amp;#039;&amp;#039;&amp;#039;Stop&amp;#039;&amp;#039;&amp;#039; under the Actions column.  &lt;br /&gt;
** To restart: click &amp;#039;&amp;#039;&amp;#039;Start&amp;#039;&amp;#039;&amp;#039; for the stopped instance.  &lt;br /&gt;
&lt;br /&gt;
== Best Practices ==&lt;br /&gt;
* Always stop unused notebook instances to avoid unnecessary charges.  &lt;br /&gt;
* Use Shared spaces when collaborating with supervisors or teammates.  &lt;br /&gt;
* Keep experiments organized by naming notebooks and spaces clearly.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=731</id>
		<title>Onboarding on AWS</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=731"/>
		<updated>2025-09-10T13:23:35Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DeepSense AWS Account Access ==&lt;br /&gt;
DeepSense provides each user with an AWS Identity and Access Management (IAM) account to access services such as SageMaker Studio and S3.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
You will receive a welcome email from AWS containing your login details. Follow the steps below to activate and secure your account.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Access Your AWS Account ===&lt;br /&gt;
# Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.  &lt;br /&gt;
# Alternatively, use the direct URL provided in the AWS correspondence email to sign in.  &lt;br /&gt;
# Enter the &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; specified in the email.  &lt;br /&gt;
# On your first login, you will be prompted to &amp;#039;&amp;#039;&amp;#039;create a password&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# After creating the password, log in again using your username and new password.  &lt;br /&gt;
# During the first login, you will be required to set up &amp;#039;&amp;#039;&amp;#039;Multi-Factor Authentication (MFA)&amp;#039;&amp;#039;&amp;#039;. Follow the on-screen instructions to complete the MFA setup.  &lt;br /&gt;
# Once MFA is configured, you will be redirected to the &amp;#039;&amp;#039;&amp;#039;AWS Access Portal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# From the portal:  &lt;br /&gt;
** To access your assigned SageMaker Studio environment, click the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab and select SageMaker Studio. See [[Using AWS SageMaker Studio]] for details.  &lt;br /&gt;
** To access S3 storage, follow the steps in [[Using S3 Bucket]].  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Bookmark the AWS Access Portal URL for quicker access.  &lt;br /&gt;
* MFA setup is mandatory for account security. Ensure you use a reliable authenticator app (e.g., Google Authenticator, Authy).  &lt;br /&gt;
* If you face login or MFA issues, contact the DeepSense Cloud Administrator.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=730</id>
		<title>Onboarding on AWS</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=730"/>
		<updated>2025-09-10T13:22:43Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DeepSense AWS Account Access ==&lt;br /&gt;
DeepSense provides each user with an AWS Identity and Access Management (IAM) account to access services such as SageMaker Studio and S3.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
You will receive a welcome email from AWS containing your login details. Follow the steps below to activate and secure your account.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Access Your AWS Account ===&lt;br /&gt;
# Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.  &lt;br /&gt;
# Alternatively, use the direct URL provided in the AWS correspondence email to sign in.  &lt;br /&gt;
# Enter the &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; specified in the email.  &lt;br /&gt;
# On your first login, you will be prompted to &amp;#039;&amp;#039;&amp;#039;create a password&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# After creating the password, log in again using your username and new password.  &lt;br /&gt;
# During the first login, you will be required to set up &amp;#039;&amp;#039;&amp;#039;Multi-Factor Authentication (MFA)&amp;#039;&amp;#039;&amp;#039;. Follow the on-screen instructions to complete the MFA setup.  &lt;br /&gt;
# Once MFA is configured, you will be redirected to the &amp;#039;&amp;#039;&amp;#039;AWS Access Portal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# From the portal:  &lt;br /&gt;
** To access your assigned SageMaker Studio environment, click the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab and select SageMaker Studio. See [[AWS SageMaker Studio]] for details.  &lt;br /&gt;
** To access S3 storage, follow the steps in [[AWS S3 Bucket]].  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Bookmark the AWS Access Portal URL for quicker access.  &lt;br /&gt;
* MFA setup is mandatory for account security. Ensure you use a reliable authenticator app (e.g., Google Authenticator, Authy).  &lt;br /&gt;
* If you face login or MFA issues, contact the DeepSense Cloud Administrator.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=729</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=729"/>
		<updated>2025-09-10T13:18:38Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Changes according to new setup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML). It allows data scientists and developers to perform all ML development steps—data preparation, model building, training, deployment, and management—on a single unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to the Studio IDE.  &lt;br /&gt;
&lt;br /&gt;
You can find the Studio domain from the SageMaker service dashboard&amp;#039;s left-side panel. These domains provide [[Resources]] (instances) that can be used for project work.  &lt;br /&gt;
&lt;br /&gt;
SageMaker Studio includes a comprehensive set of tools for every stage of ML development, enabling you to:  &lt;br /&gt;
* Prepare and process data  &lt;br /&gt;
* Build, train, and deploy models  &lt;br /&gt;
* Manage experiments and training jobs  &lt;br /&gt;
* Switch quickly between workflows (JupyterLab, Code Editor, or RStudio)  &lt;br /&gt;
&lt;br /&gt;
Use Studio notebooks in your project domain to prepare data, write training code, deploy ML models, and validate results.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio ==&lt;br /&gt;
# Log in to the AWS Access Portal (see [[AWS Account Access]] for setup instructions).  &lt;br /&gt;
# Click on the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab.  &lt;br /&gt;
# Select your assigned &amp;#039;&amp;#039;&amp;#039;SageMaker Studio&amp;#039;&amp;#039;&amp;#039; to be redirected to the Studio IDE.  &lt;br /&gt;
&lt;br /&gt;
== Working on DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* From the Studio UI, create a new JupyterLab space:  &lt;br /&gt;
** Click on &amp;#039;&amp;#039;&amp;#039;JupyterLab&amp;#039;&amp;#039;&amp;#039; and select &amp;#039;&amp;#039;&amp;#039;Create a new space&amp;#039;&amp;#039;&amp;#039; (top-right corner).  &lt;br /&gt;
** If you have a supervisor, select a &amp;#039;&amp;#039;&amp;#039;Shared space&amp;#039;&amp;#039;&amp;#039;; otherwise, create a &amp;#039;&amp;#039;&amp;#039;Private space&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
** After creation, select the space and review its details.  &lt;br /&gt;
&lt;br /&gt;
* Launch a Jupyter application:  &lt;br /&gt;
** Select the &amp;#039;&amp;#039;&amp;#039;JupyterServer&amp;#039;&amp;#039;&amp;#039; application.  &lt;br /&gt;
** Start the specific instance type you are instructed to use.  &lt;br /&gt;
** (Optional) In the &amp;#039;&amp;#039;Change environment&amp;#039;&amp;#039; dialog box, select a startup script if required.  &lt;br /&gt;
&lt;br /&gt;
* Recommended instance usage:  &lt;br /&gt;
** Use &amp;#039;&amp;#039;&amp;#039;ml.t3.medium&amp;#039;&amp;#039;&amp;#039; if editing code without execution.  &lt;br /&gt;
** For training or running experiments, switch to the instance type specified by your project lead.  &lt;br /&gt;
&lt;br /&gt;
* Notebook management:  &lt;br /&gt;
** To create a new notebook: go to &amp;#039;&amp;#039;&amp;#039;File → New → Notebook&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
** Save your work frequently.  &lt;br /&gt;
** To stop an instance:  &lt;br /&gt;
::: 1. Navigate to the &amp;#039;&amp;#039;&amp;#039;Running instances&amp;#039;&amp;#039;&amp;#039; section in the SageMaker console.  &lt;br /&gt;
::: 2. Click &amp;#039;&amp;#039;&amp;#039;Stop&amp;#039;&amp;#039;&amp;#039; under the Actions column.  &lt;br /&gt;
** To restart: click &amp;#039;&amp;#039;&amp;#039;Start&amp;#039;&amp;#039;&amp;#039; for the stopped instance.  &lt;br /&gt;
&lt;br /&gt;
== Best Practices ==&lt;br /&gt;
* Always stop unused notebook instances to avoid unnecessary charges.  &lt;br /&gt;
* Use Shared spaces when collaborating with supervisors or teammates.  &lt;br /&gt;
* Keep experiments organized by naming notebooks and spaces clearly.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=728</id>
		<title>Onboarding on AWS</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Onboarding_on_AWS&amp;diff=728"/>
		<updated>2025-09-10T13:15:59Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: First draft of account access&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DeepSense AWS Account Access ==&lt;br /&gt;
DeepSense provides each user with an AWS Identity and Access Management (IAM) account to access services such as SageMaker Studio and S3.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
You will receive a welcome email from AWS containing your login details. Follow the steps below to activate and secure your account.  &lt;br /&gt;
&lt;br /&gt;
=== Steps to Access Your AWS Account ===&lt;br /&gt;
# Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.  &lt;br /&gt;
# Alternatively, use the direct URL provided in the AWS correspondence email to sign in.  &lt;br /&gt;
# Enter the &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; specified in the email.  &lt;br /&gt;
# On your first login, you will be prompted to &amp;#039;&amp;#039;&amp;#039;create a password&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# After creating the password, log in again using your username and new password.  &lt;br /&gt;
# During the first login, you will be required to set up &amp;#039;&amp;#039;&amp;#039;Multi-Factor Authentication (MFA)&amp;#039;&amp;#039;&amp;#039;. Follow the on-screen instructions to complete the MFA setup.  &lt;br /&gt;
# Once MFA is configured, you will be redirected to the &amp;#039;&amp;#039;&amp;#039;AWS Access Portal&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
# From the portal:  &lt;br /&gt;
** To access your assigned SageMaker Studio environment, click the &amp;#039;&amp;#039;&amp;#039;Applications&amp;#039;&amp;#039;&amp;#039; tab and select SageMaker Studio. See [[AWS SageMaker Studio Access]] for details.  &lt;br /&gt;
** To access S3 storage, follow the steps in [[AWS S3 Bucket Access]].  &lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Bookmark the AWS Access Portal URL for quicker access.  &lt;br /&gt;
* MFA setup is mandatory for account security. Ensure you use a reliable authenticator app (e.g., Google Authenticator, Authy).  &lt;br /&gt;
* If you face login or MFA issues, contact the DeepSense Cloud Administrator.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=727</id>
		<title>Using S3 Bucket</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=727"/>
		<updated>2025-09-10T13:11:39Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon S3, or Amazon Simple Storage Service, is an object storage service offered by Amazon Web Services (AWS). It provides a highly scalable, durable, and available storage solution for any type of data, accessible from anywhere on the web.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS S3 ==&lt;br /&gt;
At DeepSense, you will be using S3 buckets to store large datasets. These datasets can then be accessed in AWS SageMaker for use in projects.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
AWS will send you an email containing your account details. Users will then have access to AWS.&lt;br /&gt;
&lt;br /&gt;
== Accessing the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
# Sign in to the AWS access portal once your account is active.  &lt;br /&gt;
# From the account dropdown, select &amp;#039;&amp;#039;&amp;#039;DeepSense&amp;#039;&amp;#039;&amp;#039; and choose the respective bucket you want to access.  &lt;br /&gt;
# The AWS console will open after selection.  &lt;br /&gt;
# Use the direct link provided by your Cloud Administrator (&amp;#039;&amp;#039;tip: bookmark the link for easier access&amp;#039;&amp;#039;).  &lt;br /&gt;
# The S3 bucket should now be accessible in your browser.  &lt;br /&gt;
&lt;br /&gt;
== Using the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
* Once inside the S3 bucket, you can:  &lt;br /&gt;
** Download files  &lt;br /&gt;
** Upload files  &lt;br /&gt;
** Delete files or directories  &lt;br /&gt;
&lt;br /&gt;
* To access the bucket in your terminal, use the &amp;#039;&amp;#039;&amp;#039;Access Key&amp;#039;&amp;#039;&amp;#039; from the AWS access portal.  &lt;br /&gt;
&lt;br /&gt;
* To add bucket files to your AI Development Platform notebook, you have two approaches:  &lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;Option 1 – Easy method (for small files):&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
::: Download the files from the S3 console to your local machine, then upload them to your JupyterLab directory for use in your project.  &lt;br /&gt;
&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;Option 2 – Recommended for large files:&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
::: 1. Create your access keys from the AWS access portal.  &lt;br /&gt;
::: 2. Open the terminal in your notebook instance.  &lt;br /&gt;
::: 3. Follow the steps in the [AWS CLI Authentication Guide](https://docs.aws.amazon.com/cli/v1/userguide/cli-authentication-user.html#cli-authentication-user-configure.title).  &lt;br /&gt;
::: 4. Once configured, run S3 CLI commands (e.g., &amp;lt;code&amp;gt;aws s3 cp&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;aws s3 ls&amp;lt;/code&amp;gt;) to upload or download files directly between your bucket and notebook.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=726</id>
		<title>Using S3 Bucket</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=726"/>
		<updated>2025-09-10T13:10:15Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Final edit for initial S3 bucket page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon S3, or Amazon Simple Storage Service, is an object storage service offered by Amazon Web Services (AWS). It provides a highly scalable, durable, and available storage solution for any type of data, accessible from anywhere on the web.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS S3 ==&lt;br /&gt;
At DeepSense, you will be using S3 buckets to store large datasets. These datasets can then be accessed in AWS SageMaker for use in projects.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The AWS administrator will create your DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
AWS will send you an email containing your account details. Users will then have access to AWS SageMaker Studio, specific to their project, under the new domain.&lt;br /&gt;
&lt;br /&gt;
== Accessing the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
# Sign in to the AWS access portal once your account is active.  &lt;br /&gt;
# From the account dropdown, select &amp;#039;&amp;#039;&amp;#039;DeepSense&amp;#039;&amp;#039;&amp;#039; and choose the respective bucket you want to access.  &lt;br /&gt;
# The AWS console will open after selection.  &lt;br /&gt;
# Use the direct link provided by your Cloud Administrator (&amp;#039;&amp;#039;tip: bookmark the link for easier access&amp;#039;&amp;#039;).  &lt;br /&gt;
# The S3 bucket should now be accessible in your browser.  &lt;br /&gt;
&lt;br /&gt;
== Using the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
* Once inside the S3 bucket, you can:  &lt;br /&gt;
** Download files  &lt;br /&gt;
** Upload files  &lt;br /&gt;
** Delete files or directories  &lt;br /&gt;
&lt;br /&gt;
* To access the bucket in your terminal, use the &amp;#039;&amp;#039;&amp;#039;Access Key&amp;#039;&amp;#039;&amp;#039; from the AWS access portal.  &lt;br /&gt;
&lt;br /&gt;
* To add bucket files to your AI Development Platform notebook, you have two approaches:  &lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;Option 1 – Easy method (for small files):&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
::: Download the files from the S3 console to your local machine, then upload them to your JupyterLab directory for use in your project.  &lt;br /&gt;
&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;Option 2 – Recommended for large files:&amp;#039;&amp;#039;&amp;#039;  &lt;br /&gt;
::: 1. Create your access keys from the AWS access portal.  &lt;br /&gt;
::: 2. Open the terminal in your notebook instance.  &lt;br /&gt;
::: 3. Follow the steps in the [AWS CLI Authentication Guide](https://docs.aws.amazon.com/cli/v1/userguide/cli-authentication-user.html#cli-authentication-user-configure.title).  &lt;br /&gt;
::: 4. Once configured, run S3 CLI commands (e.g., &amp;lt;code&amp;gt;aws s3 cp&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;aws s3 ls&amp;lt;/code&amp;gt;) to upload or download files directly between your bucket and notebook.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=725</id>
		<title>Using S3 Bucket</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_S3_Bucket&amp;diff=725"/>
		<updated>2025-09-10T13:09:38Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: First Draft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon S3, or Amazon Simple Storage Service, is an object storage service offered by Amazon Web Services (AWS). It provides a highly scalable, durable, and available storage solution for any type of data, accessible from anywhere on the web.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS S3 ==&lt;br /&gt;
At DeepSense, you will be using S3 buckets to store large amount of dataset. Storing all of them on S3 and then using the same in AWS SageMaker to use for projects.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
* Once your account is accessible and you are sign on to the AWS access portal.&lt;br /&gt;
* Select the account dropdown of DeepSense select the respective bucket access you want to use.&lt;br /&gt;
* After selection it will open AWS console.&lt;br /&gt;
* Click on the link directly from your Cloud administrator has provided you the link (Bookmark link for easier access)&lt;br /&gt;
* S3 bucket should be accessible now on your browser.&lt;br /&gt;
&lt;br /&gt;
== Using the S3 Bucket on DeepSense AWS ==&lt;br /&gt;
* Once you are in the S3 bucket you can download, upload and delete files/ directories from the bucket.&lt;br /&gt;
* If you need to open the bucket in your terminal use the access key from the access portal.&lt;br /&gt;
* For adding your bucket files to AI Development Platform notebook, 1. Easy way - good for small files. 2. For big files.&lt;br /&gt;
* 1. Simply download the files from S3 console to your local and then upload it to your JupyterLab directory to use it for project.&lt;br /&gt;
* 2. Create your access keys from access portal then open terminal of your notebook instance and follow these steps https://docs.aws.amazon.com/cli/v1/userguide/cli-authentication-user.html#cli-authentication-user-configure.title after that just type in the S3 commands to get or put files in bucket.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=724</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=724"/>
		<updated>2025-09-10T12:32:02Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add AWS account setup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Onboarding on AWS | AWS Account Setup&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=723</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=723"/>
		<updated>2025-09-10T12:18:13Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add S3 bucket doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** Using S3 Bucket | AWS S3 Bucket&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
&lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=722</id>
		<title>Access AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=722"/>
		<updated>2025-07-23T13:40:51Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Sharing the notebook instance with supervisor on DeepSense AI Platform */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== What is DeepSense AI Development Platform? ==&lt;br /&gt;
The AI Development Platform by DeepSense reduces cloud complexity, enabling users to manage AI/ML workloads with a user-friendly UI. This platform is serverless, scalable, and focuses on simplified onboarding and resource management. To get started with the platform gather and understand project requirements from your organization then go to AI Dev platform: https://aidevplatform.deepsense.ca and follow the below steps to onboard.&lt;br /&gt;
&lt;br /&gt;
== Accessing the notebook on DeepSense AI Platform ==&lt;br /&gt;
* Go to AI Dev platform’s signup page: https://aidevplatform.deepsense.ca/signup&lt;br /&gt;
* Fill all the details from the form and submit (don’t forget project details, we’ll need it to determine your resource type)&lt;br /&gt;
* Reach out to an admin for the account approval.&lt;br /&gt;
* Once approved, log in to your account with same credentials.&lt;br /&gt;
* Start your development by creating a new notebook.&lt;br /&gt;
* Fill out the details and submit.&lt;br /&gt;
* Notebook names must be unique and without any special characters (will fail if created notebook with same name or with underscore _ ).&lt;br /&gt;
* Select smallest required instance type (can be changed later).&lt;br /&gt;
* Give required storage size (can be increased later).&lt;br /&gt;
* Select if you need any libraries preinstalled in your notebook environment. (Only select the necessary ones as it will install every libraries on start)&lt;br /&gt;
* The notebook will automatically start, give it some time (5-10 mins max). If the notebook is stopped state, you can start again then continue.&lt;br /&gt;
* Open the notebook in a new tab by clicking the open button.&lt;br /&gt;
&lt;br /&gt;
== Managing notebooks on DeepSense AI Platform ==&lt;br /&gt;
* If you need to edit/delete a notebook, it has to be stopped first.&lt;br /&gt;
* Click on notebook name on home page.&lt;br /&gt;
* You will see the notebook details.&lt;br /&gt;
* You can click on Delete to terminate the notebook.&lt;br /&gt;
* Click on Edit in case any changes are required to the notebook. You will be taken to edit the notebook. The form is same as when you created the notebook.&lt;br /&gt;
&lt;br /&gt;
==Sharing the notebook instance with supervisor on DeepSense AI Platform==&lt;br /&gt;
* Navigate to My Notebooks page and select your notebook which will take you to notebook details page.&lt;br /&gt;
* There you can click on Share button upper right corner. &lt;br /&gt;
* Here you can add your supervisor’s valid email address and the notebook will be shared with your supervisor.&lt;br /&gt;
&lt;br /&gt;
== Stopping the notebook instance on DeepSense AI Platform==&lt;br /&gt;
* To stop an instance after completing your work, navigate to the My notebooks page.&lt;br /&gt;
* Click the Stop button for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=721</id>
		<title>Access AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=721"/>
		<updated>2025-07-23T13:33:29Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== What is DeepSense AI Development Platform? ==&lt;br /&gt;
The AI Development Platform by DeepSense reduces cloud complexity, enabling users to manage AI/ML workloads with a user-friendly UI. This platform is serverless, scalable, and focuses on simplified onboarding and resource management. To get started with the platform gather and understand project requirements from your organization then go to AI Dev platform: https://aidevplatform.deepsense.ca and follow the below steps to onboard.&lt;br /&gt;
&lt;br /&gt;
== Accessing the notebook on DeepSense AI Platform ==&lt;br /&gt;
* Go to AI Dev platform’s signup page: https://aidevplatform.deepsense.ca/signup&lt;br /&gt;
* Fill all the details from the form and submit (don’t forget project details, we’ll need it to determine your resource type)&lt;br /&gt;
* Reach out to an admin for the account approval.&lt;br /&gt;
* Once approved, log in to your account with same credentials.&lt;br /&gt;
* Start your development by creating a new notebook.&lt;br /&gt;
* Fill out the details and submit.&lt;br /&gt;
* Notebook names must be unique and without any special characters (will fail if created notebook with same name or with underscore _ ).&lt;br /&gt;
* Select smallest required instance type (can be changed later).&lt;br /&gt;
* Give required storage size (can be increased later).&lt;br /&gt;
* Select if you need any libraries preinstalled in your notebook environment. (Only select the necessary ones as it will install every libraries on start)&lt;br /&gt;
* The notebook will automatically start, give it some time (5-10 mins max). If the notebook is stopped state, you can start again then continue.&lt;br /&gt;
* Open the notebook in a new tab by clicking the open button.&lt;br /&gt;
&lt;br /&gt;
== Managing notebooks on DeepSense AI Platform ==&lt;br /&gt;
* If you need to edit/delete a notebook, it has to be stopped first.&lt;br /&gt;
* Click on notebook name on home page.&lt;br /&gt;
* You will see the notebook details.&lt;br /&gt;
* You can click on Delete to terminate the notebook.&lt;br /&gt;
* Click on Edit in case any changes are required to the notebook. You will be taken to edit the notebook. The form is same as when you created the notebook.&lt;br /&gt;
&lt;br /&gt;
==Sharing the notebook instance with supervisor on DeepSense AI Platform==&lt;br /&gt;
* Navigate to My Notebooks page and select your notebook which will take you to notebook details page.&lt;br /&gt;
* There you can click on Share button. &lt;br /&gt;
* Here you can add your supervisor’s valid email address and the notebook will be shared with your supervisor (The other person should have an account on this platform).&lt;br /&gt;
&lt;br /&gt;
== Stopping the notebook instance on DeepSense AI Platform==&lt;br /&gt;
* To stop an instance after completing your work, navigate to the My notebooks page.&lt;br /&gt;
* Click the Stop button for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=720</id>
		<title>Access AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=720"/>
		<updated>2025-07-15T18:48:19Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* What is DeepSense AI Development Platform? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== What is DeepSense AI Development Platform? ==&lt;br /&gt;
The AI Development Platform by DeepSense reduces cloud complexity, enabling users to manage AI/ML workloads with a user-friendly UI. This platform is serverless, scalable, and focuses on simplified onboarding and resource management. To get started with the platform gather and understand project requirements from your organization then go to AI Dev platform: https://aidevplatform.deepsense.ca and follow the below steps to onboard.&lt;br /&gt;
&lt;br /&gt;
== Accessing the notebook on DeepSense AI Platform ==&lt;br /&gt;
* Go to AI Dev platform’s signup page: https://aidevplatform.deepsense.ca/signup&lt;br /&gt;
* Fill all the details from the form and submit (don’t forget project details, we’ll need it to determine your resource type)&lt;br /&gt;
* Reach out to an admin for the account approval.&lt;br /&gt;
* Once approved, log in to your account with same credentials.&lt;br /&gt;
* Start your development by creating a new notebook.&lt;br /&gt;
* Fill out the details and submit.&lt;br /&gt;
* Notebook names must be unique (will fail if notebook with same name exists in someone else’s account).&lt;br /&gt;
* Select smallest required instance type (can be changed later).&lt;br /&gt;
* Give required storage size (can be increased later).&lt;br /&gt;
* Select if you need any libraries preinstalled in your notebook environment.&lt;br /&gt;
* The notebook will automatically start, give it some time (5-10 mins max). If the notebook is stopped, you can start it.&lt;br /&gt;
* Open the notebook in a new tab by clicking the open button.&lt;br /&gt;
== Managing notebooks on DeepSense AI Platform ==&lt;br /&gt;
* If you need to edit/delete a notebook, it has to be stopped first.&lt;br /&gt;
* Click on notebook name on home page.&lt;br /&gt;
* You will see the notebook details.&lt;br /&gt;
* You can click on Delete to terminate the notebook.&lt;br /&gt;
* Click on Edit in case any changes are required to the notebook. You will be taken to edit the notebook. The form is same as when you created the notebook.&lt;br /&gt;
* Back to the notebook details page. If you need to share the notebook with your supervisor, click on Share button. Here you can add your supervisor’s valid email address and the notebook will be shared with your supervisor (The other person should have an account on this platform).&lt;br /&gt;
== Stopping the notebook instance on DeepSense AI Platform==&lt;br /&gt;
* To stop an instance after completing your work, navigate to the My notebooks page.&lt;br /&gt;
* Click the Stop button for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=719</id>
		<title>Access AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=719"/>
		<updated>2025-05-05T18:22:08Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add Access Ai Dev Platform&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== What is DeepSense AI Development Platform? ==&lt;br /&gt;
The AI Development Platform by DeepSense abstracts cloud complexity, enabling users to manage AI/ML workloads with a user-friendly UI. This platform is serverless, scalable, and focuses on simplified onboarding and resource management. Gather and understand project requirements from your organization. Go to AI Dev platform’s: https://aidevplatform.deepsense.ca&lt;br /&gt;
== Accessing the notebook on DeepSense AI Platform ==&lt;br /&gt;
* Go to AI Dev platform’s signup page: https://aidevplatform.deepsense.ca/signup&lt;br /&gt;
* Fill all the details from the form and submit (don’t forget project details, we’ll need it to determine your resource type)&lt;br /&gt;
* Reach out to an admin for the account approval.&lt;br /&gt;
* Once approved, log in to your account with same credentials.&lt;br /&gt;
* Start your development by creating a new notebook.&lt;br /&gt;
* Fill out the details and submit.&lt;br /&gt;
* Notebook names must be unique (will fail if notebook with same name exists in someone else’s account).&lt;br /&gt;
* Select smallest required instance type (can be changed later).&lt;br /&gt;
* Give required storage size (can be increased later).&lt;br /&gt;
* Select if you need any libraries preinstalled in your notebook environment.&lt;br /&gt;
* The notebook will automatically start, give it some time (5-10 mins max). If the notebook is stopped, you can start it.&lt;br /&gt;
* Open the notebook in a new tab by clicking the open button.&lt;br /&gt;
== Managing notebooks on DeepSense AI Platform ==&lt;br /&gt;
* If you need to edit/delete a notebook, it has to be stopped first.&lt;br /&gt;
* Click on notebook name on home page.&lt;br /&gt;
* You will see the notebook details.&lt;br /&gt;
* You can click on Delete to terminate the notebook.&lt;br /&gt;
* Click on Edit in case any changes are required to the notebook. You will be taken to edit the notebook. The form is same as when you created the notebook.&lt;br /&gt;
* Back to the notebook details page. If you need to share the notebook with your supervisor, click on Share button. Here you can add your supervisor’s valid email address and the notebook will be shared with your supervisor (The other person should have an account on this platform).&lt;br /&gt;
== Stopping the notebook instance on DeepSense AI Platform==&lt;br /&gt;
* To stop an instance after completing your work, navigate to the My notebooks page.&lt;br /&gt;
* Click the Stop button for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=718</id>
		<title>Access AI Development Platform</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Access_AI_Development_Platform&amp;diff=718"/>
		<updated>2025-05-05T16:58:04Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Create initial AI Dev Platform&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== What is DeepSense AI Development Platform ==&lt;br /&gt;
The AI Development Platform by DeepSense abstracts cloud complexity, enabling users to manage AI/ML workloads with a user-friendly UI. This platform is serverless, scalable, and focuses on simplified onboarding and resource management. Gather and understand project requirements from your organization. Go to AI Dev platform’s: https://aidevplatform.deepsense.ca&lt;br /&gt;
== Signup for DeepSense AI Platform ==&lt;br /&gt;
* Go to AI Dev platform’s signup page: https://aidevplatform.deepsense.ca/signup&lt;br /&gt;
* Fill all the details from the form and submit (don’t forget project details, we’ll need it to determine your resource type)&lt;br /&gt;
* Reach out to an admin for the account approval.&lt;br /&gt;
* Once approved, log in to your account with same credentials.&lt;br /&gt;
* Start your development by creating a new notebook.&lt;br /&gt;
* Fill out the details and submit.&lt;br /&gt;
* Notebook names must be unique (will fail if notebook with same name exists in someone else’s account).&lt;br /&gt;
* Select smallest required instance type (can be changed later).&lt;br /&gt;
* Give required storage size (can be increased later).&lt;br /&gt;
* Select if you need any libraries preinstalled in your notebook environment.&lt;br /&gt;
* The notebook will automatically start, give it some time (5-10 mins max). If the notebook is stopped, you can start it.&lt;br /&gt;
* Open the notebook in a new tab by clicking the open button.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=717</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=717"/>
		<updated>2025-05-05T16:46:28Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | Access AI Development Platform&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** &lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=716</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=716"/>
		<updated>2025-05-05T16:45:27Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform | AI Platform&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** &lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=715</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=715"/>
		<updated>2025-05-05T16:44:22Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add AI Development Platform page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* DeepSense AI Development Platform&lt;br /&gt;
** Access AI Development Platform&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** &lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=714</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=714"/>
		<updated>2025-01-28T15:08:57Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.&lt;br /&gt;
* Alternatively, use the URL provided in the AWS correspondence email to sign in.&lt;br /&gt;
* Enter the username as specified in the email.&lt;br /&gt;
* On your first login, you will be prompted to create a password.&lt;br /&gt;
* After creating the password, log in again using your username and the newly created password.&lt;br /&gt;
* During the first login, you will be redirected to enable Multi-Factor Authentication (MFA). Follow the on-screen instructions to complete the MFA setup.&lt;br /&gt;
* Once MFA is set up, you will be directed to the AWS Access Portal.&lt;br /&gt;
* Click on the Applications tab and select the assigned SageMaker Studio. This will redirect you to your Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Working on DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* From your Studio UI, start by creating a JupyterLab space. Click on JupyterLab and use the Create a new space button located in the top-right corner.&lt;br /&gt;
* If you have a supervisor, select Shared space; otherwise, create a Private space.&lt;br /&gt;
* After creating the space, select it and review the details.&lt;br /&gt;
* To open the Jupyter application, select the JupyterServer application and launch the specific instance type you are instructed to use.&lt;br /&gt;
* (Optional) In the Change environment dialog box, you can select a start-up script from the dropdown menu if needed.&lt;br /&gt;
* Use the ml.t3.medium instance type if you are editing code without executing it.&lt;br /&gt;
* After editing your code, save your changes. Stop the current instance, select the required instance type from the dropdown menu, and restart it.&lt;br /&gt;
* To create a new notebook in JupyterLab: go to File, select New, and then Notebook. A new notebook tab will open in a new window.&lt;br /&gt;
* To stop an instance after completing your work, navigate to the Running instances section in the left pane of the SageMaker console.&lt;br /&gt;
* Click the Stop button under the Actions column for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=713</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=713"/>
		<updated>2025-01-28T15:07:33Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Accessing DeepSense AWS SageMaker Studio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
* Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.&lt;br /&gt;
* Alternatively, use the URL provided in the AWS correspondence email to sign in.&lt;br /&gt;
* Enter the username as specified in the email.&lt;br /&gt;
* On your first login, you will be prompted to create a password.&lt;br /&gt;
* After creating the password, log in again using your username and the newly created password.&lt;br /&gt;
* During the first login, you will be redirected to enable Multi-Factor Authentication (MFA). Follow the on-screen instructions to complete the MFA setup.&lt;br /&gt;
* Once MFA is set up, you will be directed to the AWS Access Portal.&lt;br /&gt;
* Click on the Applications tab and select the assigned SageMaker Studio. This will redirect you to your Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* From your Studio UI, start by creating a JupyterLab space. Click on JupyterLab and use the Create a new space button located in the top-right corner.&lt;br /&gt;
* If you have a supervisor, select Shared space; otherwise, create a Private space.&lt;br /&gt;
* After creating the space, select it and review the details.&lt;br /&gt;
* To open the Jupyter application, select the JupyterServer application and launch the specific instance type you are instructed to use.&lt;br /&gt;
* (Optional) In the Change environment dialog box, you can select a start-up script from the dropdown menu if needed.&lt;br /&gt;
* Use the ml.t3.medium instance type if you are editing code without executing it.&lt;br /&gt;
* After editing your code, save your changes. Stop the current instance, select the required instance type from the dropdown menu, and restart it.&lt;br /&gt;
* To create a new notebook in JupyterLab: go to File, select New, and then Notebook. A new notebook tab will open in a new window.&lt;br /&gt;
* To stop an instance after completing your work, navigate to the Running instances section in the left pane of the SageMaker console.&lt;br /&gt;
* Click the Stop button under the Actions column for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=712</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=712"/>
		<updated>2025-01-28T15:06:46Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
* Accept the invitation sent in the welcome email and navigate to the AWS Management Console login page.&lt;br /&gt;
* Alternatively, use the URL provided in the AWS correspondence email to sign in.&lt;br /&gt;
* Enter the username as specified in the email.&lt;br /&gt;
* On your first login, you will be prompted to create a password.&lt;br /&gt;
* After creating the password, log in again using your username and the newly created password.&lt;br /&gt;
* During the first login, you will be redirected to enable Multi-Factor Authentication (MFA). Follow the on-screen instructions to complete the MFA setup.&lt;br /&gt;
* Once MFA is set up, you will be directed to the AWS Access Portal.&lt;br /&gt;
* Click on the Applications tab and select the assigned SageMaker Studio. This will redirect you to your Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio ==&lt;br /&gt;
* Start by creating a JupyterLab space. Click on JupyterLab and use the Create a new space button located in the top-right corner.&lt;br /&gt;
* If you have a supervisor, select Shared space; otherwise, create a Private space.&lt;br /&gt;
* After creating the space, select it and review the details.&lt;br /&gt;
* To open the Jupyter application, select the JupyterServer application and launch the specific instance type you are instructed to use.&lt;br /&gt;
* (Optional) In the Change environment dialog box, you can select a start-up script from the dropdown menu if needed.&lt;br /&gt;
* Use the ml.t3.medium instance type if you are editing code without executing it.&lt;br /&gt;
* After editing your code, save your changes. Stop the current instance, select the required instance type from the dropdown menu, and restart it.&lt;br /&gt;
* To create a new notebook in JupyterLab: go to File, select New, and then Notebook. A new notebook tab will open in a new window.&lt;br /&gt;
* To stop an instance after completing your work, navigate to the Running instances section in the left pane of the SageMaker console.&lt;br /&gt;
* Click the Stop button under the Actions column for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=711</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=711"/>
		<updated>2025-01-28T15:04:54Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* New edit Accessing DeepSense AWS SageMaker Studio Domain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
* Accept the invitation provided in the welcome email and navigate to the AWS Management Console login page.&lt;br /&gt;
* Or enter the URL provided in AWS correspondence email and continue as Sign in .&lt;br /&gt;
* Enter the username in the field as mentioned in the email.&lt;br /&gt;
* You will be redirected to create the password on first login.&lt;br /&gt;
* Your password will be created and you have to login again with username and created password.&lt;br /&gt;
* First login redirects you to add MFA, follow the on-screen instructions to enable MFA.&lt;br /&gt;
* After setting MFA you will be redirected to AWS access portal.&lt;br /&gt;
* Select &amp;quot;Application&amp;quot; tab and choose given &amp;quot;SageMaker Studio&amp;quot; which will redirect to your Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio Domain ==&lt;br /&gt;
* Start by creating a JupyterLab space. Click on JupyterLab and use the Create a new space button located in the top-right corner.&lt;br /&gt;
* If you have a supervisor, select Shared space; otherwise, create a Private space.&lt;br /&gt;
* After creating the space, select it and review the details.&lt;br /&gt;
* To open the Jupyter application, select the JupyterServer application and launch the specific instance type you are instructed to use.&lt;br /&gt;
* (Optional) In the Change environment dialog box, you can select a start-up script from the dropdown menu if needed.&lt;br /&gt;
* Use the ml.t3.medium instance type if you are editing code without executing it.&lt;br /&gt;
* After editing your code, save your changes. Stop the current instance, select the required instance type from the dropdown menu, and restart it.&lt;br /&gt;
* To create a new notebook in JupyterLab: go to File, select New, and then Notebook. A new notebook tab will open in a new window.&lt;br /&gt;
* To stop an instance after completing your work, navigate to the Running instances section in the left pane of the SageMaker console.&lt;br /&gt;
* Click the Stop button under the Actions column for the notebook instance you wish to stop.&lt;br /&gt;
* Once the notebook instance is stopped, you can restart it anytime by clicking the Start button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=710</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=710"/>
		<updated>2025-01-28T14:50:08Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Updated Accessing DeepSense AWS Management Console */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
* Accept the invitation provided in the welcome email and navigate to the AWS Management Console login page.&lt;br /&gt;
* Or enter the URL provided in AWS correspondence email and continue as Sign in .&lt;br /&gt;
* Enter the username in the field as mentioned in the email.&lt;br /&gt;
* You will be redirected to create the password on first login.&lt;br /&gt;
* Your password will be created and you have to login again with username and created password.&lt;br /&gt;
* First login redirects you to add MFA, follow the on-screen instructions to enable MFA.&lt;br /&gt;
* After setting MFA you will be redirected to AWS access portal.&lt;br /&gt;
* Select &amp;quot;Application&amp;quot; tab and choose given &amp;quot;SageMaker Studio&amp;quot; which will redirect to your Studio IDE.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio Domain ==&lt;br /&gt;
*Select Admin configurations from the left navigation panel.&lt;br /&gt;
*Check for current AWS region on top right corner beside your account name. Set it to Canada (Central). &lt;br /&gt;
*Select Domains from the Admin configurations menu.&lt;br /&gt;
*Choose your project named domain to access from the Domains page.&lt;br /&gt;
*Select User Profiles from the domain settings.&lt;br /&gt;
*Choose the user profile you want to view (if there are more than 1 person working on same project).&lt;br /&gt;
*Dropdown &amp;quot;Launch&amp;quot; from the user profile&amp;#039;s settings and then .&lt;br /&gt;
*To open the Jupyter app, select the JupyterServer application, then launch specific instance type you are told to use.&lt;br /&gt;
*Please use t3.medium instance if you are only editing the code and not executing it.&lt;br /&gt;
*After editing your code save it and then stop the instance and launch the required instance after that.&lt;br /&gt;
*To open Studio Notebook: Select File, New, and Notebook from the SageMaker Studio menu.&lt;br /&gt;
*Choose your Image, Kernel, instance type, and start-up script from the dropdown menus in the Change environment dialogue box, then click Select.&lt;br /&gt;
*A new Studio tab will appear once your new notebook launches.&lt;br /&gt;
*For stopping the instance once your work is done, click the Notebook instances in the left pane of the SageMaker console. &lt;br /&gt;
*Then click the Stop link under the Actions column to the left of the notebook instance&amp;#039;s name. &lt;br /&gt;
*Once the notebook instance is stopped, you can start it again by clicking the Start link&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio_-_Old_IAM_Method&amp;diff=709</id>
		<title>Using AWS SageMaker Studio - Old IAM Method</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio_-_Old_IAM_Method&amp;diff=709"/>
		<updated>2025-01-28T14:32:28Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add new title - old description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
*Open web browser and navigate to the AWS Management Console login page.&lt;br /&gt;
*Enter the URL provided in AWS correspondence email and continue as Sign in as IAM user.&lt;br /&gt;
*Enter the IAM username in the &amp;quot;IAM user name&amp;quot; field.&lt;br /&gt;
*Enter the IAM user&amp;#039;s temporary first password in the &amp;quot;Password&amp;quot; field provided by DeepSense AWS Admin.&lt;br /&gt;
*You will be redirected to change the password on first login, create a new password.&lt;br /&gt;
*After signing in to the AWS Management Console, locate the security credentials in the right top corner, where the account number and user name is written.&lt;br /&gt;
*Click on add MFA and follow the on-screen instructions to enable MFA. (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_enable_virtual.html#enable-virt-mfa-for-iam-user)&lt;br /&gt;
*After setting MFA kindly sign out and then sign in again with new password you have created and use MFA to access the cloud resources.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio Domain ==&lt;br /&gt;
*Select Admin configurations from the left navigation panel.&lt;br /&gt;
*Check for current AWS region on top right corner beside your account name. Set it to Canada (Central). &lt;br /&gt;
*Select Domains from the Admin configurations menu.&lt;br /&gt;
*Choose your project named domain to access from the Domains page.&lt;br /&gt;
*Select User Profiles from the domain settings.&lt;br /&gt;
*Choose the user profile you want to view (if there are more than 1 person working on same project).&lt;br /&gt;
*Dropdown &amp;quot;Launch&amp;quot; from the user profile&amp;#039;s settings and then .&lt;br /&gt;
*To open the Jupyter app, select the JupyterServer application, then launch specific instance type you are told to use.&lt;br /&gt;
*Please use t3.medium instance if you are only editing the code and not executing it.&lt;br /&gt;
*After editing your code save it and then stop the instance and launch the required instance after that.&lt;br /&gt;
*To open Studio Notebook: Select File, New, and Notebook from the SageMaker Studio menu.&lt;br /&gt;
*Choose your Image, Kernel, instance type, and start-up script from the dropdown menus in the Change environment dialogue box, then click Select.&lt;br /&gt;
*A new Studio tab will appear once your new notebook launches.&lt;br /&gt;
*For stopping the instance once your work is done, click the Notebook instances in the left pane of the SageMaker console. &lt;br /&gt;
*Then click the Stop link under the Actions column to the left of the notebook instance&amp;#039;s name. &lt;br /&gt;
*Once the notebook instance is stopped, you can start it again by clicking the Start link&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=708</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=MediaWiki:Sidebar&amp;diff=708"/>
		<updated>2025-01-28T14:31:19Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Initial SageMaker Studio new sign in method&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
* DeepSense Cloud Computing Platform&lt;br /&gt;
** mainpage | Available Cloud Services&lt;br /&gt;
** Resources | Resources&lt;br /&gt;
* Getting Support&lt;br /&gt;
** Contact information | Contact - Support email&lt;br /&gt;
* Getting Started &lt;br /&gt;
** Introduction to Cloud Computing | Introduction to Cloud Computing&lt;br /&gt;
** User Guide | User Guide&lt;br /&gt;
* Onboarding and using cloud services&lt;br /&gt;
** Using AWS EC2 |  AWS EC2 &lt;br /&gt;
** Using AWS Sagemaker | AWS SageMaker Notebook&lt;br /&gt;
** Using AWS SageMaker Studio | AWS SageMaker Studio&lt;br /&gt;
** Using AWS SageMaker Studio - Old IAM Method| AWS SageMaker Studio - Old&lt;br /&gt;
** Using Azure ML Workspace | Azure ML Workspace&lt;br /&gt;
** Using HPC on AWS and Azure | HPC on AWS and Azure&lt;br /&gt;
** Using AWS SageMaker Endpoint | AWS SageMaker Endpoint&lt;br /&gt;
** &lt;br /&gt;
* Storage on cloud&lt;br /&gt;
** Overview of your Storage on DeepSense | Storage Overview&lt;br /&gt;
* FAQ&lt;br /&gt;
** Restrictions | Restrictions&lt;br /&gt;
** Workarounds | Workarounds&lt;br /&gt;
** Best Practices | Best Practices&lt;br /&gt;
* Writing Tips&lt;br /&gt;
** Mitacs Accelerate Proposals | Mitacs Accelerate Proposals&lt;br /&gt;
** Paper Prep | Paper Prep&lt;br /&gt;
* DeepSense&lt;br /&gt;
** https://deepsense.ca | DeepSense home page&lt;br /&gt;
** Acknowledging DeepSense | Acknowledging DeepSense&lt;br /&gt;
** Terms of Use | Terms of use&lt;br /&gt;
* Self Directed Projects&lt;br /&gt;
** Training Projects | Training Projects&lt;br /&gt;
* Additional Resources&lt;br /&gt;
** Related Links | Related Links&lt;br /&gt;
** External Links | External Links&lt;br /&gt;
** External Data Sources | External Data Sources&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=707</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=707"/>
		<updated>2024-10-24T13:51:25Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Accessing DeepSense AWS SageMaker Studio Domain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
*Open web browser and navigate to the AWS Management Console login page.&lt;br /&gt;
*Enter the URL provided in AWS correspondence email and continue as Sign in as IAM user.&lt;br /&gt;
*Enter the IAM username in the &amp;quot;IAM user name&amp;quot; field.&lt;br /&gt;
*Enter the IAM user&amp;#039;s temporary first password in the &amp;quot;Password&amp;quot; field provided by DeepSense AWS Admin.&lt;br /&gt;
*You will be redirected to change the password on first login, create a new password.&lt;br /&gt;
*After signing in to the AWS Management Console, locate the security credentials in the right top corner, where the account number and user name is written.&lt;br /&gt;
*Click on add MFA and follow the on-screen instructions to enable MFA. (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_enable_virtual.html#enable-virt-mfa-for-iam-user)&lt;br /&gt;
*After setting MFA kindly sign out and then sign in again with new password you have created and use MFA to access the cloud resources.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio Domain ==&lt;br /&gt;
*Select Admin configurations from the left navigation panel.&lt;br /&gt;
*Check for current AWS region on top right corner beside your account name. Set it to Canada (Central). &lt;br /&gt;
*Select Domains from the Admin configurations menu.&lt;br /&gt;
*Choose your project named domain to access from the Domains page.&lt;br /&gt;
*Select User Profiles from the domain settings.&lt;br /&gt;
*Choose the user profile you want to view (if there are more than 1 person working on same project).&lt;br /&gt;
*Dropdown &amp;quot;Launch&amp;quot; from the user profile&amp;#039;s settings and then .&lt;br /&gt;
*To open the Jupyter app, select the JupyterServer application, then launch specific instance type you are told to use.&lt;br /&gt;
*Please use t3.medium instance if you are only editing the code and not executing it.&lt;br /&gt;
*After editing your code save it and then stop the instance and launch the required instance after that.&lt;br /&gt;
*To open Studio Notebook: Select File, New, and Notebook from the SageMaker Studio menu.&lt;br /&gt;
*Choose your Image, Kernel, instance type, and start-up script from the dropdown menus in the Change environment dialogue box, then click Select.&lt;br /&gt;
*A new Studio tab will appear once your new notebook launches.&lt;br /&gt;
*For stopping the instance once your work is done, click the Notebook instances in the left pane of the SageMaker console. &lt;br /&gt;
*Then click the Stop link under the Actions column to the left of the notebook instance&amp;#039;s name. &lt;br /&gt;
*Once the notebook instance is stopped, you can start it again by clicking the Start link&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Resources&amp;diff=706</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Resources&amp;diff=706"/>
		<updated>2024-09-05T19:07:31Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* AWS SageMaker Notebook Instance Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== AWS EC2 Cloud Compute Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.xlarge	&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|1 x 125 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|1 x 225 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g5.xlarge&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|16&lt;br /&gt;
|24&lt;br /&gt;
|1 x 250 NVMe SSD&lt;br /&gt;
|Up to 10&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available compute optimized instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| c5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 8&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| c5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|16&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available general purpose computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| m5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== AWS SageMaker Notebook Instance Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.xlarge (fast launch)&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge (fast launch)&lt;br /&gt;
|No GPU&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
|No GPU&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
| Up to 3.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Contact support for more options.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Resources&amp;diff=705</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Resources&amp;diff=705"/>
		<updated>2024-09-05T19:06:20Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* AWS EC2 Cloud Compute Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== AWS EC2 Cloud Compute Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.xlarge	&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|1 x 125 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|1 x 225 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g5.xlarge&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|16&lt;br /&gt;
|24&lt;br /&gt;
|1 x 250 NVMe SSD&lt;br /&gt;
|Up to 10&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available compute optimized instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| c5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 8&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| c5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|16&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available general purpose computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| m5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== AWS SageMaker Notebook Instance Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.xlarge (fast launch)&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge (fast launch)&lt;br /&gt;
|No GPU&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
|No GPU&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
| Up to 4,750&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Contact support for more options.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Resources&amp;diff=704</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Resources&amp;diff=704"/>
		<updated>2024-09-05T19:01:38Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* AWS EC2 Cloud Compute Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== AWS EC2 Cloud Compute Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.xlarge	&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|1 x 125 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|1 x 225 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g5.xlarge&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|16&lt;br /&gt;
|24&lt;br /&gt;
|1 x 250 NVMe SSD&lt;br /&gt;
|Up to 10&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available general purpose computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| m5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available compute optimized instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| c5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 8&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| c5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|16&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== AWS SageMaker Notebook Instance Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.xlarge (fast launch)&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge (fast launch)&lt;br /&gt;
|No GPU&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
|No GPU&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
| Up to 4,750&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Contact support for more options.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Resources&amp;diff=703</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Resources&amp;diff=703"/>
		<updated>2024-09-05T18:58:35Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* AWS EC2 Cloud Compute Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== AWS EC2 Cloud Compute Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.xlarge	&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|1 x 125 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|1 x 225 NVMe SSD&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|g5.xlarge&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|16&lt;br /&gt;
|24&lt;br /&gt;
|1 x 250 NVMe SSD&lt;br /&gt;
|Up to 10&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available general purpose computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
|-&lt;br /&gt;
| m5.2xlarge	&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|EBS-Only&lt;br /&gt;
|Up to 10&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== AWS SageMaker Notebook Instance Resources ==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: black; font-style:bold&amp;quot;&lt;br /&gt;
|+&amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;font-size:100%&amp;gt; Available accelerated computing instances&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPUs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;vCPU&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;GPU Memory (GiB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Instance Storage (GB)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Network Performance&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;EBS Bandwidth (Gbps)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.xlarge (fast launch)&lt;br /&gt;
|1&lt;br /&gt;
|4	&lt;br /&gt;
|16	&lt;br /&gt;
|16	&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
|ml.g4dn.2xlarge&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|32&lt;br /&gt;
|16&lt;br /&gt;
|Elastic EBS&lt;br /&gt;
|Up to 25&lt;br /&gt;
|Up to 3.5&lt;br /&gt;
|-&lt;br /&gt;
| m5.xlarge (fast launch)&lt;br /&gt;
|No GPU&lt;br /&gt;
| 4&lt;br /&gt;
| 16&lt;br /&gt;
|No GPU&lt;br /&gt;
| EBS-Only&lt;br /&gt;
| Up to 10&lt;br /&gt;
| Up to 4,750&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Contact support for more options.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=702</id>
		<title>Using AWS SageMaker Studio</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Studio&amp;diff=702"/>
		<updated>2024-09-04T17:26:55Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: /* Accessing DeepSense AWS SageMaker Studio Domain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker Studio is a web-based integrated development environment (IDE) for machine learning (ML) that allows data scientists and developers to perform all ML development steps, from data preparation to model building, training, deployment, and management, on a single, unified platform.&lt;br /&gt;
&lt;br /&gt;
== DeepSense AWS SageMaker Studio ==&lt;br /&gt;
You can find the Studio domain from SageMaker service dashboard&amp;#039;s left side panel. These are the instances [[Resources]] which can be used.&lt;br /&gt;
DeepSense has acquired Amazon SageMaker Studio Domains per project to give users access to use the Studio IDE. The Studio also includes a comprehensive set of tools for every stage of machine learning development, from data preparation to building, training, deploying, and managing ML models. It enables users to jump between these steps quickly to fine-tune their models, replay training experiments, and scale to distributed training directly from JupyterLab, Code Editor, or RStudio.&lt;br /&gt;
. Use Studio notebooks in your project domain to prepare and process data, write code to train models, deploy models to SageMaker hosting, and test or validate your models.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;AWS administrator will create DeepSense AWS IAM user account.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
AWS will send you an email containing information about your account. and users will have access to the AWS SageMaker Studio specific to thee project in new domain. &lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS Management Console ==&lt;br /&gt;
*Open web browser and navigate to the AWS Management Console login page.&lt;br /&gt;
*Enter the URL provided in AWS correspondence email and continue as Sign in as IAM user.&lt;br /&gt;
*Enter the IAM username in the &amp;quot;IAM user name&amp;quot; field.&lt;br /&gt;
*Enter the IAM user&amp;#039;s temporary first password in the &amp;quot;Password&amp;quot; field provided by DeepSense AWS Admin.&lt;br /&gt;
*You will be redirected to change the password on first login, create a new password.&lt;br /&gt;
*After signing in to the AWS Management Console, locate the security credentials in the right top corner, where the account number and user name is written.&lt;br /&gt;
*Click on add MFA and follow the on-screen instructions to enable MFA. (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_enable_virtual.html#enable-virt-mfa-for-iam-user)&lt;br /&gt;
*After setting MFA kindly sign out and then sign in again with new password you have created and use MFA to access the cloud resources.&lt;br /&gt;
&lt;br /&gt;
== Accessing DeepSense AWS SageMaker Studio Domain ==&lt;br /&gt;
*Select Admin configurations from the left navigation panel.&lt;br /&gt;
*Select Domains from the Admin configurations menu.&lt;br /&gt;
*Choose your project named domain to access from the Domains page.&lt;br /&gt;
*Select User Profiles from the domain settings.&lt;br /&gt;
*Choose the user profile you want to view (if there are more than 1 person working on same project).&lt;br /&gt;
*Dropdown &amp;quot;Launch&amp;quot; from the user profile&amp;#039;s settings and then .&lt;br /&gt;
*To open the Jupyter app, select the JupyterServer application, then launch specific instance type you are told to use.&lt;br /&gt;
*Please use t3.medium instance if you are only editing the code and not executing it.&lt;br /&gt;
*After editing your code save it and then stop the instance and launch the required instance after that.&lt;br /&gt;
*To open Studio Notebook: Select File, New, and Notebook from the SageMaker Studio menu.&lt;br /&gt;
*Choose your Image, Kernel, instance type, and start-up script from the dropdown menus in the Change environment dialogue box, then click Select.&lt;br /&gt;
*A new Studio tab will appear once your new notebook launches.&lt;br /&gt;
*For stopping the instance once your work is done, click the Notebook instances in the left pane of the SageMaker console. &lt;br /&gt;
*Then click the Stop link under the Actions column to the left of the notebook instance&amp;#039;s name. &lt;br /&gt;
*Once the notebook instance is stopped, you can start it again by clicking the Start link&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
It is necessary to stop the notebook instance in order to avoid being charged for not utilized hours. &lt;br /&gt;
So, when you&amp;#039;re finished, please stop the instance.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=701</id>
		<title>Using AWS SageMaker Endpoint</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=701"/>
		<updated>2024-08-14T18:51:38Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Final edit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker is a managed ML service that helps you build and train models and then deploy them into a production-ready hosted environment.&lt;br /&gt;
&lt;br /&gt;
== What is SageMaker Endpoint? ==&lt;br /&gt;
Amazon SageMaker is a fully managed machine learning service that enables data scientists and developers to build, train, and deploy machine learning models at scale. One of the key features of SageMaker is the ability to deploy machine learning models as endpoints, which can be invoked to make predictions on new data. Real-time inference is ideal for inference workloads where you have real-time, interactive, low latency requirements. You can deploy your model to SageMaker hosting services and get an endpoint that can be used for inference. These endpoints are fully managed and support autoscaling.&lt;br /&gt;
&lt;br /&gt;
== Prerequisite for setting up SageMaker Endpoint (Model Artifact)==&lt;br /&gt;
* After you are done with the modeling phase you can store the trained model on your project allocated s3 bucket.&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create model&amp;quot;.&lt;br /&gt;
* Give your model a name and choose the appropriate container image for your model.&lt;br /&gt;
* Specify the location of your trained model artifacts (e.g., S3 bucket).&lt;br /&gt;
* Specify any additional configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
&lt;br /&gt;
== Setting up a SageMaker Endpoint ==&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create endpoint”.&lt;br /&gt;
* Give your endpoint a name and choose the appropriate configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
* Select the model you created in the previous step.&lt;br /&gt;
* Click on “Create endpoint”. Your SageMaker endpoint is now ready to be invoked.&lt;br /&gt;
&lt;br /&gt;
== Invoking the endpoint ==&lt;br /&gt;
* For invoking the endpoint use your notebook to &lt;br /&gt;
* Use this code in your notebook to invoke an endpoint.&lt;br /&gt;
* Invoke the endpoint using the `invoke_endpoint` method of the SageMaker runtime client object.&lt;br /&gt;
&amp;lt;code&amp;gt; response = runtime.invoke_endpoint(EndpointName=&amp;#039;&amp;lt;your-endpoint-name&amp;gt;&amp;#039;, ContentType=&amp;#039;application/json&amp;#039;, Body=json.dumps(input_data)) &amp;lt;/code&amp;gt;&lt;br /&gt;
* You can parse the input and output as per your convenience.&lt;br /&gt;
&lt;br /&gt;
Remember: It&amp;#039;s crucial to delete or scale down your endpoint when not actively in use to avoid unnecessary charges.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=700</id>
		<title>Using AWS SageMaker Endpoint</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=700"/>
		<updated>2024-08-13T19:13:47Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker is a managed ML service that helps you build and train models and then deploy them into a production-ready hosted environment.&lt;br /&gt;
&lt;br /&gt;
== What is SageMaker Endpoint? ==&lt;br /&gt;
Amazon SageMaker is a fully managed machine learning service that enables data scientists and developers to build, train, and deploy machine learning models at scale. One of the key features of SageMaker is the ability to deploy machine learning models as endpoints, which can be invoked to make predictions on new data. Real-time inference is ideal for inference workloads where you have real-time, interactive, low latency requirements. You can deploy your model to SageMaker hosting services and get an endpoint that can be used for inference. These endpoints are fully managed and support autoscaling.&lt;br /&gt;
&lt;br /&gt;
== Prerequisite for setting up SageMaker Endpoint (Model Artifact)==&lt;br /&gt;
* After you are done with the modeling phase you can store the trained model on your project allocated s3 bucket.&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create model&amp;quot;.&lt;br /&gt;
* Give your model a name and choose the appropriate container image for your model.&lt;br /&gt;
* Specify the location of your trained model artifacts (e.g., S3 bucket).&lt;br /&gt;
* Specify any additional configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
&lt;br /&gt;
== Setting up a SageMaker Endpoint ==&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create endpoint”.&lt;br /&gt;
* Give your endpoint a name and choose the appropriate configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
* Select the model you created in the previous step.&lt;br /&gt;
* Click on “Create endpoint”. Your SageMaker endpoint is now ready to be invoked.&lt;br /&gt;
&lt;br /&gt;
Remember: It&amp;#039;s crucial to delete or scale down your endpoint when not actively in use to avoid unnecessary charges.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=699</id>
		<title>Using AWS SageMaker Endpoint</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=699"/>
		<updated>2024-08-13T19:11:58Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker is a managed ML service that helps you build and train models and then deploy them into a production-ready hosted environment.&lt;br /&gt;
&lt;br /&gt;
== What is SageMaker Endpoint? ==&lt;br /&gt;
Amazon SageMaker is a fully managed machine learning service that enables data scientists and developers to build, train, and deploy machine learning models at scale. One of the key features of SageMaker is the ability to deploy machine learning models as endpoints, which can be invoked to make predictions on new data. Real-time inference is ideal for inference workloads where you have real-time, interactive, low latency requirements. You can deploy your model to SageMaker hosting services and get an endpoint that can be used for inference. These endpoints are fully managed and support autoscaling.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisite for setting up SageMaker Endpoint (Model Artifact)===&lt;br /&gt;
* After you are done with the modeling phase you can store the trained model on your project allocated s3 bucket.&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create model&amp;quot;.&lt;br /&gt;
* Give your model a name and choose the appropriate container image for your model.&lt;br /&gt;
* Specify the location of your trained model artifacts (e.g., S3 bucket).&lt;br /&gt;
* Specify any additional configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
&lt;br /&gt;
=== Setting up a SageMaker Endpoint ===&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create endpoint”.&lt;br /&gt;
* Give your endpoint a name and choose the appropriate configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
* Select the model you created in the previous step.&lt;br /&gt;
* Click on “Create endpoint”. Your SageMaker endpoint is now ready to be invoked.&lt;br /&gt;
&lt;br /&gt;
Remember: It&amp;#039;s crucial to delete or scale down your endpoint when not actively in use to avoid unnecessary charges.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
	<entry>
		<id>https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=698</id>
		<title>Using AWS SageMaker Endpoint</title>
		<link rel="alternate" type="text/html" href="https://docs.deepsense.ca/index.php?title=Using_AWS_SageMaker_Endpoint&amp;diff=698"/>
		<updated>2024-08-13T19:04:02Z</updated>

		<summary type="html">&lt;p&gt;PSuthar: Add sagemaker endpoint initial content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amazon SageMaker is a managed ML service that helps you build and train models and then deploy them into a production-ready hosted environment.&lt;br /&gt;
&lt;br /&gt;
== What is SageMaker Endpoint? ==&lt;br /&gt;
Amazon SageMaker is a fully managed machine learning service that enables data scientists and developers to build, train, and deploy machine learning models at scale. One of the key features of SageMaker is the ability to deploy machine learning models as endpoints, which can be invoked to make predictions on new data. Real-time inference is ideal for inference workloads where you have real-time, interactive, low latency requirements. You can deploy your model to SageMaker hosting services and get an endpoint that can be used for inference. These endpoints are fully managed and support autoscaling.&lt;br /&gt;
&lt;br /&gt;
=== Prerequisite for setting up SageMaker Endpoint (Model Artifact)===&lt;br /&gt;
* After you are done with the modeling phase you can store the trained model on your project allocated s3 bucket.&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create model&amp;quot;.&lt;br /&gt;
* Give your model a name and choose the appropriate container image for your model.&lt;br /&gt;
* Specify the location of your trained model artifacts (e.g., S3 bucket).&lt;br /&gt;
* Specify any additional configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
&lt;br /&gt;
=== Setting up a SageMaker Endpoint ===&lt;br /&gt;
* Open the SageMaker console and open &amp;quot;Inference&amp;quot; on left panel and click on “Create endpoint”.&lt;br /&gt;
* Give your endpoint a name and choose the appropriate configuration settings (e.g., instance type, number of instances).&lt;br /&gt;
* Select the model you created in the previous step.&lt;br /&gt;
* Click on “Create endpoint”. Your SageMaker endpoint is now ready to be invoked.&lt;/div&gt;</summary>
		<author><name>PSuthar</name></author>
		
	</entry>
</feed>