Skip to main content

Computing schematicity of autobiographical narratives

Project description

Measuring narrative schematicity

tests codecov

Methods from the paper "Computational Tools for Quantifying Schemas in Autobiographical Narratives".

Installation

pip install narsche

narsche depends on networkx (for network models), SpaCy (for tokenization), and wordfreq for automated topic identification. Additionally, one of SpaCy's models must be downloaded for SpaCy-based tokenization:

python -m spacy download en_core_web_sm

Usage

Loading and saving models

A text file of word vectors can be read using the read_vectors() function:

words, vectors = narsche.read_vectors('/path/to/vectors.txt')
vec_mod = narsche.VectorModel(words, vectors)

This produces a vector model. The text file must be formatted such that the first token (space-delimited) on a line is the word for which the remaining tokens are the vector components. This is how, for example, the GloVe embeddings are formatted.

A network model can be created by first downloading the ConceptNet assertions here. They can be read as a networkx.Graph object and used to create a network model:

graph = narsche.read_conceptnet('conceptnet-assertions-5.7.0.csv.gz', gz=True)
net_mod = narsche.NetworkModel(graph)

Models can be saved using the save() method and loaded using the load() class method:

net_mod.save('network.mod')
net_mod = narsche.NetworkModel.load('network.mod')

vec_mod.save('vector.mod')
vec_mod = narsche.VectorModel.load('vector.mod')

These are just wrappers around pickle.[load/dump]. Any extension can be used.

Tokenizing narratives

Before schematicity can be computed, narratives must be tokenized, i.e., converted to a list of tokens. For this, there is a Tokenizer() class that relies on SpaCy:

txt = 'I sat on the sofa in my living room with a lamp' # Example text
tokenizer = narsche.Tokenizer('en_core_web_sm') # Initialize tokenizer
words = tokenizer.tokenize(txt) # Tokenize words
words = vec_mod.keep_known(words) # Use only those words that are in the model

Computing schematicity

Given a model and a set of tokens (and possibly a topic word), schematicity can be computed using the schematicity() function:

topic = narsche.identify_topic(words) # Identify the topic
# Compute schematicity
narsche.schematicity(
	words=words,
	model=vec_mod,
	method='on-topic-ppn', # or topic-relatedness, pairwise-relatedness, or component-size
	topic=topic)

See the documentation of the schematicity() function for kewords required by other methods.

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

narsche-0.3.3.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

narsche-0.3.3-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file narsche-0.3.3.tar.gz.

File metadata

  • Download URL: narsche-0.3.3.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for narsche-0.3.3.tar.gz
Algorithm Hash digest
SHA256 a7b89c15750a44829626134df6a6b379b76f716176a935efce72f627725d0e83
MD5 8180d6841d4321059024e03a55e5f0e9
BLAKE2b-256 9aa9675fcabde6fe702f3e7d65b17a26d1f86e458373a2c82a740f3b47650fbe

See more details on using hashes here.

File details

Details for the file narsche-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: narsche-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for narsche-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1c9ca042168ccc2fe3a86f3af1d8f514baff0061faf846ef0c5de47156d8c356
MD5 a67cb1910eada7c236c580443ad7d43a
BLAKE2b-256 5612d30d3e8ff0629ac9bb7fc54a2f2651895467bb421e252d6746e818fbe4db

See more details on using hashes here.

Supported by

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