Skip to main content

Argument Mining Framework (AMF) is a comprehensive toolkit designed to streamline and unify various argument mining modules into a single platform.

Project description

AMF (Argument Mining Framework)

GitHub release (latest by date) PyPI License

AMF is a comprehensive toolkit designed to streamline and unify various argument mining modules into a single platform. By leveraging the Argument Interchange Format (AIF), AMF enables seamless communication between different components, including segmenters, turnators, argument relation identifiers, and argument scheme classifiers.


🚀 Features

  • Argument Segmentator: Identifies and segments arguments within argumentative text.
  • Turninator: Determines dialogue turns within conversations.
  • Argument Relation Identification: Identifies argument relationships between argument units.
  • Argument Scheme Classification: Classifies arguments based on predefined schemes.

📚 Resources

📖 Table of Contents

  1. Overview
  2. Installation
  3. Components
  4. Usage
  5. API Reference
  6. License

📝 Overview

AMF provides a modular approach to argument mining, integrating various components into a cohesive framework. The main features include:

  • Argument Segmentator: Identifies and segments arguments within argumentative text.
  • Turninator: Determines dialogue turns within conversations.
  • Argument Relation Identification: Identifies argument relationships between argument units.
  • Argument Scheme Classification: Classifies arguments based on predefined schemes.

🛠 Installation

Prerequisites & Setup

Ensure you have Python installed on your system. AMF is compatible with Python 3.6 and above.

Step 1: Create a Virtual Environment

It's recommended to create a virtual environment to manage dependencies:

python -m venv amf-env

Activate the virtual environment:

  • Windows:
    .\amf-env\Scripts\activate
    
  • macOS/Linux:
    source amf-env/bin/activate
    

Step 2: Install Dependencies

With the virtual environment activated, install AMF using pip:

pip install argument-mining-framework

This command will install the latest version of AMF along with its dependencies.

🧩 Components

Argument Segmentor

The Argument Segmentor component is responsible for detecting and segmenting arguments within text.

Read More

Turnator

The Turnator identifies and segments dialogue turns, facilitating the analysis of conversations and interactions within texts. This module is particularly useful for dialogue-based datasets.

Read More

Argument Relation Identifier

This component identifies and categorizes the relationships between argument units.

Read More

Argument Scheme Classifier

The Argument Scheme Classifier categorizes arguments based on predefined schemes, enabling structured argument analysis.

Read More

🧑‍💻 Usage

Predictor Example

Below is an example of how to use the AMF Predictor class to generate an argument map using an input provided based on AIF:

from argument_mining_framework.argument_relation.predictor import ArgumentRelationPredictor
import json

# Initialize Predictor
predictor = ArgumentRelationPredictor(model_type="dialogpt", variant="vanilla")

# Example XAIF structure
xaif = {
    "AIF": {
        "nodes": [
            {"nodeID": "1", "text": "THANK YOU", "type": "I", "timestamp": "2016-10-31 17:17:34"},
            {"nodeID": "2", "text": "COOPER : THANK YOU", "type": "L", "timestamp": "2016-11-10 18:34:23"},
            # Add more nodes as needed
        ],
        "edges": [
            {"edgeID": "1", "fromID": "1", "toID": "20", "formEdgeID": "None"},
            {"edgeID": "2", "fromID": "20", "toID": "3", "formEdgeID": "None"}
            # Add more edges as needed
        ],
        "locutions": [],
        "participants": []
    },
    "text": "people feel that they have been treated disrespectfully..."
}

# Convert XAIF structure to JSON string
xaif_json = json.dumps(xaif)

# Predict argument relations
result_map = predictor.argument_map(xaif_json)
print(result_map)

Full Workflow Example

In this section, we demonstrate how to use multiple components of the AMF framework in a complete argument mining workflow. This example shows how to process a text input through the Turninator, Segmenter, Propositionalizer, and Argument Relation Predictor components and visualize the output.

from argument_mining_framework.loader import Module

def process_pipeline(input_data):
    """Process input data through the entire pipeline."""
    # Initialize components
    turninator = load_amf_component('turninator')()
    segmenter = load_amf_component('segmenter')()
    propositionalizer = load_amf_component('propositionalizer')()    
    argument_relation = load_amf_component('argument_relation', "dialogpt", "vanila")
    visualiser = load_amf_component('visualiser')()

    # Step 1: Turninator
    turninator_output = turninator.get_turns(input_data, True)
    print(f'Turninator output: {turninator_output}')

    # Step 2: Segmenter
    segmenter_output = segmenter.get_segments(turninator_output)
    print(f'Segmenter output: {segmenter_output}')

    # Step 3: Propositionalizer
    propositionalizer_output = propositionalizer.get_propositions(segmenter_output)
    print(f'Propositionalizer output: {propositionalizer_output}')

    # Step 4: Argument Relation Prediction
    argument_map_output = argument_relation.get_argument_map(propositionalizer_output)
    print(f'Argument relation prediction output: {argument_map_output}')

    # Additional Analysis
    print("Get all claims:")
    print(argument_relation.get_all_claims(argument_map_output))
    print("===============================================")

    print("Get evidence for claim:")
    print(argument_relation.get_evidence_for_claim(
        "But this isn’t the time for vaccine nationalism", argument_map_output))
    print("===============================================")

    print("Visualise the argument map")
    visualiser.visualise(argument_map_output)

def main():
    # Sample input data
    input_data = (
        """Liam Halligan: Vaccines mark a major advance in human achievement since the """
        """enlightenment into the 19th Century and Britain’s been at the forefront of """
        """those achievements over the years and decades. But this isn’t the time for """
        """vaccine nationalism. I agree we should congratulate all the scientists, those """
        """in Belgium, the States, British scientists working in international teams here """
        """in the UK, with AstraZeneca.\n"""
        """Fiona Bruce: What about the logistical capabilities? They are obviously """
        """forefront now, now we’ve got a vaccine that’s been approved. It’s good -- I’m """
        """reassured that the British Army are going to be involved. They’re absolute world """
        """experts at rolling out things, complex logistic capabilities. This is probably """
        """going to be the biggest logistical exercise that our armed forces have undertaken """
        """since the Falklands War, which I’m old enough to remember, just about. So, as a """
        """neutral I’d like to see a lot of cross-party cooperation, and I’m encouraged with """
        """Sarah’s tone, everybody wants to see us getting on with it now. They don’t want """
        """to see competition on whose vaccine is best. There will be some instances where """
        """the Pfizer vaccine works better, another where you can’t have cold refrigeration, """
        """across the developing world as well, a cheaper vaccine like the AstraZeneca works """
        """better. Let’s keep our fingers crossed and hope we make a good job of this."""
    )

    process_pipeline(input_data)

if __name__ == "__main__":
    main()

⚙️ API Reference

For detailed API documentation, please refer to the official documentation or check out the source code on GitHub.

🤝 Contributing

We welcome contributions from the community. Please read our contributing guidelines to get started.

📝 License

The AMF is licensed under the GNU General Public License (GPL) v3.0, with additional custom terms.

Custom License Terms

  • Commercial Use: To use this software for commercial purposes, please contact us for licensing arrangements.
  • Non-commercial Use: You may use, modify, and distribute this software freely for non-commercial purposes, as long as you adhere to the GPL v3.0 terms.

For more detailed information about the GPL v3.0 license, visit the GPL License page.

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

argument_mining_framework-0.1.3.tar.gz (57.1 kB view details)

Uploaded Source

Built Distribution

argument_mining_framework-0.1.3-py3-none-any.whl (54.4 kB view details)

Uploaded Python 3

File details

Details for the file argument_mining_framework-0.1.3.tar.gz.

File metadata

File hashes

Hashes for argument_mining_framework-0.1.3.tar.gz
Algorithm Hash digest
SHA256 c59cf2cccaf7bf5cbcc63008890205d6c4654de18ab64f8892277a165998da13
MD5 65bceada8116a2be0aed84580f8d0b39
BLAKE2b-256 e5d1977ab91e0e393040ca7b31854d82ae040c9afb252b5791974a548e708d3e

See more details on using hashes here.

File details

Details for the file argument_mining_framework-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for argument_mining_framework-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 862ba87bdf653ba1e128594b3edfc6ab0dbb8efca2f0f0f067f5981df4150e6b
MD5 14a4dc25b79f17e37a9a313f9f1fc1d5
BLAKE2b-256 9997c681da66cde5c4212a7d4306428225efec98483107c134747bc7362a1382

See more details on using hashes here.

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