victorbarres / TCG_SALVIA

Template Construction Grammar: A Computational CxG for the Schema Architecture Language Vision InterAction cognitive model (SALVIA)
0 stars 1 forks source link

Need to account for semantic relations in the propagation of activation from SemWM to GraWM #21

Open victorbarres opened 8 years ago

victorbarres commented 8 years ago

Right now only node propagate their activation. This cannot be right. In general, I need to have a much more uniform treatment of relations and node in SemRep.

victorbarres commented 8 years ago

There are actually a few different issues here:

victorbarres commented 8 years ago

There is an undue asymmetry introduced between nodes and edges due to the NetworkX implementation of the graph algo. nodes are directly named after the related schema instance while edges are named as a 2-uples (inst_from, inst_to) when they should be named using the name of the associated schema instance for clarity.

victorbarres commented 8 years ago
victorbarres commented 8 years ago

Activation is now propagated also from relations in convey_sem_activation(). Haven't address the naming issue.