Getting started
Setting up your environment is the first step to building a pipeline for your data. After your environment is ready, running a sample is quick and easy.
In this article, we'll perform these steps to get you started:
Create a Cognitive Services resource
To use the Big Data Cognitive Services, you must first create a Cognitive Service for your workflow. There are two main types of Cognitive Services: cloud services hosted in Azure and containerized services managed by users. We recommend starting with the simpler cloud-based Cognitive Services.
Cloud services
Cloud-based Cognitive Services are intelligent algorithms hosted in Azure. These services are ready for use without training, you just need an internet connection. You can create a Cognitive Service in the Azure portal or with the Azure CLI.
Containerized services (optional)
If your application or workload uses large datasets, requires private networking, or can't contact the cloud, communicating with cloud services might be impossible. In this situation, containerized Cognitive Services have these benefits:
Low Connectivity: You can deploy containerized Cognitive Services in any computing environment, both on-cloud and off. If your application can't contact the cloud, consider deploying containerized Cognitive Services on your application.
Low Latency: Because containerized services don't require the round-trip communication to/from the cloud, responses are returned with much lower latencies.
Privacy and Data Security: You can deploy containerized services into private networks, so that sensitive data doesn't leave the network.
High Scalability: Containerized services don't have "rate limits" and run on user-managed computers. So, you can scale Cognitive Services without end to handle much larger workloads.
Follow this guide to create a containerized Cognitive Service.
Create an Apache Spark cluster
Apache Spark⢠is a distributed computing framework designed for big-data data processing. Users can work with Apache Spark in Azure with services like Azure Databricks, Azure Synapse Analytics, HDInsight, and Azure Kubernetes Services. To use the Big Data Cognitive Services, you must first create a cluster. If you already have a Spark cluster, feel free to try an example.
Azure Databricks
Azure Databricks is an Apache Spark-based analytics platform with a one-click setup, streamlined workflows, and an interactive workspace. It's often used to collaborate between data scientists, engineers, and business analysts. To use the Big Data Cognitive Services on Azure Databricks, follow these steps:
- Create an Azure Databricks workspace
- Create a Spark cluster in Databricks
- Install the Big Data Cognitive Services
- Create a new library in your databricks workspace

- Input the following maven coordinates
Coordinates:
com.microsoft.ml.spark:mmlspark_2.11:1.0.0-rc3Repository:https://mmlspark.azureedge.net/maven

- Install the library onto a cluster

- Create a new library in your databricks workspace
Azure Synapse Analytics (optional)
Optionally, you can use Synapse Analytics to create a spark cluster. Azure Synapse Analytics brings together enterprise data warehousing and big data analytics. It gives you the freedom to query data on your terms, using either serverless on-demand or provisioned resources at scale. To get started using Azure Synapse Analytics, follow these steps:
- Create a Synapse Workspace (preview).
- Create a new serverless Apache Spark pool (preview) using the Azure portal.
In Azure Synapse Analytics, Big Data for Cognitive Services is installed by default.
Azure Kubernetes Service
If you're using containerized Cognitive Services, one popular option for deploying Spark alongside containers is the Azure Kubernetes Service.
To get started on Azure Kubernetes Service, follow these steps:
- Deploy an Azure Kubernetes Service (AKS) cluster using the Azure portal
- Install the Apache Spark 2.4.0 helm chart
- Install a cognitive service container using Helm
Try a sample
After you set up your Spark cluster and environment, you can run a short sample. This section demonstrates how to use the Big Data for Cognitive Services in Azure Databricks.
First, you can create a notebook in Azure Databricks. For other Spark cluster providers, use their notebooks or Spark Submit.
Create a new Databricks notebook, by choosing New Notebook from the Azure Databricks menu.
In the Create Notebook dialog box, enter a name, select Python as the language, and select the Spark cluster that you created earlier.
Select Create.
Paste this code snippet into your new notebook.
from mmlspark.cognitive import *
from pyspark.sql.functions import col
# Add your subscription key from the Language service (or a general Cognitive Service key)
service_key = "ADD-SUBSCRIPTION-KEY-HERE"
df = spark.createDataFrame([
("I am so happy today, its sunny!", "en-US"),
("I am frustrated by this rush hour traffic", "en-US"),
("The cognitive services on spark aint bad", "en-US"),
], ["text", "language"])
sentiment = (TextSentiment()
.setTextCol("text")
.setLocation("eastus")
.setSubscriptionKey(service_key)
.setOutputCol("sentiment")
.setErrorCol("error")
.setLanguageCol("language"))
results = sentiment.transform(df)
# Show the results in a table
display(results.select("text", col("sentiment")[0].getItem("score").alias("sentiment")))
- Get your subscription key from the Keys and Endpoint menu from your Language resource in the Azure portal.
- Replace the subscription key placeholder in your Databricks notebook code with your subscription key.
- Select the play, or triangle, symbol in the upper right of your notebook cell to run the sample. Optionally, select Run All at the top of your notebook to run all cells. The answers will display below the cell in a table.
Expected results
| text | sentiment |
|---|---|
| I am so happy today, its sunny! | 0.978959 |
| I am frustrated by this rush hour traffic | 0.0237956 |
| The cognitive services on spark aint bad | 0.888896 |