-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
colinelder
committed
Mar 18, 2024
1 parent
5bff3a0
commit af6fce3
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# Current Articles Reviewed | ||
|
||
## Natural Language Processing | ||
|
||
https://www.google.com/books/edition/Natural_Language_Processing_with_Python/lVv6DwAAQBAJ?hl=en&gbpv=1&dq=spacy+python+natural+language+processing&pg=PR15&printsec=frontcover | ||
- This article reviews the basics of using spacy for natural language processing. This includes its installation, setup, and installation of desired language packages. Additionally, it adressess how the library works and the code behind it. From there, it describes how spacy parses through text with tokenization. | ||
Reminder for methods section: user must install spacy using 'pip install spacy' and then 'spacy download en' | ||
Reminder for methods section: user must install spacy using 'pip install spacy' and then 'spacy download en' | ||
|
||
https://link.springer.com/book/10.1007/978-1-4842-4354-1 | ||
|
||
- This book details everything a new user may need to know about natural language processing- from background on what it is and how it works to set up and different options the user has for execution. | ||
|
||
## Streamlit | ||
|
||
https://docs.streamlit.io/get-started/installation | ||
|
||
- This website details everything that is needed to know for the setup of streamlit- which was used to create the interface for this project. This includes the installation and commands to run the program, as well as more advanced details that describe how to design the interface properly and effectively. | ||
|