Tagged articles

POS tagging

5 articles · Page 1 of 1
Lisa Notes
Lisa Notes
Jun 27, 2026 · Artificial Intelligence

Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing

This guide introduces Stanford CoreNLP, a Python interface for fundamental NLP tasks such as tokenization, part‑of‑speech tagging, named‑entity recognition, constituency and dependency parsing, showing installation steps, model download links, and example outputs.

NLPNamed Entity RecognitionPOS tagging
0 likes · 4 min read
Getting Started with Stanford CoreNLP: Tokenization, POS, NER, and Parsing
Lisa Notes
Lisa Notes
Jun 26, 2026 · Artificial Intelligence

A Complete NLP Mind Map: Core Concepts and Techniques

This article provides a comprehensive overview of Natural Language Processing, detailing the two main branches—Natural Language Understanding and Generation—along with their sub-modules, typical tasks, implementation approaches, a step‑by‑step NLG pipeline, and a three‑layer analysis framework covering lexical, syntactic, and semantic processing.

Machine TranslationNLPNatural Language Generation
0 likes · 9 min read
A Complete NLP Mind Map: Core Concepts and Techniques
DataFunSummit
DataFunSummit
Sep 8, 2022 · Artificial Intelligence

GAST: Graph Adaptive Semantic Transfer Model for Cross‑Domain Sentiment Analysis

This article introduces GAST, a graph‑adaptive semantic transfer framework that combines POS‑based Transformers and hybrid graph attention to improve cross‑domain sentiment analysis, presents related work, details the model architecture, reports extensive experiments showing state‑of‑the‑art results, and discusses future directions.

GAST modelGraph Neural NetworksNLP
0 likes · 13 min read
GAST: Graph Adaptive Semantic Transfer Model for Cross‑Domain Sentiment Analysis
Python Programming Learning Circle
Python Programming Learning Circle
Dec 16, 2021 · Artificial Intelligence

Part-of-Speech Tagging with Jieba in Python

This article explains how to perform Chinese part-of-speech tagging using the jieba.posseg library in Python, including loading stop words, extracting article content via Newspaper3k, applying precise mode segmentation, filtering, and presenting results in a pandas DataFrame.

NLPPOS taggingPython
0 likes · 3 min read
Part-of-Speech Tagging with Jieba in Python