Skip to main content

Identify natural language propositions in a written argument.

Project description

Syllogio Identify Propositions

Identify natural language propositions in a written argument.

Installation

  1. Install pip package.

    pip install syllogio-identifyPropositions
    
  2. Install spacy module (Tested with "en_core_web_sm").

    python -m spacy download <model name>
    
  3. OPTIONAL: Add model name to configuration.

    ; setup.cfg
    
    [syllogio-identifyPropositions]
    model_name = <model name> ; defaults to "en_core_web_sm"
    

Usage

Command line

Usage:

Usage: idpr [options] INPUT

Options:
  -m <model> --model <model>    Specify a spaCy model. Defaults to "en_core_web_sm".
  -V --version                  Print version and exit.
  -h --help                     Show this message.

Example:

> idpr "All men are mortal. Socrates is a man. Therefore, Socrates is mortal."
[
  "All men are mortal",
  "Socrates is a man",
  "Therefore, Socrates is mortal"
]

Programmatic

from identifyPropositions import identify

propositions = identify("All men are mortal. Socrates is a man. Therefore, Socrates is mortal.")

# propositions will be:
# [
#   "All men are mortal",
#   "Socrates is a man",
#   "Therefore, Socrates is mortal"
# ]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

syllogio-identifyPropositions-1.1.0.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page