Skip to main content

Semantic network implementation

Project description

semantic_network Package

SemanticNetwork

The class is designed for encoding graph structures using universal triplets:

entity_1 relation entity_2
entity_2 relation entity_3
  • Triplet parts are separated by spaces
  • First and third parts are objects
  • Second part is a directed relationship between objects

1. Creating and Extending the Graph:

from semantic_network import SemanticNetwork

script = """
    Circle hasPart Circle.radius
    Circle hasPart Circle.center
"""

sn = SemanticNetwork.from_script(script)

script_2 = """
    c1 fromProto Circle
    c1 hasPart c1.radius
    c2 fromProto Circle
    c2 hasPart c2.radius
    c2 hasPart c2.center
    c2.radius fromProto Circle.radius
"""

sn.append_script(script_2)

This creates a graph with objects and relationships:

print(sn)
----------------------------------------
|- c1
|- Circle
|- c1 fromProto Circle
|- c1.radius
|- c1 hasPart c1.radius
|- c2
|- c2 fromProto Circle
|- c2.radius
|- c2 hasPart c2.radius
|- c2.center
|- c2 hasPart c2.center
|- Circle.radius
|- c2.radius fromProto Circle.radius
----------------------------------------

2. Graph Search

Search queries are specified using a special query format. Elements starting with * are treated as variables, while other elements are treated as constants.

q = """
    *o1 hasPart *o2
    *o1 fromProto Circle
"""

for objs, rels in sn.query(q):
    print(objs, rels)

Returns dictionaries with found graph fragments:

{'o1': 'c2', 'Circle': 'Circle', 'o2': 'c2.radius'} {'fromProto': 'fromProto', 'hasPart': 'hasPart'}
{'o1': 'c2', 'Circle': 'Circle', 'o2': 'c2.center'} {'fromProto': 'fromProto', 'hasPart': 'hasPart'}
{'o1': 'c1', 'Circle': 'Circle', 'o2': 'c1.radius'} {'fromProto': 'fromProto', 'hasPart': 'hasPart'}

During search, the system also verifies that the query graph is connected and acyclic.

3. Utility Methods

# Extend the graph
sn.append_script(new_script)

# Print graph description (number of unique objects and relationships)
sn.describe()

# Create a copy
sn.copy()

# Serialization to dictionary and creation from dictionary
sn.to_dict()
sn = SemanticNetwork.from_dict(dict_data)

# Write to file with additional custom variables dictionary, and read from file
sm.dump(path, variables)
sn = SemanticNetwork.load(path)

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

semantic_network-0.2.0.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.

semantic_network-0.2.0-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file semantic_network-0.2.0.tar.gz.

File metadata

  • Download URL: semantic_network-0.2.0.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for semantic_network-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e95428bdd0f6b7a0d7bbc530e9f699796a2e7b75fc8df958b7b9b08b9218abfa
MD5 42a1cc67928d804af5fecb41f471d9fe
BLAKE2b-256 6f6f894f03c462feeb1b7d94d5e56a4f1d548448f47bc119a100c45595ac2e7f

See more details on using hashes here.

File details

Details for the file semantic_network-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for semantic_network-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5aa68cbc4f7e4dccf1932e9d9c2696de30d5a2ce16c6b291154761a0c19a4f7d
MD5 3815ed95b904c868150ad9e503d3a14f
BLAKE2b-256 1d3206125ef5cc2e75945debf5a86d127ca25d9308583b4241b430dcd8159eae

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