Fix: Replace polyglot with NLTK alternatives to resolve HTTP 403 error#65
Open
jalajthanaki wants to merge 1 commit intomasterfrom
Open
Fix: Replace polyglot with NLTK alternatives to resolve HTTP 403 error#65jalajthanaki wants to merge 1 commit intomasterfrom
jalajthanaki wants to merge 1 commit intomasterfrom
Conversation
- Removed polyglot dependency due to server unavailability (HTTP 403) - Replaced polyglot_stem() with nltk_alternative_stem() using NLTK stemmers - Updated to Python 3 print syntax for compatibility - Added comparison of Porter, Lancaster, and Snowball stemmers - Maintains same functionality without external server dependencies Resolves issue where polyglot.cs.stonybrook.edu returns 403 Forbidden when attempting to download morpheme analyzer resources. Co-Authored-By: jalajthanaki@gmail.com <jalajthanaki@gmail.com>
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix: Replace polyglot with NLTK alternatives to resolve HTTP 403 error
Summary
This PR resolves the HTTP 403 error that occurs when running
ch3/3_1_wordsteam.pyby replacing the polyglot library dependency with NLTK-based alternatives. The polyglot download server (http://polyglot.cs.stonybrook.edu/~polyglot/) is permanently down or misconfigured, returning 403 Forbidden errors when attempting to download morpheme analyzer resources.Changes made:
polyglot.text.Wordpolyglot_stem()function withnltk_alternative_stem()using NLTK's Porter, Lancaster, and Snowball stemmersRoot cause: The polyglot library's server infrastructure is no longer accessible, causing runtime failures. This is a known issue affecting many users (see GitHub issues #204, #282, etc.).
Review & Testing Checklist for Human
python3 ch3/3_1_wordsteam.pypip install nltkNotes
Session URL: https://app.devin.ai/sessions/c36fa9675f274b57b1138a74ecbd8a7f
Requested by: jalajthanaki@gmail.com (@jalajthanaki)