GithubHelp home page GithubHelp logo

dgarlor / words_n_fun Goto Github PK

View Code? Open in Web Editor NEW

This project forked from france-travail/words_n_fun

0.0 0.0 0.0 1.77 MB

Words'n fun : NLP preprocessing pipeline

License: GNU Affero General Public License v3.0

Python 92.61% Makefile 0.90% Jupyter Notebook 6.49%

words_n_fun's Introduction

pypi badge WNF tests 3.9 WNF tests 3.10 WNF linter License: AGPL v3 Generic badge

WORDS N FUN : Semantic analysis module

The purpose of this project is two folds:

  1. To normalize tools and how tos of semantic analysis projects
  2. To offer end to end pipelines to speed up the time to market of NLP services

Licence

This project is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE V3.0. Please check the LICENSE file.


Philosophy of this package

This package used to contain two main parts:

  1. Preprocessing : to speed up the application of numerous preprocessing routines to text data
  2. Modelling : to speed up the developpement of NLP machine learning models The later has been refactored into what is now called the NLP framework.

Preprocessing

One of the main goals of the project was to build a pipeline that could accomodate several data types:

  • str
  • list
  • np.array
  • pd.Series
  • pd.DataFrame
  • csv file (where the supplied data is the path to the actual file)

Whatever the supplied data type, it will kept along the pipeline, meaning that if a csv file is given, a new csv file will be created as the output. If the input is a pd.Series, another pd.Series of the same shape will be returned. This feature is controled by the utils.data_agnostic function.

Main scripts

utils.py

Contains utils functions and tools, mainly the data agnostic feature.

basic.py

Contains the main data transformation functions.

api.py

Contains the main entry point of the package controlling how one could create an end to end transformation pipeline.


Getting started

Requirements & setup

Coming soon: CI pipeline to push this package to pypi

  • Python 3.X (tests are ran on python 3.8)
  • Set up module dependencies : pip install -r requirements.txt
  • Set up the actual module : pip install -e words_n_fun or python setup.py develop
  • Download nltk stopwords data:
import nltk
nltk.download('stopwords')

How to use this module

A notebook tutorial is provided in the tutorial directory. Roughly speaking, her is what a basic use case should look like:

 # Module import
from words_n_fun.preprocessing import api

# Definition of the desired transformation pipeline
pipeline = ['remove_non_string', 'get_true_spaces', 'to_lower', 'remove_punct',
			'remove_numeric', 'remove_stopwords', 'lemmatize', 'remove_accents',
			'trim_string', 'remove_leading_and_ending_spaces']

#### example 1 : csv file ####

# Input file
input_file = "path/to/my/file.csv"
# Column containing the text to preprocess
col = "myText"
# Separator character
sep = ';'
# Instanciation of a preprocessor object
preprocessor = api.get_preprocessor(pipeline=pipeline, prefered_column=col, sep=sep)
# Process data
output_file = preprocessor.transform(input_file)


#### example 2 : list  ####
# Input data
input_list = ["First text to transform", "Second text to pocess"]
# Instanciation of a preprocessor object
preprocessor = api.get_preprocessor(pipeline=pipeline)
# Process data
output_list = preprocessor.transform(input_list)

Best Practices & guidelines

Contributors must try their best to follow these mainstream guidelines :

  1. Module management https://docs.python.org/3.9/tutorial/modules.html
  2. Python development https://github.com/google/styleguide/blob/gh-pages/pyguide.md, https://www.python.org/dev/peps/pep-0008/
  3. All the preprocessing functions must take pd.Series data as input. The built-in utils.data_agnostic decorator allows the user to send different types of data but the actual function carrying out these transformation should be built around pd.Series.

Numerous unit tests have been included in tests:

  • Please make sure to run them before trying to submit a merge request
  • New features must be shipped with their corresponding tests

words_n_fun's People

Contributors

lexabzh avatar gsolard avatar nicolastouzot avatar dgarlor avatar h4c5 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.