Connect with us

AI Research

Supercharge your AI workflows by connecting to SageMaker Studio from Visual Studio Code

Published

on


AI developers and machine learning (ML) engineers can now use the capabilities of Amazon SageMaker Studio directly from their local Visual Studio Code (VS Code). With this capability, you can use your customized local VS Code setup, including AI-assisted development tools, custom extensions, and debugging tools while accessing compute resources and your data in SageMaker Studio. By accessing familiar model development features, data scientists can maintain their established workflows, preserve their productivity tools, and seamlessly develop, train, and deploy machine learning, deep learning and generative AI models.

In this post, we show you how to remotely connect your local VS Code to SageMaker Studio development environments to use your customized development environment while accessing Amazon SageMaker AI compute resources.

The local integrated development environment (IDE) connection capability delivers three key benefits for developers and data scientists:

  • Familiar development environment with scalable compute: Work in your familiar IDE environment while harnessing the purpose-built model development environment of SageMaker AI. Keep your preferred themes, shortcuts, extensions, productivity, and AI tools while accessing SageMaker AI features.
  • Simplify operations: With a few clicks, you can minimize the complex configurations and administrative overhead of setting up remote access to SageMaker Studio spaces. The integration provides direct access to Studio spaces from your IDE.
  • Enterprise grade security: Benefit from secure connections between your IDE and SageMaker AI through automatic credentials management and session maintenance. In addition, code execution remains within the controlled boundaries of SageMaker AI.

This feature bridges the gap between local development preferences and cloud-based machine learning resources, so that teams can improve their productivity while using the features of Amazon SageMaker AI.

Solution overview

The following diagram showcases the interaction between your local IDE and SageMaker Studio spaces.

The solution architecture consists of three main components:

  • Local computer: Your development machine running VS Code with AWS Toolkit extension installed.
  • SageMaker Studio: A unified, web-based ML development environment to seamlessly build, train, deploy, and manage machine learning and analytics workflows at scale using integrated AWS tools and secure, governed access to your data.
  • AWS Systems Manager: A secure, scalable remote access and management service that enables seamless connectivity between your local VS Code and SageMaker Studio spaces to streamline ML development workflows.

The connection flow supports two options:

  • Direct launch (deep link): Users can initiate the connection directly from the SageMaker Studio web interface by choosing Open in VS Code, which automatically launches their local VS Code instance.
  • AWS Toolkit connection: Users can connect through AWS Toolkit extension in VS Code by browsing available SageMaker Studio spaces and selecting their target environment.

In addition to the preceding, users can also connect to their space directly from their IDE terminal using SSH. For instructions on connecting using SSH, refer to documentation here.

After connecting, developers can:

  • Use their custom VS Code extensions and tools
  • Remotely access and use their space’s storage
  • Run their AI and ML workloads in SageMaker compute environments
  • Work with notebooks in their preferred IDE
  • Maintain the same security parameters as the SageMaker Studio web environment

Solution implementation

Prerequisites

To try the remote IDE connection, you must meet the following prerequisites:

  1. You have access to a SageMaker Studio domain with connectivity to the internet. For domains set up in VPC-only mode, your domain should have a route out to the internet through a proxy, or a NAT gateway. If your domain is completely isolated from the internet, see Connect to VPC with subnets without internet access for setting up the remote connection. If you do not have a Studio domain, you can create one using the quick setup or custom setup option.
  2. You have permissions to update the SageMaker Studio domain or user execution role in AWS Identity and Access Management (IAM).
  3. You have the latest stable VS Code with Microsoft Remote SSH (version 0.74.0 or later), and AWS Toolkit extension (version v3.68.0 or later) installed on your local machine. Optionally, if you want to connect to SageMaker spaces directly from VS Code, you should be authenticated to access AWS resources using IAM or AWS IAM Identity Center credentials. See the administrator documentation for AWS Toolkit authentication support.
  4. You use compatible SageMaker Distribution images (2.7+ and 3.1+) for running SageMaker Studio spaces, or a custom image.
  5. If you’re initiating the connection from the IDE, you already have a user profile in the SageMaker Studio domain you want to connect to, and the spaces are already created using the Studio UI or through APIs. The AWS Toolkit does not allow creation or deletion of spaces.

Set up necessary permissions

We’ve launched the StartSession API for remote IDE connectivity. Add the sagemaker:StartSession permission to your user’s role so that they can remotely connect to a space.

For the deep-linking experience, the user starts the remote session from the Studio UI. Hence, the domain default execution role, or the user’s execution role should allow the user to call the StartSession API. Modify the permissions on your domain or user execution role by adding the following policy statement:

{
    "Version": "2012-10-17", 
    "Statement": [
        {
            "Sid": "RestrictStartSessionOnSpacesToUserProfile",
            "Effect": "Allow",
            "Action": [
                "sagemaker:StartSession"
            ],
            "Resource": "arn:*:sagemaker:${aws:Region}:${aws:AccountId}:space/${sagemaker:DomainId}/*",
            "Condition": {
                "ArnLike": {
                    "sagemaker:ResourceTag/sagemaker:user-profile-arn": "arn:*:sagemaker:${aws:Region}:${aws:AccountId}:user-profile/${sagemaker:DomainId}/${sagemaker:UserProfileName}"
                }
            }
        }
    ]
}

If you’re initializing the connection to SageMaker Studio spaces directly from VS Code, your AWS credentials should allow the user to list the spaces, start or stop a space, and initiate a connection to a running space. Make sure that your AWS credentials allow the following API actions:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "sagemaker:ListSpaces",
                "sagemaker:DescribeSpace",
                "sagemaker:UpdateSpace",
                "sagemaker:ListApps",
                "sagemaker:CreateApp",
                "sagemaker:DeleteApp",
                "sagemaker:DescribeApp",
                "sagemaker:StartSession",
                "sagemaker:DescribeDomain",
                "sagemaker:AddTags"
            ],
            "Resource": "*"
        }
    ]
}

This initial IAM policy provides a quick-start foundation for testing SageMaker features. Organizations can implement more granular access controls using resource Amazon Resource Name (ARN) constraints or attribute-based access control (ABAC). With the introduction of the StartSession API, you can restrict access by defining space ARNs in the resource section or implementing condition tags according to your specific security needs, as shown in the following example.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowRemoteAccessByTag",
            "Effect": "Allow",
            "Action": [
                "sagemaker:StartSession"
            ],
            "Resource": "*",
            "Condition": {
                "StringEquals": {
                    "aws:ResourceTag/User": 
                }
            }
        }
    ]
}

Enable remote connectivity and launch VS Code from SageMaker Studio

To connect to a SageMaker space remotely, the space must have remote access enabled.

  1. Before running a space on the Studio UI, you can toggle Remote access on to enable the feature, as shown in the following screenshot.

  1. After the feature is enabled, choose Run space to start the space. After the space is running, choose Open in VS Code to launch VS Code.

  1. The first time you choose this option, you’ll be prompted by your browser to confirm opening VS Code. Select the checkbox Always allow studio to confirm and then choose Open Visual Studio Code.

  1. This will open VS Code, and you will be prompted to update your SSH configuration. Choose Update SSH config to complete the connection. This is also a one-time setup, and you will not be prompted for future connections.

  1. On successful connection, a new window launches that is connected to the SageMaker Studio space and has access to the Studio space’s storage.

Connect to the space from VS Code

Using the AWS Toolkit, you can list the spaces, start, connect to a space, or connect to a running space that has remote connection enabled. If a running space doesn’t have remote connectivity enabled, you can stop the space from the AWS Toolkit and then select the Connect icon to automatically turn on remote connectivity and start the space. The following section describes the experience in detail.

  1. After you’re authenticated into AWS, from AWS Toolkit, access the AWS Region where your SageMaker Studio domain is. You will now see a SageMaker AI section. Choose the SageMaker AI section to list the spaces in your Region. If you’re connected using IAM, the toolkit lists the spaces across domains and users in your Region. See the [Optional] Filter spaces to a specific domain or user below on instructions to view spaces for a particular user profile. For Identity Center users, the list is already filtered to display only the spaces owned by you.

  1. After you identify the space, choose the connectivity icon as shown in the screenshot below to connect to the space.

Optional: Filter spaces to a specific domain or user

When connecting to an account using IAM, you will see a list of spaces in the account and region. This can be overwhelming if the account has tens or hundreds of domains, users and spaces. The toolkit provides a filter utility that helps you quickly filter the list of spaces to a specific user profile or a list of user profiles.

  1. Next to SageMaker AI, choose the filter icon as shown in the following screenshot.

  1. You will now see a list of user profiles and domains. Scroll through the list or enter user profile or domain name, and then select or unselect to filter the list of spaces by domain or user profile.

Use cases

Following use cases demonstrate how AI developers and machine learning (ML) engineers can use local integrated development environment (IDE) connection capability.

Connecting to a notebook kernel

After you’re connected to the space, you can start creating and running notebooks and scripts right from your local development environment. By using this method, you can use the managed infrastructure provided by SageMaker for resource-intensive AI tasks while coding in a familiar environment. You can run notebook cells on your SageMaker Distribution or custom image kernels, and can choose the IDE that maximizes your productivity. Use the following steps to create and connect your notebook to a remote kernel –

  1. On your VS Code file explorer, choose the plus (+) icon to create a new file, name it remote-kernel.ipynb.
  2. Open the notebook and run a cell (for example, print ("Hello from remote IDE"). VS Code will show a pop-up for installing the Python and Jupyter extension.
  3. Choose Install/Enable suggested extensions.
  4. After the extensions are installed, VS Code will automatically launch the kernel selector. You can also choose Select Kernel on the right to view the list of kernels.

For the next steps, follow the directions for the space you’re connected to.

Code Editor spaces:

  1. Select Python environments… and choose from a list of provided Python environments. After you are connected, you can start running the cells in your notebook.

JupyterLab spaces:

  1. Select the Existing Jupyter Server… option to have the same kernel experience as the JupyterLab environment.
    If this is the first time connecting to JupyterLab spaces, you will need to configure the Jupyter server to view the same kernels as the remote server using the following steps.
    1. Choose Enter the URL of the running Jupyter Server and enter http://localhost:8888/jupyterlab/default/lab as the URL and press Enter.
    2. Enter a custom server display name, for example, JupyterLab Space Default Server and press Enter.You will now be able to view the list of kernels that’s available on the remote Jupyter server. For consequent connections, this display name will be available for you to choose from when you select the existing Jupyter server option.

The following graphic shows the entire workflow. In this example, we’re running a JupyterLab space with the SageMaker Distribution image, so we can view the list of kernels available in the image.

You can choose the kernel of your choice, for example, the Python 3 kernel, and you can start running the notebook cells on the remote kernel. With access to the SageMaker managed kernels, you can now focus on model development rather than infrastructure and runtime management, while using the development environment you know and trust.

Best practices and guardrails

  1. Follow the principle of least privilege when allowing users to connect remotely to SageMaker Studio spaces applications. SageMaker Studio supports custom tag propagation, we recommend tagging each user with a unique identifier and using the tag to allow the StartSession API to only their private applications.
  2. As an administrator, if you want to disable this feature for your users, you can enforce it using the sagemaker:RemoteAccess condition key. The following is an example policy.
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowCreateSpaceWithRemoteAccessDisabled",
            "Effect": "Allow",
            "Action": [
                "sagemaker:CreateSpace",
                "sagemaker:UpdateSpace"
                ],
            "Resource": "*",
            "Condition": {
                "StringEquals": {
                    "sagemaker:RemoteAccess": [
                        "DISABLED"
                    ]
                }
            }
        },
        {
            "Sid": "AllowCreateSpaceWithNoRemoteAccess",
            "Effect": "Allow",
            "Action":  [
                "sagemaker:CreateSpace",
                "sagemaker:UpdateSpace"
                ],
            "Resource": "*",
            "Condition": {
                "Null": {
                    "sagemaker:RemoteAccess": "true"
                }
            }
        }
    ]
}

  1. When connecting remotely to the SageMaker Studio spaces from your local IDE, be aware of bandwidth constraints. For optimal performance, avoid using the remote connection to transfer or access large datasets. Instead, use data transfer methods built for cloud and in-place data processing to facilitate a smooth user experience. We recommend an instance with at least 8 GB of storage to start with, and the SageMaker Studio UI will throw an exception if you choose a smaller instance.

Cleanup

If you have created a SageMaker Studio domain for the purposes of this post, remember to delete the applications, spaces, user profiles, and the domain. For instructions, see Delete a domain.

For the SageMaker Studio spaces, use the idle shutdown functionality to avoid incurring charges for compute when it is not in use.

Conclusion

The remote IDE connection feature for Amazon SageMaker Studio bridges the gap between local development environments and powerful ML infrastructure of SageMaker AI. With direct connections from local IDEs to SageMaker Studio spaces, developers and data scientists can now:

  • Maintain their preferred development environment while using the compute resources of SageMaker AI
  • Use custom extensions, debugging tools, and familiar workflows
  • Access governed data and ML resources within existing security boundaries
  • Choose between convenient deep linking or AWS Toolkit connection methods
  • Operate within enterprise-grade security controls and permissions

This integration minimizes the productivity barriers of context switching while facilitating secure access to SageMaker AI resources. Get started today with SageMaker Studio remote IDE connection to connect your local development environment to SageMaker Studio and experience streamlined ML development workflows using your familiar tools while the powerful ML infrastructure of SageMaker AI.


About the authors


Durga Sury
 is a Senior Solutions Architect at Amazon SageMaker, where she helps enterprise customers build secure and scalable AI/ML systems. When she’s not architecting solutions, you can find her enjoying sunny walks with her dog, immersing herself in murder mystery books, or catching up on her favorite Netflix shows.

Edward Sun is a Senior SDE working for SageMaker Studio at Amazon Web Services. He is focused on building interactive ML solution and simplifying the customer experience to integrate SageMaker Studio with popular technologies in data engineering and ML landscape. In his spare time, Edward is big fan of camping, hiking, and fishing, and enjoys spending time with his family.

Raj Bagwe is a Senior Solutions Architect at Amazon Web Services, based in San Francisco, California. With over 6 years at AWS, he helps customers navigate complex technological challenges and specializes in Cloud Architecture, Security and Migrations. In his spare time, he coaches a robotics team and plays volleyball. He can be reached at X handle @rajesh_bagwe.

Sri Aakash Mandavilli is a Software Engineer on the Amazon SageMaker Studio team, where he has been building innovative products since 2021. He specializes in developing various solutions across the Studio service to enhance the machine learning development experience. Outside of work, SriAakash enjoys staying active through hiking, biking, and taking long walks.



Source link

Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

AI Research

Ciena Powers SingAREN to Enhance AI-Driven Research with High-Speed Network

Published

on



For over a decade, Singapore has consistently ranked highly on the Global Innovation Index, an annual ranking of 130 economies. In 2024 it achieved its highest position yet – 4th globally. 


This strong performance is largely due to steady, long-term investment in research & development (R&D) as a key pillar of Singapore’s economic development strategy.


Supporting Singapore’s Research, Innovation and Enterprise (RIE) ecosystem is the Singapore Advanced Research and Education Network (SingAREN), established in 1997. SingAREN is the sole provider of dedicated local and international network services for the local Research and Education community.


SingAREN’s network supports the SingAREN Open Exchange (SOE) for high-speed research and education connectivity, eduroam, an international Wi-Fi internet access roaming service for the international research and education community, and FileSender SG as a platform for large file transfers, among other services running on its network.


RIE is vital to Singapore’s progress, fostering economic growth and competitiveness. It also drives scientific advancements that can potentially address societal challenges and enhance our well-being.


SingAREN has supported robotic telesurgery trials across international boundaries, which require precise, instantaneous control, and a low-latency network for real-time collaboration.


SingAREN also enables high-speed, resilient connectivity to the National Supercomputing Center (NSCC), which manages Singapore’s national high-performance computing (HPC) resources, supporting research and innovation across various fields. In particular, the NSCC’s expertise and specialized infrastructure are often leveraged to manage and analyze genomic data. Transferring genomic data is typically difficult due to its massive data size.


SingAREN provided a high-speed link to the Cancer Science Institute of Singapore for a research project, transmitting more than 2 petabytes of cancer genomics data downloaded from repositories in the United States into NSCC. The research involved harmonizing petabytes of whole genome sequencing data, and downloads were expected to be extremely fast, stable, and efficient, after which, the downloaded data would be analyzed and reprocessed with high computing power.


This is but one of the examples of collaboration with NSCC to transfer, download, analyze and process genomic data.


Academic research is experiencing explosive growth and requires more data than ever before, fuelled by AI and Machine Learning (ML), and cloud computing. The increasing use of generative and agentic AI will also impact SingAREN and its research partners significantly, leading to increased data volume. This type of advanced research activity will not be possible without a robust, scalable, low-latency network.


In the coming months, SingAREN will enhance its network to further support its research institution partners. These plans include the SingAREN Lightwave Internet Exchange (SLIX) 2.5 project, to provide high-speed, secure connectivity by 2027, and the SLIX 3.0 vision to build a future-ready network that incorporates quantum-safe networking, AI research, and haptic surgery. SingAREN also aims to expand cybersecurity threat intelligence sharing and continue infrastructure upgrades, such as implementing 400G switches and enhancing Points of Presence (PoP) resilience.


SingAREN uses Ciena’s 6500 powered by Ciena’s WaveLogic programmable coherent optic technology. Deployed by Ciena partner, Terrabit Networks, Ciena’s 6500 supports SingAREN to respond to changing requirements on-demand, allowing the REN to continually maximize network efficiencies and offer customizable service delivery over any distance.


Associate Professor Francis Lee, Vice President of SingAREN


Our backbone network, powered by Ciena’s 6500 optical solution, is built to handle the growing demands of AI, genomics, and big data applications—transmitting petabytes of data. To support the advancement of Singapore’s Research, Innovation and Enterprise agenda, our flexible, low-latency network can now seamlessly deliver 10G to 100G connections to member institutions. We continue to push the boundaries of research and innovation, ensuring connectivity is never a limiting factor.



Source link

Continue Reading

AI Research

SoundHound AI Stock Sank Today — Is the Artificial Intelligence Company a Buy?

Published

on


SoundHound AI (SOUN -4.73%) stock saw a pullback in Thursday’s trading. The company’s share price fell 4.7% in the session and had been down as much as 8.1% earlier in trading.

While there doesn’t appear to have been any major business-specific news behind the pullback, investors may have moved to take profits after a pop for the company’s share price earlier in the week. Despite today’s pullback, the stock is still up roughly 9% over the last week of trading. Even more striking, the company’s share price is up roughly 39% over the last three months.

Image source: Getty Images.

Is SoundHound AI stock a good buy right now?

SoundHound AI has been highly volatile over the last year of trading. While the company’s share price is still up roughly 197% across the stretch, it’s also still down approximatley 49% from its peak in the period.

Even as the company’s sales base has ramped up rapidly, sales growth has continued to accelerate. Revenue increased 151% year over year in the first quarter of the company’s current fiscal year, which ended March 31. The company still only posted $29.1 million in sales in the period, but sales growth in the quarter marked a dramatic improvement over the 73% annual growth it posted in the prior-year period.

SoundHound is an early mover in the voice-based agentic artificial intelligence (AI) space, and it has huge expansion potential over the long term — but its valuation profile still comes with a risk. The company now has a market capitalization of roughly $4.9 billion and is valued at approximately 31 times this year’s expected sales.

For investors with a very high risk tolerance, SoundHound AI could still be a worthwhile investment. The company has been posting very impressive sales momentum, but its valuation already prices in a lot of strong growth in the future. If you’re looking to build a position in SoundHound AI stock, using a dollar-cost-averaging strategy for your purchases may be better than buying in all at once at today’s prices.

Keith Noonan has no position in any of the stocks mentioned. The Motley Fool has no position in any of the stocks mentioned. The Motley Fool has a disclosure policy.



Source link

Continue Reading

AI Research

Artificial Intelligence (AI) in Healthcare Market worth

Published

on


The prominent players operating in the Artificial Intelligence (AI) in healthcare market include Koninklijke Philips N.V. (Netherlands), Microsoft Corporation (US), Siemens Healthineers AG (Germany), NVIDIA Corporation (US), Epic Systems Corporation (US)

Browse 902 market data Tables and 67 Figures spread through 711 Pages and in-depth TOC on “Artificial Intelligence (AI) in Healthcare Market by Offering (Integrated), Function (Diagnosis, Genomic, Precision Medicine, Radiation, Immunotherapy, Pharmacy, Supply Chain), Application (Clinical), End User (Hospitals), Region – Global Forecast to 2030
The global Artificial Intelligence (AI) in Healthcare Market [https://www.marketsandmarkets.com/Market-Reports/artificial-intelligence-healthcare-market-54679303.html?utm_source=abnewswire.com&utm_medium=paidpr&utm_campaign=artificialintelligenceinhealthcaremarket], valued at US$14.92 billion in 2024, is forecasted to grow at a robust CAGR of 38.6%, reaching US$21.66 billion in 2025 and an impressive US$110.61billion by 2030. The growing incidence of chronic diseases, linked with an increasing geriatric population, puts substantial financial pressure on healthcare providers. There is a rising need for the early detection of conditions such as dementia and cardiovascular disorders. This can be done by analysing imaging data to recognize patterns, which helps create personalized treatment plans.

Download PDF Brochure: https://www.marketsandmarkets.com/pdfdownloadNew.asp?id=54679303 [https://www.marketsandmarkets.com/pdfdownloadNew.asp?id=54679303&utm_source=abnewswire.com&utm_medium=paidpr&utm_campaign=artificialintelligenceinhealthcaremarket]

Browse in-depth TOC on “Artificial Intelligence (AI) in Healthcare Market”

882 – Tables

61 – Figures

738 – Pages

By tools, the Artificial Intelligence (AI) in healthcare market for machine learning has been bifurcated into deep learning, supervised learning, reinforcement learning, unsupervised learning, and other machine learning technologies. The deep learning segment accounted for the largest share of the Artificial Intelligence (AI) in healthcare market in 2024. The capability to process vast amounts of unstructured medical data, such as electronic health records (HER), imaging, and genomics, allows accurate disease diagnosis and prediction. The integration of deep learning into healthcare is significantly boosting the AI in healthcare market, leading to substantial investments in diagnostic tools and predictive analytics. As computational power and data availability continue to increase, deep learning is set to unlock further advancements, solidifying its position as a key enabler of next-generation healthcare technologies.

By end user, the AI in healthcare market is segmented into healthcare providers, healthcare payers, patients, and other end users. In 2024, healthcare providers accounted for the largest share of the AI in healthcare market. The large share of this end-user segment can be attributed to the increasing budgets of hospitals to improve the quality of care provided and reduce the cost of care.

By geography, the Artificial Intelligence (AI) in healthcare market is segmented into five main regions: North America, Europe, Asia Pacific, Latin America, and the Middle East & Africa. The Asia Pacific region is projected to see a substantial growth rate during the forecast period. The Asia Pacific (APAC) region is experiencing substantial growth in adopting AI technologies within the healthcare sector, driven by a combination of demographic shifts, technological advancements, and increased investments in innovation. The rising elderly population in the region is a key factor, with the proportion of individuals aged 65 years and above increasing significantly. The demand for advanced healthcare solutions has surged as the aging population faces chronic and age-related conditions, necessitating efficient diagnostic, monitoring, and treatment tools. AI technologies are being integrated into various healthcare applications, including predictive analytics, telemedicine, medical imaging, and patient management systems. These innovations aim to address gaps in healthcare access, improve diagnostic accuracy, and streamline operations across the region.

Request Sample Pages : https://www.marketsandmarkets.com/requestsampleNew.asp?id=54679303 [https://www.marketsandmarkets.com/requestsampleNew.asp?id=54679303&utm_source=abnewswire.com&utm_medium=paidpr&utm_campaign=artificialintelligenceinhealthcaremarket]

The prominent players operating in the Artificial Intelligence (AI) in healthcare market include Koninklijke Philips N.V. (Netherlands), Microsoft Corporation (US), Siemens Healthineers AG (Germany), NVIDIA Corporation (US), Epic Systems Corporation (US), GE Healthcare (US), Medtronic (US), Oracle (US), Veradigm LLC (US), Merative (IBM) (US), Google (US), Cognizant (US), Johnson & Johnson (US), Amazon Web Services, Inc. (US), among others. These companies adopted strategies such as product launches, product updates, expansions, partnerships, collaborations, mergers, and acquisitions to strengthen their market presence in the Artificial Intelligence (AI) in healthcare market.

Koninklijke Philips N.V. (Netherlands)

Koninklijke Philips N.V. is a leading player in the AI in the healthcare market. The company utilizes AI to deliver innovative tools across various areas, including diagnostic imaging, patient monitoring, and precision medicine. Its advanced AI-driven platforms, such as the Philips HealthSuite, facilitate the integration and analysis of extensive clinical data, which supports personalized treatment plans and improves patient outcomes. Philips focuses on organic and inorganic growth strategies to expand its market presence.

Strategic partnerships in high-potential markets and collaborations have been the key growth strategies of the company over the years. For example, in February 2025, Philips partnered with Medtronic to educate and train cardiologists and radiologists in India on advanced imaging techniques for structural heart diseases. This partnership aims to upskill 300+ clinicians in multi-modality imaging such as echocardiography (echo) and Magnetic Resonance Imaging (MRI), especially for End-Stage Renal Disease (ESRD) patients. In November 2023, Philips and NYU Langone Health partnered to focus on patient safety and outcomes. This partnership integrated innovative health technologies, including digital pathology, clinical informatics, and AI-enabled diagnostics, enabling real-time collaboration among clinicians. The company also focuses on winning contracts across several companies in the healthcare space. This helps the company expand its footprint. For instance, in September 2022, Philips and Mandaya Royal Hospital Puri (MRHP) in Jakarta underwent a digital transformation in a strategic partnership, enhancing patient-centered care and healthcare services.

Microsoft Corporation (US):

Microsoft Corporation is one of the leading providers of software & tools that include advanced AI capabilities in healthcare to improve patient outcomes, streamline operations, and drive innovation. Its Azure-based AI solutions support distinct applications such as medical imaging, genomics, and precision medicine. The company also provides healthcare-specific AI models through its Azure AI Model Catalog, which is constructed to support hospitals and research institutions in building and deploying tailored AI solutions proficiently. Moreover, the integration of Nuance’s AI-powered clinical and diagnostic tools encourages its capacity to support healthcare providers in decision-making and care delivery. The company continuously brings AI capabilities to the platforms in large-scale customer models. For instance, in March 2025, the company launched Microsoft Dragon Copilot, the first unified voice AI assistant in the healthcare industry that enables clinicians to streamline clinical documentation, surface information, and automate tasks.

Microsoft Corporation has invested significantly in R&D, which has improved its product portfolio and position in the AI market. Machine Learning (ML), deep learning, Natural Language Processing (NLP), and speech processing are the key focus areas of the company in the AI in healthcare market. The company continuously invests in a series of services and computational biology projects, including research support tools for next-generation precision healthcare, genomics, immunomics, CRISPR, and cellular and molecular biologics. It has a strong global presence, with key operations supported through its Azure cloud infrastructure across regions like North America, Europe, Asia-Pacific, and the Middle East.

For more information, Inquire Now! [https://www.marketsandmarkets.com/Enquiry_Before_BuyingNew.asp?id=54679303&utm_source=abnewswire.com&utm_medium=paidpr&utm_campaign=artificialintelligenceinhealthcaremarket]

Media Contact
Company Name: MarketsandMarkets Trademark Research Private Ltd.
Contact Person: Mr. Rohan Salgarkar
Email:Send Email [https://www.abnewswire.com/email_contact_us.php?pr=artificial-intelligence-ai-in-healthcare-market-worth-11061-billion-by-2030]
Phone: 18886006441
Address:1615 South Congress Ave. Suite 103, Delray Beach, FL 33445
City: Florida
State: Florida
Country: United States
Website: https://www.marketsandmarkets.com/Market-Reports/artificial-intelligence-healthcare-market-54679303.html

Legal Disclaimer: Information contained on this page is provided by an independent third-party content provider. ABNewswire makes no warranties or responsibility or liability for the accuracy, content, images, videos, licenses, completeness, legality, or reliability of the information contained in this article. If you are affiliated with this article or have any complaints or copyright issues related to this article and would like it to be removed, please contact retract@swscontact.com

This release was published on openPR.



Source link

Continue Reading

Trending