Hi L,
Hope all is well! Apologies on the belated (and slightly relevant)
response here... I've been trying to differentiate between senses in
contexts that seem (possibly) to require class/type links, modifying
the dict to do so... I'm working on parsing a limited corpus, so this
may actually make some sense to implement.
Take the following examples, for instance:
1. It is just white.
2. The color is just white.
3. The color is just the white that I have have been thinking of.
3. He was just white with rage.
4. He was just white.
5. He was just the kind of white I was thinking he would be.
In these contexts, to delineate between the cases when 'white' is an
adjective, and when it is a noun, I was thinking of making two 'be
verbs'.
Be1: connects a noun that represents a class to a noun that is a kind
of that class
Be2: connects a noun to its attribute
Also, I was thinking of creating the following kind of links (using
full words for clarity sake):
'Color-' 'Type of color+'
So:
Be1: ('Color-' & 'Type of color+') or ('Type of color-' & 'Color
+').
White.adj: ('Type of color-' or 'Type of color+)
He.pronoun - no 'Color-' or 'Color+', so it will never connect to Be1
It.pronoun - would have to have all the class and type connectors,
also disjuncts for not types. X/ Further resolution/ambiguity
handling necessary.
'Color' and synonyms, etc.: ('Color-' or 'Color+')
All of this is very nascent, and I'm just beginning to work on the
'kind of white' scenario, but at very first blush:
of1: ('Color-' & 'Type of color+')
Anyhow, a simple problem I am facing (and perhaps what I should have
just said in the first place) is that I can't get words with new links
to parse. The 'primer' online seems to indicate that one may simply
create new links at will. New links I have created show up when I '!!
word' in the shell, but, again... no parses. Is there something I am
missing?
Best!
- J
On Mar 26, 12:26 pm, Linas Vepstas <
linasveps...@gmail.com> wrote: