在线课程 – 构建 Microsoft Azure AI 云应用程序的专业认证

从 Master 到 Azure 云开发和构建 AI 解决方案。了解如何使用 Microsoft Zone 在云中创建智能应用程序和指南。

Suggested by: Coursera (What is Coursera?)

Professional Certificate

开始

No prior knowledge required

Time to complete the course

7-day free trial

No unnecessary risks

Skills you will acquire in the course

  • 创建事件驱动型 System
  • 控制订阅广告模板
  • 在 Azure 中管理存储选项
  • 使用 Azure 应用服务启动 Web 应用
  • 探索关键的 AI 概念
  • 构建实用的 AI 应用程序
  • Azure 机器学习工作室的动手体验
  • Azure 计算机视觉服务
  • Azure 自然语言处理服务
  • 使用 GitHub Copilot
  • 使用 Azure Functions 和 Azure 事件总线开发事件驱动的无服务器软件解决方案
  • 在 Azure 中实施虚拟机存储和管理解决方案
  • 使用 Azure 应用服务和 Docker 容器构建和启动 Web 应用
  • 使用 Azure AI 服务实现 AI、计算机视觉和自然语言处理解决方案

What you will learn in the course

Courses for which the course is suitable

  • AI 应用开发人员
  • 云解决方案开发人员
  • 软件工程师
  • 开发事件驱动系统
  • 云存储系统管理器
  • Web 应用程序开发人员
  • 人工智能专家
  • 数据分析师
  • 无服务器解决方案开发人员
  • 机器学习工程师

专业化 – 10 门课程系列

“使用 Microsoft Azure 构建 AI 云应用程序”计划提供全面的九门课程,涵盖使用 Microsoft Azure 开发云和 AI 解决方案的广泛主题。

主要主题:

  • Azure 函数
  • Azure 服务总线
  • Azure 存储
  • Azure 虚拟机
  • Azure 应用服务

在课程中,您将学习:

  • 创建事件驱动型 System
  • 控制订阅广告模板
  • 管理 Azure 存储选项
  • 使用 Azure 应用服务启动 Web 应用

此外,该专业将讨论在 Microsoft Azure 的帮助下开发具有人工智能和机器学习的智能软件解决方案,包括:

  • 探索关键的 AI 概念
  • 构建实用的 AI 应用程序
  • Azure 机器学习工作室的动手体验
  • Azure 计算机视觉服务
  • Azure 自然语言处理服务
  • 使用 GitHub Copilot

完成此计划后,您将为设计、开发和部署包含高级 AI 功能的高级云解决方案做好充分准备。

实践学习项目

在实习期间,学生将参与各种模拟真实商业场景的实践项目。这些项目包括:

  • 使用 Azure Functions 和 Azure 事件总线开发事件驱动的无服务器软件解决方案
  • 在 Azure 中实施虚拟机存储和管理解决方案
  • 使用 Azure 应用服务和 Docker 容器构建和启动 Web 应用
  • 使用 Azure AI 服务实现 AI、计算机视觉和自然语言处理解决方案

Details of the courses that make up the specialization

删除 HTML 标签以提取纯文本

以下是删除 HTML 标签并仅保留纯文本的几种方法:

1. 在 Python 中使用正则表达式

import re
html_content = '

This is bold text.

' plain_text = re.sub('<[^', '', html_content) print(plain_text) # Output: This is bold text.

2. 在 Python 中使用 BeautifulSoup

from bs4 import BeautifulSoup
html_content = '

This is bold text.

' soup = BeautifulSoup(html_content, 'html.parser') plain_text = soup.get_text() print(plain_text) # Output: This is bold text.

3. 使用 JavaScript

function stripHtml(html) {
    var tempDiv = document.createElement('div');
    tempDiv.innerHTML = html;
    return tempDiv.textContent || tempDiv.innerText || '';
}
var htmlContent = '

This is bold text.

'; var plainText = stripHtml(htmlContent); console.log(plainText); // Output: This is bold text.

4. 使用 PHP

$html_content = '

This is bold text.

'; $plain_text = strip_tags($html_content); echo $plain_text; // Output: This is bold text.