# chn_text_norm **Repository Path**: kevinzhwl/chn_text_norm ## Basic Information - **Project Name**: chn_text_norm - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-23 - **Last Updated**: 2023-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # This account is no longer in use, see [Atomicoo](https://github.com/atomicoo) for my latest works. # Chn Text Norm this is a repository for chinese text normalization (no longer maintained). ## Quick Start ## ### Git Clone Repo ### git clone this repo to the root directory of your project which need to use it. cd /path/to/proj git clone https://github.com/Joee1995/chn-text-norm.git after that, your doc tree should be: ``` proj # root of your project |--- chn_text_norm # this chn-text-norm tool |--- text.py |--- ... |--- text_normalize.py # your text normalization code |--- ... ``` ### How to Use ? ### # text_normalize.py from chn_text_norm.text import * raw_text = 'your raw text' text = Text(raw_text=raw_text).normalize()