KennethEnevoldsen / asent

Asent is a python library for performing efficient and transparent sentiment analysis using spaCy.

Home Page:https://kennethenevoldsen.github.io/asent/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`nlp` gets incorrectly overwritten in Getting Started

tomaarsen opened this issue · comments

Hello!

The documentation page Getting started has the following snippet:

import asent
import spacy

# load spacy pipeline
nlp = spacy.load("en_core_web_lg")

# add the rule-based sentiment model
nlp = nlp.add_pipe("asent_en_v1")

As you likely know, add_pipe returns the pipeline component, and thus nlp is overwritten to asent.component.Asent, causing the remaining code snippets to fail.

Which page or section is this issue related to?

https://kennethenevoldsen.github.io/asent/introduction.html, each of the 4 language tabs

  • Tom Aarsen

Hi @tomaarsen, sorry for the late response on this. You are completely correct. I will merge in the PR.