Giter Site home page Giter Site logo

darshind / nlp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from priya-dwivedi/nlp

0.0 1.0 0.0 26.47 MB

๐Ÿค—nlp โ€“ Datasets and evaluation metrics for Natural Language Processing in NumPy, Pandas, PyTorch and TensorFlow

Home Page: https://huggingface.co/nlp

License: Apache License 2.0

Python 88.78% Jupyter Notebook 10.80% Makefile 0.02% Shell 0.39% Smalltalk 0.01%

nlp's Introduction



Build GitHub Documentation GitHub release Number of datasets

Datasets and evaluation metrics for natural language processing

Compatible with NumPy, Pandas, PyTorch and TensorFlow

๐ŸŽ“ Documentation: https://huggingface.co/nlp/

๐Ÿ•น Colab demo: https://colab.research.google.com/github/huggingface/nlp/blob/master/notebooks/Overview.ipynb

๐Ÿ”Ž Online dataset explorer: https://huggingface.co/nlp/viewer

๐Ÿค— nlp is a lightweight and extensible library to easily share and access datasets and evaluation metrics for Natural Language Processing (NLP).

nlp has many interesting features (beside easy sharing and accessing datasets/metrics):

  • Built-in interoperability with Numpy, Pandas, PyTorch and Tensorflow 2
  • Lightweight and fast with a transparent and pythonic API
  • Strive on large datasets: nlp naturally frees the user from RAM memory limitation, all datasets are memory-mapped on drive by default.
  • Smart caching: never wait for your data to process several times

nlp currently provides access to ~100 NLP datasets and ~10 evaluation metrics and is designed to let the community easily add and share new datasets and evaluation metrics. You can browse the full set of datasets with the live nlp viewer.

nlp originated from a fork of the awesome TensorFlow Datasets and the HuggingFace team want to deeply thank the TensorFlow Datasets team for building this amazing library. More details on the differences between nlp and tfds can be found in the section Main differences between nlp and tfds.

Contributors

Installation

nlp can be installed from PyPi and has to be installed in a virtual environment (venv or conda for instance)

pip install nlp

For more details on installation, check the installation page in the documentation: https://huggingface.co/nlp/installation.html

Using with PyTorch/TensorFlow/pandas

If you plan to use nlp with PyTorch (1.0+), TensorFlow (2.2+) or pandas, you should also install PyTorch, Tensorflow or pandas.

For more details on using the library with NumPy, pandas, PyTorch or Tensorflow, check the quick tour page in the documentation: https://huggingface.co/nlp/quicktour.html

Usage

Using nlp is made to be very simple to use, the main methods are:

  • nlp.list_datasets() to list the available datasets
  • nlp.load_dataset(dataset_name, **kwargs) to instantiate a dataset
  • nlp.list_metrics() to list the available metrics
  • nlp.load_metric(metric_name, **kwargs) to instantiate a metric

Here is a quick example:

import nlp

# Print all the available datasets
print(nlp.list_datasets(id_only=True))

# Load a dataset and print the first examples in the training set
squad_dataset = nlp.load_dataset('squad')
print(squad_dataset['train'][0])

# List all the available metrics
print(nlp.list_metrics(id_only=True))

# Load a metric
squad_metric = nlp.load_metric('squad')

For more details on using the library, check the quick tour page in the documentation: https://huggingface.co/nlp/quicktour.html and the specific pages on

Another introduction to nlp is the tutorial on Google Colab which is here: Open In Colab

Main differences between nlp and tfds

If you are familiar with the great Tensorflow Datasets, here are the main differences between nlp and tfds:

  • the scripts in nlp are not provided within the library but are queried, downloaded/cached and dynamically loaded upon request
  • nlp also provides evaluation metrics in a similar fashion to the datasets, i.e. as dynamically installed scripts with a unified API. This gives access to the pair of a benchmark dataset and a benchmark metric for instance for benchmarks like SQuAD or GLUE.
  • the backend serialization of nlp is based on Apache Arrow instead of TF Records and leverage python dataclasses for info and features with some diverging features (we mostly don't do encoding and store the raw data as much as possible in the backend serialization cache)
  • the user-facing dataset object of nlp is not a tf.data.Dataset but a built-in framework-agnostic dataset class with methods inspired by what we like in tf.data (like a map() method). It basically wraps a memory-mapped Arrow table cache.

Disclaimers

Similarly to Tensorflow Dataset, nlp is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset's license.

If you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!

If you're interested in learning more about responsible AI practices, including fairness, please see Google AI's Responsible AI Practices.

nlp's People

Contributors

lhoestq avatar patrickvonplaten avatar thomwolf avatar mariamabarham avatar jplu avatar ghomashudson avatar jarednielsen avatar julien-c avatar yjernite avatar bharatr21 avatar jxmorris12 avatar stefan-it avatar jbragg avatar patpizio avatar lewtun avatar idoh avatar tayciryahmed avatar srush avatar richarddwang avatar rachelker avatar ghazi-f avatar petrosstav avatar lucidrains avatar airklizz avatar lordtt13 avatar tevenlescao avatar theophileblard avatar vegarab avatar easonnie avatar yoavartzi avatar

Watchers

James Cloos 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.