- Natural Language Processing with Python Quick Start Guide
- Nirant Kasliwal
- 704字
- 2021-06-10 18:36:38
Loading the data
I have always liked The Adventures of Sherlock Holmes by Sir Arthur Conan Doyle. Let's download the book and save it locally:
url = 'http://www.gutenberg.org/ebooks/1661.txt.utf-8'
file_name = 'sherlock.txt'
Let's actually download the file. You only need to do this once, but this download utility can be used whenever you are downloading other datasets, too:
import urllib.request
# Download the file from `url` and save it locally under `file_name`:
with urllib.request.urlopen(url) as response:
with open(file_name, 'wb') as out_file:
data = response.read() # a `bytes` object
out_file.write(data)
Moving on, let's check whether we got the correct file in place with shell syntax inside our Jupyter notebook. This ability to run basic shell commands – on both Windows and Linux – is really useful:
!ls *.txt
The preceding command returns the following output:
sherlock.txt
The file contains header and footer information from Project Gutenberg. We are not interested in this, and will discard the copyright and other legal notices. This is what we want to do:
- Open the file.
- Delete the header and footer information.
- Save the new file as sherlock_clean.txt.
I opened the text file and found that I need to remove the first 33 lines. Let's do that using shell commands – which also work on Windows inside Jupyter notebook. You remember this now, don't you? Marching on:
!sed -i 1,33d sherlock.txt
I used the sed syntax. The -i flag tells you to make the necessary changes. 1,33d instructs you to delete lines 1 to 33.
Let's double-check this. We expect the book to now begin with the iconic book title/cover:
!head -5 sherlock.txt
This shows the first five lines of the book. They are as we expect:
THE ADVENTURES OF SHERLOCK HOLMES
by
SIR ARTHUR CONAN DOYLE
What do I see?
Before I move on to text cleaning for any NLP task, I would like to spend a few seconds taking a quick glance at the data itself. I noted down some of the things I spotted in the following list. Of course, a keener eye will be able to see a lot more than I did:
- Dates are written in a mixed format: twentieth of March, 1888; times are too: three o'clock.
- The text is wrapped at around 70 columns, so no line can be longer than 70 characters.
- There are a lot of proper nouns. These include names such as Atkinson and Trepoff, in addition to locations such as Trincomalee and Baker Street.
- The index is in Roman numerals such as I and IV, and not 1 and 4.
- There is a lot of dialogues such as You have carte blanche, with no narrative around them. This storytelling style switches freely from being narrative to dialogue-driven.
- The grammar and vocabulary is slightly unusual because of the time when Doyle wrote.
These subjective observations are helpful in understanding the nature and edge cases in your text. Let's move on and load the book into Python for processing:
# let's get this data into Python
text = open(file_name, 'r', encoding='utf-8').read() # note that I add an encoding='utf-8' parameter to preserve information
print(text[:5])
This returns the first five characters:
THE A
Let's quickly verify that we have loaded the data into useful data types.
To check our own data types, use the following command:
print(f'The file is loaded as datatype: {type(text)} and has {len(text)} characters in it')
The preceding command returns the following output:
The file is loaded as datatype: <class 'str'> and has 581204 characters in it
There is a major improvement between Py2.7 and Py3.6 on how strings are handled. They are now all Unicode by default.
Here is a small relevant example to highlight the differences between the two:
from collections import Counter
Counter('M?belstück')
In Python 2: Counter({'\xc3': 2, 'b': 1, 'e': 1, 'c': 1, 'k': 1, 'M': 1, 'l': 1, 's': 1, 't': 1, '\xb6': 1, '\xbc': 1})
In Python 3: Counter({'M': 1, '?': 1, 'b': 1, 'e': 1, 'l': 1, 's': 1, 't': 1, 'ü': 1, 'c': 1, 'k': 1})
- Qt 5 and OpenCV 4 Computer Vision Projects
- Kali Linux Web Penetration Testing Cookbook
- 在最好的年紀學Python:小學生趣味編程
- Rust實戰
- AWS Serverless架構:使用AWS從傳統部署方式向Serverless架構遷移
- Mastering Spring MVC 4
- Mastering QGIS
- 數據結構與算法JavaScript描述
- DevOps Automation Cookbook
- Unity 5.x By Example
- 數據結構習題解析與實驗指導
- PySide 6/PyQt 6快速開發與實戰
- 區塊鏈技術與應用
- SSM開發實戰教程(Spring+Spring MVC+MyBatis)
- Python Machine Learning Blueprints:Intuitive data projects you can relate to