DerwenAI / kglab

Graph Data Science: an abstraction layer in Python for building knowledge graphs, integrated with popular graph libraries – atop Pandas, NetworkX, RAPIDS, RDFlib, pySHACL, PyVis, morph-kgc, pslpython, pyarrow, etc.
https://derwen.ai/docs/kgl/
MIT License
566 stars 64 forks source link

Make SubGraph more pythonic #266

Open Mec-iS opened 1 year ago

Mec-iS commented 1 year ago

I'm submitting a

Current Behaviour:

SubGraph uses transform and inverse_transform to provide Node-to-index and index-to-Node. This is quite non-standard as "trasformations" are usually functions applied to data structures, plus Python has its fluent interface to define this kind of behaviour

Expected Behaviour:

The __getitem__/__setitem__ protocol should be implemented for SubGraph so that will be possible to do:

# currently done by `inverse_transform`
subgraph = kglab.SubgraphMatrix(kg, sparql)
node = subgraph[i]

to return a node at i position. And:

# currently done by `transform`
subgraph = kglab.SubgraphMatrix(kg, sparql)
node_index = subgraph.index(node)

to return the index of a given node.

This will allow to use Subgraph as an iterator with minor additions.

This requires:

For example:

class test:
    some_list = []
    def __getitem__(self, key):
        return self.some_list[key]
    def __delitem__(self, key):
       del self.some_list[key]
    def index(self, node):
        return self.some_list.index(node)

This implies modifying all the existing examples and tests.

Mec-iS commented 1 year ago

cc: @ceteri @tomaarsen

tomaarsen commented 1 year ago

Are you aiming to remove transform and inverse_transform in favour of the Pythonic alternatives, or merely also implement the Pythonic alternatives? Obviously the former is a breaking change, while the latter is not. I'm all for this change, by the way.

Mec-iS commented 1 year ago

yes I would like to remove the current interface. If there are breaking changes, maybe the time for applying them is now, before it stabilises. Anyway we could have both for some time if needed.

Ankush-Chander commented 1 year ago

Hi @Mec-iS , Change sounds great. Will make usage more intuitive. I intend to take this up.

ceteri commented 1 year ago

Good points, all around!

It's fine to have a breaking change, especially now as we're going through major refactoring and will need to bump to a major release update afterwards.

I really like the more pythonic approach!

In terms of breaking changes, we have use cases for this in the tutorial notebooks, which might be reused for unit tests?

Longer-term perspectives (beyond this refactoring):

My main points about these long-term perspectives is to plan on having the indexing process become "pluggable", possibly with some outside framework to handle transform/inverse-transform lookups, and also the construction of some variants of the Subgraph class may be empirically driven.