https://github.com/dioptx/google_aind_part_of_speech_tagging
This project was completed as part of Google's Artificial Intelligence Nanodegree
https://github.com/dioptx/google_aind_part_of_speech_tagging
Last synced: 6 months ago
JSON representation
This project was completed as part of Google's Artificial Intelligence Nanodegree
- Host: GitHub
- URL: https://github.com/dioptx/google_aind_part_of_speech_tagging
- Owner: dioptx
- License: mit
- Created: 2019-10-03T11:10:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T14:36:01.000Z (over 6 years ago)
- Last Synced: 2025-12-04T20:58:51.293Z (8 months ago)
- Language: HTML
- Size: 3.32 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# google_aind_Part_of_Speech_Tagging
This project was completed as part of Google's Artificial Intelligence Nanodegree
The html file showcased the completed project along with the results.
## Introduction
In this notebook, you'll use the [Pomegranate](https://github.com/jmschrei/pomegranate) library to build a hidden Markov model for part of speech tagging with a [universal tagset](http://www.petrovi.de/data/universal.pdf). Hidden Markov models have been able to achieve >96% tag accuracy with larger tagsets on realistic text corpora. Hidden Markov models have also been used for speech recognition and speech generation, machine translation, gene recognition for bioinformatics, and human gesture recognition for computer vision, and more.
The notebook already contains some code to get you started. You only need to add some new functionality in the areas indicated to complete the project; you will not need to modify the included code beyond what is requested. Sections that begin with **'IMPLEMENTATION'** in the header indicate that you must provide code in the block that follows. Instructions will be provided for each section, and the specifics of the implementation are marked in the code block with a `'TODO'` statement. Please be sure to read the instructions carefully!
## Getting Started
You can choose one of two ways to complete the project. The first method is to use the Workspace embedded in the classroom in the next lesson. The Workspace has already been configured with all the required project files for you to complete the project. Simply open the lesson, complete the sections indicated in the Jupyter notebook, and then click the "submit project" button.
**NOTE:** If you are prompted to select a kernel when you launch a notebook, choose the **Python 3** kernel.
Alternatively, you can download a copy of the project from GitHub and then run a Jupyter server locally with [Anaconda](https://www.anaconda.com/download/).
**NOTES:** These steps are **not** required if you are using the project Workspace.
0. (Optional) The provided code includes a function for drawing the network graph that depends on [GraphViz](http://www.graphviz.org/). You must manually install the GraphViz executable for your OS before the steps below or the drawing function will not work.
1. Open a terminal and clone the project repository:
```
$ git clone https://github.com/udacity/artificial-intelligence
```
2. Switch to the project folder and create a conda environment (note: you must already have Anaconda installed):
```
$ cd "artificial-intelligence/Projects/4_HMM Tagger"
.../ $ conda env create -f hmm-tagger.yaml
```
3. Activate the conda environment, then run the jupyter notebook server. (Note: windows users should run `activate hmm-tagger`)
```
.../ $ source activate hmm-tagger
(hmm-tagger) .../ $ jupyter notebook
```
Depending on your system settings, Jupyter will either open a browser window, or the terminal will print a URL with a security token. If the terminal prints a URL, simply copy the URL and paste it into a browser window to load the Jupyter browser. Once you load the Jupyter browser, select the project notebook (HMM tagger.ipynb) and follow the instructions inside to complete the project.
See below for project submission instructions.
## Evaluation
Your project will be reviewed by a Udacity reviewer against the project rubric [here](https://review.udacity.com/#!/rubrics/1429/view). Review this rubric thoroughly, and self-evaluate your project before submission. All criteria found in the rubric must meet specifications for you to pass.
## Submission
Once you have completed all of the code implementations, you need to finalize your work by exporting the iPython Notebook as an HTML document. Before exporting the notebook to html, all of the code cells need to have been run so that reviewers can see the final implementation and output. You must then export the notebook by running the last cell in the notebook, or by using the menu above and navigating to File -> Download as -> HTML (.html) Your submissions should include both the html and ipynb files.
Add the "hmm tagger.ipynb" and "hmm tagger.html" files to a zip archive and submit it with the button below. (**NOTE:** If you complete the project in the workspace, then you can submit directly using the "submit" button in the workspace.)