Build a sentiment analysis app
Overview
In this guide, you learn how to build and run a sentiment analysis application. You'll build the application using Python with the Natural Language Toolkit (NLTK), and then set up the environment and run the application using Docker.
The application analyzes user input text for sentiment using NLTK's SentimentIntensityAnalyzer and outputs whether the sentiment is positive, negative, or neutral.
Prerequisites
- You have installed the latest version of Docker Desktop. Docker adds new features regularly and some parts of this guide may work only with the latest version of Docker Desktop.
- You have a Git client. The examples in this section use a command-line based Git client, but you can use any client.
Get the sample application
Open a terminal, and clone the sample application's repository using the following command.
$ git clone https://github.com/harsh4870/Docker-NLP.git
Verify that you cloned the repository.
You should see the following files in your
Docker-NLP
directory.01_sentiment_analysis.py 02_name_entity_recognition.py 03_text_classification.py 04_text_summarization.py 05_language_translation.py entrypoint.sh requirements.txt Dockerfile README.md
Explore the application code
The source code for the sentiment analysis application is in the Docker-NLP/01_sentiment_analysis.py
file. Open 01_sentiment_analysis.py
in a text or code editor to explore its contents in the following steps.
Import the required libraries.
import nltk from nltk.sentiment import SentimentIntensityAnalyzer import ssl
nltk
: This is the Natural Language Toolkit library used for working with human language data in Python.SentimentIntensityAnalyzer
: This is a specific tool from NLTK used for determining the sentiment of a piece of text.ssl
: This module provides access to Transport Layer Security (encryption) functions used for secure web connections.
Handle SSL certificate verification.
try: _create_unverified_https_context = ssl._create_unverified_context except AttributeError: pass else: ssl._create_default_https_context = _create_unverified_https_context
This block is a workaround for certain environments where downloading data through NLTK might fail due to SSL certificate verification issues. It's telling Python to ignore SSL certificate verification for HTTPS requests.
Download NLTK resources.
nltk.download('vader_lexicon') nltk.download('punkt')
vader_lexicon
: This is a lexicon used by theSentimentIntensityAnalyzer
for sentiment analysis.punkt
: This is used by NLTK for tokenizing sentences. It's necessary for theSentimentIntensityAnalyzer
to function correctly.
Create a sentiment analysis function.
def perform_semantic_analysis(text): sid = SentimentIntensityAnalyzer() sentiment_score = sid.polarity_scores(text) if sentiment_score['compound'] >= 0.05: return "Positive" elif sentiment_score['compound'] <= -0.05: return "Negative" else: return "Neutral"
SentimentIntensityAnalyzer()
creates an instance of the analyzer.polarity_scores(text)
generates a sentiment score for the input text.
The function returns Positive, Negative, or Neutral based on the compound score.
Create the main loop.
if __name__ == "__main__": while True: input_text = input("Enter the text for semantic analysis (type 'exit' to end): ") if input_text.lower() == 'exit': print("Exiting...") break result = perform_semantic_analysis(input_text) print(f"Sentiment: {result}")
This part of the script runs an infinite loop to accept user input for analysis. If the user types
exit
, the program terminates. Otherwise, it prints out the sentiment of the provided text.Create
requirements.txt
.The sample application already contains the
requirements.txt
file to specify the necessary packages that the application imports. Openrequirements.txt
in a code or text editor to explore its contents.# 01 sentiment_analysis nltk==3.6.5 ...
Only the
nltk
package is required for the sentiment analysis application.
Explore the application environment
You'll use Docker to run the application in a container. Docker lets you containerize the application, providing a consistent and isolated environment for running it. This means the application will operate as intended within its Docker container, regardless of the underlying system differences.
To run the application in a container, a Dockerfile is required. A Dockerfile is a text document that contains all the commands you would call on the command line to assemble an image. An image is a read-only template with instructions for creating a Docker container.
The sample application already contains a Dockerfile
. Open the Dockerfile
in a code or text editor to explore its contents.
The following steps explain each part of the Dockerfile
. For more details, see the
Dockerfile reference.
Specify the base image.
FROM python:3.8-slim
This command sets the foundation for the build.
python:3.8-slim
is a lightweight version of the Python 3.8 image, optimized for size and speed. Using this slim image reduces the overall size of your Docker image, leading to quicker downloads and less surface area for security vulnerabilities. This is particularly useful for a Python-based application where you might not need the full standard Python image.Set the working directory.
WORKDIR /app
WORKDIR
sets the current working directory within the Docker image. By setting it to/app
, you ensure that all subsequent commands in the Dockerfile (likeCOPY
andRUN
) are executed in this directory. This also helps in organizing your Docker image, as all application-related files are contained in a specific directory.Copy the requirements file into the image.
COPY requirements.txt /app
The
COPY
command transfers therequirements.txt
file from your local machine into the Docker image. This file lists all Python dependencies required by the application. Copying it into the container lets the next command (RUN pip install
) install these dependencies inside the image environment.Install the Python dependencies in the image.
RUN pip install --no-cache-dir -r requirements.txt
This line uses
pip
, Python's package installer, to install the packages listed inrequirements.txt
. The--no-cache-dir
option disables the cache, which reduces the size of the Docker image by not storing the unnecessary cache data.Run additional commands.
RUN python -m spacy download en_core_web_sm
This step is specific to NLP applications that require the spaCy library. It downloads the
en_core_web_sm
model, which is a small English language model for spaCy. While not needed for this app, it's included for compatibility with other NLP applications that might use this Dockerfile.Copy the application code into the image.
COPY *.py /app COPY entrypoint.sh /app
These commands copy your Python scripts and the
entrypoint.sh
script into the image's/app
directory. This is crucial because the container needs these scripts to run the application. Theentrypoint.sh
script is particularly important as it dictates how the application starts inside the container.Set permissions for the
entrypoint.sh
script.RUN chmod +x /app/entrypoint.sh
This command modifies the file permissions of
entrypoint.sh
, making it executable. This step is necessary to ensure that the Docker container can run this script to start the application.Set the entry point.
ENTRYPOINT ["/app/entrypoint.sh"]
The
ENTRYPOINT
instruction configures the container to runentrypoint.sh
as its default executable. This means that when the container starts, it automatically executes the script.You can explore the
entrypoint.sh
script by opening it in a code or text editor. As the sample contains several applications, the script lets you specify which application to run when the container starts.
Run the application
To run the application using Docker:
Build the image.
In a terminal, run the following command inside the directory of where the
Dockerfile
is located.$ docker build -t basic-nlp .
The following is a break down of the command:
docker build
: This is the primary command used to build a Docker image from a Dockerfile and a context. The context is typically a set of files at a specified location, often the directory containing the Dockerfile.-t basic-nlp
: This is an option for tagging the image. The-t
flag stands for tag. It assigns a name to the image, which in this case isbasic-nlp
. Tags are a convenient way to reference images later, especially when pushing them to a registry or running containers..
: This is the last part of the command and specifies the build context. The period (.
) denotes the current directory. Docker will look for a Dockerfile in this directory. The build context (the current directory, in this case) is sent to the Docker daemon to enable the build. It includes all the files and subdirectories in the specified directory.
Docker outputs several logs to your console as it builds the image. You'll see it download and install the dependencies. Depending on your network connection, this may take several minutes. Docker does have a caching feature, so subsequent builds can be faster. The console will return to the prompt when it's complete.
For more details, see the docker build CLI reference.
Run the image as a container.
In a terminal, run the following command.
$ docker run -it basic-nlp 01_sentiment_analysis.py
The following is a break down of the command:
docker run
: This is the primary command used to run a new container from a Docker image.-it
: This is a combination of two options:-i
or--interactive
: This keeps the standard input (STDIN) open even if not attached. It lets the container remain running in the foreground and be interactive.-t
or--tty
: This allocates a pseudo-TTY, essentially simulating a terminal, like a command prompt or a shell. It's what lets you interact with the application inside the container.
basic-nlp
: This specifies the name of the Docker image to use for creating the container. In this case, it's the image namedbasic-nlp
that you created with thedocker build
command.01_sentiment_analysis.py
: This is the script you want to run inside the Docker container. It gets passed to theentrypoint.sh
script, which runs it when the container starts.
For more details, see the docker run CLI reference.
Note
For Windows users, you may get an error when running the container. Verify that the line endings in the
entrypoint.sh
areLF
(\n
) and notCRLF
(\r\n
), then rebuild the image. For more details, see Avoid unexpected syntax errors, use Unix style line endings for files in containers.You will see the following in your console after the container starts.
Enter the text for semantic analysis (type 'exit' to end):
Test the application.
Enter a comment to get the sentiment analysis.
Enter the text for semantic analysis (type 'exit' to end): I love containers! Sentiment: Positive Enter the text for semantic analysis (type 'exit' to end): I'm still learning about containers. Sentiment: Neutral
Summary
In this guide, you learned how to build and run a sentiment analysis application. You learned how to build the application using Python with NLTK, and then set up the environment and run the application using Docker.
Related information:
Next steps
Explore more natural language processing guides.