-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathlearn-lang-diary-part-seven.lyx
3569 lines (2697 loc) · 73.5 KB
/
learn-lang-diary-part-seven.lyx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass article
\begin_preamble
\usepackage{url}
\usepackage{slashed}
\end_preamble
\use_default_options false
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding utf8
\fontencoding global
\font_roman "times" "default"
\font_sans "helvet" "default"
\font_typewriter "cmtt" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures false
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref true
\pdf_bookmarks true
\pdf_bookmarksnumbered false
\pdf_bookmarksopen false
\pdf_bookmarksopenlevel 1
\pdf_breaklinks true
\pdf_pdfborder true
\pdf_colorlinks true
\pdf_backref false
\pdf_pdfusetitle true
\papersize default
\use_geometry false
\use_package amsmath 2
\use_package amssymb 2
\use_package cancel 1
\use_package esint 0
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 0
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 0
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\listings_params "basicstyle={\ttfamily},basewidth={0.45em}"
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Title
Language Learning Diary - Part Seven
\end_layout
\begin_layout Date
March 2022 - present
\end_layout
\begin_layout Author
Linas Vepštas
\end_layout
\begin_layout Abstract
The language-learning effort involves research and software development
to implement the ideas concerning unsupervised learning of grammar, syntax
and semantics from corpora.
This document contains supplementary notes and a loosely-organized semi-chronol
ogical diary of results.
The notes here might not always makes sense; they are a short-hand for
my own benefit, rather than aimed at you, dear reader!
\end_layout
\begin_layout Section*
Introduction
\end_layout
\begin_layout Standard
Part Seven of the diary on the language-learning effort opens the door to
next steps.
The last round of experiments appear to be successful, and there do not
seem to be any nagging unresolved issues.
What comes next?
\end_layout
\begin_layout Section*
Summary Conclusions
\end_layout
\begin_layout Standard
A summary of what is found in this part of the diary:
\end_layout
\begin_layout Itemize
No summary yet.
\end_layout
\begin_layout Section*
The Possibilities
\end_layout
\begin_layout Standard
The last round of experiments appear to be successful, and there do not
seem to be any nagging unresolved issues.
What comes next? Here's a list of possibilities.
(The list below was written in March 2022 and got updates in Jan 2023.)
\end_layout
\begin_layout Itemize
\series bold
Accuracy Evaluation.
\series default
Compare dictionaries to the hand-crafted LG English dict.
This is a bit tedious and boring, since it seems unlikely to yield anything
interesting.
It seems inevitable, as its the kind of thing other people want to see.
The only benefit is that it is a way of perhaps characterizing the the
effects of different parameter choices.
In current runs, the
\begin_inset Quotes eld
\end_inset
noise
\begin_inset Quotes erd
\end_inset
parameter is the most highly explored: but what setting yields the best
results? Comparing to LG should reveal the answer.
Estimate a few weeks to a month of sustained effort.
\end_layout
\begin_deeper
\begin_layout Itemize
\emph on
Jan 2023 update
\emph default
: I am no longer convinced that the MPG dicts are learning
\begin_inset Quotes eld
\end_inset
conventional
\begin_inset Quotes erd
\end_inset
syntax, as defined in linguistics.
And that's OK.
There is some overlap, and perhaps something might be learned from a direct
comparison, but this now seems to be a lower priority.
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Accuracy-Guided Exploration.
\series default
An automated accuracy-comparison system, comparing two different dictionaries,
whatever their sources may be, could serve as a guide for exploration.
For example, comparing learned dictionaries to the hand-crafted LG dict
helps identify parameter regions that are effective.
By contrast, comparing two different auto-generated dictionaries can indicate
when two dicts diverge, and how sensitive they are to given parameter settings.
\end_layout
\begin_deeper
\begin_layout Itemize
\emph on
Jan 2023 update
\emph default
: This is grappling with the fact that the word-class merge code uses a
number of parameters (majority voting, in-group membership, etc.) and there's
a concern that we need to find
\begin_inset Quotes eld
\end_inset
the best parameters
\begin_inset Quotes erd
\end_inset
to give
\begin_inset Quotes eld
\end_inset
the most accurate results
\begin_inset Quotes erd
\end_inset
.
I'm no longer sure this is the correct mindset.
Think of these parameters as the analogous of ferromagnetic couplings in
an Ising model: It's not really the specific values that should matter,
but the overall landscape of
\begin_inset Quotes eld
\end_inset
how things work
\begin_inset Quotes erd
\end_inset
.
Tuning parameters is perhaps premature.
Of course, we want
\begin_inset Quotes eld
\end_inset
quality results
\begin_inset Quotes erd
\end_inset
, but this task might lead astray?
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Data Cleanup.
\series default
During pair-counting and/or MPG parsing, there is a bug that repeatedly
escapes backslashes, leading to a cascade of backslashes in the dataset.
This is just junk, and should be fixed.
Fixing it will surely improve quality.
It's tedious and boring.
Two ways to fix: (1) start from scratch (2) hunt out multiple backslashes,
and perform a custom merge, just like a word-class merge, but without forming
a word-class.
Option (2) is maybe easier and faster, but requires crafting custom code.
Maybe a few weeks to write this code, another few weeks to fully debug
it.
Option (1) is foundationally better but tedious and time consuming.
Estimate a month of keeping a watchful eye on the progress of the data
processing.
Yuck, either way.
\end_layout
\begin_deeper
\begin_layout Itemize
\emph on
Jan 2023 update
\emph default
: option 1 is the correct path and we are on it.
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Morphology.
\series default
We've ignored the morphological structure of English.
Morphology is crucial for most Indoeuropean and Arabic languages, and so
coverage could be vastly improved by putting together code for automatic
morphology detection/processing.
Diary Part One already sketched how this could be done, including a worked
example confirming that the idea will provide good results.
Implementing this in code, and then performing the experiments to confirm
it, is a relatively straight-forward affair.
Time-consuming, but well within reach.
Estimate six months of sustained effort; more time if interrupted.
A motivated grad student could do this, might take 12-18 months.
\end_layout
\begin_deeper
\begin_layout Itemize
\emph on
Jan 2023 update
\emph default
: Morphology is important; what I wrote above is wrong.
There is a more general problem of segmentation: finding word boundaries,
finding sentence boundaries, finding morphological boundaries.
This can be lumped into a more general boundary problem in vision and audio
processing.
Morphology is a
\begin_inset Quotes eld
\end_inset
special case
\begin_inset Quotes erd
\end_inset
of boundary finding.
So, no, it is not something that can be just
\begin_inset Quotes eld
\end_inset
knocked off by a grad student in short order
\begin_inset Quotes erd
\end_inset
; its a fundamental line of research.
This needs to become a high-priority activity.
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Reiterate classification.
\series default
Given the initial dictionaries, the corpus can be parsed with the LG parser,
using those dictionaries.
The result of such parsing is again a collection of disjuncts, much like
the ones from MPG parsing, but with different observation counts.
After collecting such counts, the classification step can be performed
again, presumably resulting in a somewhat different classification, perhaps
one that is more accurate?
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
This appears to be a technically easy step to take, as it just follows well-trod
ground, mostly.
A few weeks or a month of close supervision of the training runs.
\end_layout
\begin_deeper
\begin_layout Itemize
A variant of the above is to use the initial category assignment of the
word as a
\begin_inset Quotes eld
\end_inset
word-sense
\begin_inset Quotes erd
\end_inset
, and to tag the new disjunct with that word-sense.
One way to do this would be to treat the initial disjunct as a
\begin_inset Quotes eld
\end_inset
subscript
\begin_inset Quotes erd
\end_inset
, and so the same text-word, but with two different subscripts, is treated
as two distinct words.
Counts and further clustering continue to treat these as two different
words, until/unless the second round of clustering erases the distinction.
Handling this subscript-tagging requires new code; it is perhaps similar
to cross-sensory tagging, e.g.
if/when correlating with audio, video data.
\end_layout
\begin_layout Itemize
\emph on
Jan 2023 update
\emph default
: Yes, this is the correct path forwards.
Its the current target.
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Refactorization.
\series default
The disjuncts from above run provides a dataset that can be compared to
the MPG-derived classes, and be used to refactor those, in several different
ways.
Perhaps some Sections are never used; they could be dropped.
Perhaps a block-diagonal structure can be discovered.
That is, a word-disjunct pair, the disjunct having N connectors, can be
viewed s an N+1-rank tensor.
Perhaps the collection of these tensors has some obvious diagonal structure.
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
Refactoring in this way feels like it might be both theoretically challenging,
as well as presenting practical difficulties of discovering high-quality
algorithms and then debugging them.
This could easily take more than a few months.
Compared to just re-iterating, this seems more difficult, more error-prone,
and less robust.
\end_layout
\begin_layout Itemize
\series bold
Entities and References.
\series default
A word-vector, for a given word, can be viewed in two ways.
One way is to say that the disjunct describes the textual environment of
the word: it's N-gram or skip-gram.
Another way to think of it is that it captures the semantic embedding of
the word; its a list of all of the
\begin_inset Quotes eld
\end_inset
facts
\begin_inset Quotes erd
\end_inset
known about that word.
This is even more powerful, when the word is sense-tagged, i.e.
tagged with the initial word-category.
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
There are two types of entities: common entities and text-specific entities.
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
I want to write
\begin_inset Quotes eld
\end_inset
common nouns
\begin_inset Quotes erd
\end_inset
, but in fact, the entities may be specific events in time, i.e.
verbs.
It would be awkward to write
\begin_inset Quotes eld
\end_inset
common noun or common verb
\begin_inset Quotes erd
\end_inset
, so we'll just call them
\begin_inset Quotes eld
\end_inset
entities
\begin_inset Quotes erd
\end_inset
.
\end_layout
\end_inset
Common entities hold across all texts, such as
\begin_inset Quotes eld
\end_inset
cat
\begin_inset Quotes erd
\end_inset
,
\begin_inset Quotes eld
\end_inset
dog
\begin_inset Quotes erd
\end_inset
,
\begin_inset Quotes eld
\end_inset
run
\begin_inset Quotes erd
\end_inset
,
\begin_inset Quotes eld
\end_inset
jump
\begin_inset Quotes erd
\end_inset
.
Text-specific entities occur in one text but not another:
\begin_inset Quotes eld
\end_inset
John
\begin_inset Quotes erd
\end_inset
, which might be a different
\begin_inset Quotes eld
\end_inset
John
\begin_inset Quotes erd
\end_inset
in each text.
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
The most interesting/valuable task would be reference detection and reference
resolution.
How could this be done? A naive algo is to gather up a subset of a vector,
specific to one text, and look for high-MI transitive relations.
For example,
\begin_inset Quotes eld
\end_inset
John ran the engine.
It ran fine
\begin_inset Quotes erd
\end_inset
has the relations
\begin_inset Quotes eld
\end_inset
ran engine
\begin_inset Quotes erd
\end_inset
and
\begin_inset Quotes eld
\end_inset
it ran
\begin_inset Quotes erd
\end_inset
, which form a transitive relation between
\begin_inset Quotes eld
\end_inset
it
\begin_inset Quotes erd
\end_inset
and
\begin_inset Quotes eld
\end_inset
engine
\begin_inset Quotes erd
\end_inset
.
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
Of course, the pairing of
\begin_inset Quotes eld
\end_inset
John
\begin_inset Quotes erd
\end_inset
and
\begin_inset Quotes eld
\end_inset
it
\begin_inset Quotes erd
\end_inset
can also be deduced.
\end_layout
\end_inset
For this to work well, though, stems are needed, or, more properly speaking,
lexical functions.
\end_layout
\begin_layout Itemize
\series bold
Long-distance correlations, Time.
\series default
Entity detection can be simplified if one introduces a time dimension, and,
for each input stimulus (word), a decaying
\begin_inset Quotes eld
\end_inset
activation
\begin_inset Quotes erd
\end_inset
.
For example, if a word appears only in one text, but not another, and then
reappears in a third text, then perhaps this is a different, unrelated
entity? If some word has not been seen in a long time, then the new occurrences
can be assigned a distinct label.
Input processing proceeds as before, accumulating stats for the new occurrence.
Later, during the classification phase, it can be determined if the various
entities seem to be the same, of not.
\end_layout
\begin_layout Itemize
\series bold
Contexts; Neighborhoods.
\series default
There is no absolute contextual reference frame,
\begin_inset Foot
status collapsed
\begin_layout Plain Layout
See Graeme Hirst,
\begin_inset Quotes eld
\end_inset
Context as a Spurious Concept
\begin_inset Quotes eld
\end_inset
(1997) arXiv:cmp-lg/9712003v1.
\end_layout
\end_inset
but there is a general neighborhood of activations around sentences, paragraphs
, longer texts.
How does this neighborhood change, mutate, flow with the text? I think
we can look at this with the conventional MI and high-dimensional similarity
tools we've been developing...
The Hirst paper mentions Dryer and the idea of a sentence topic being a
\begin_inset Quotes eld
\end_inset
metalinguistic illusion
\begin_inset Quotes erd
\end_inset
.
This seems to be correct.
But we have the antidote: the
\begin_inset Quotes eld
\end_inset
sentence topic
\begin_inset Quotes erd
\end_inset
is smallest neighborhood or context; the
\begin_inset Quotes eld
\end_inset
center of gravity
\begin_inset Quotes erd
\end_inset
of the neighborhood.
This can be made concrete in terms of cosine distances on the hyperspheres.
I like this, because it seems to unify a
\begin_inset Quotes eld
\end_inset
surface meaning
\begin_inset Quotes erd
\end_inset
knowledge representation of a sentence with the post-modern reading of
the
\begin_inset Quotes eld
\end_inset
deep meaning
\begin_inset Quotes erd
\end_inset
.
(According to sources quoted by Hirst, this is something the Amhara, Somali
already employ as a matter of course?)
\end_layout
\begin_layout Itemize
\series bold
Scenes; Limnal Spaces; Identifying Transitions.
\series default
Humans conventionally organize knowledge into contextual groupings (how
else could it be?) In theatre, these are scenes; in books, chapters with
titles.
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
Scene detection can be hard-coded, in the processing input stage.
It might also be detectable, as a zone where there are many activation
changes (as measured in the previous bullet.) Inputs can be classified into
\begin_inset Quotes eld
\end_inset
eras
\begin_inset Quotes erd
\end_inset
in this way, with different phenomena in different eras presumably belonging
to different
\begin_inset Quotes eld
\end_inset
regimes
\begin_inset Quotes erd
\end_inset
.
\end_layout
\begin_layout Itemize
\series bold
Lexical Functions.
\series default
This seems eminently important, but how?
\end_layout
\begin_layout Itemize
\series bold
Synonymous Phrases.
\series default
Word-classes are already a form of weak synonymy; how can one form strong
synonymy? By applying more stringent membership requirements? Based on
current results, it appears that this would be enough, and that it would
work fairly well.
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
Synonymous phrases require the ability to compare collections of partially-assem
bled disjuncts, to see how the connectors compare.
This risks a combinatorial explosion.
It does require new code.
\end_layout
\begin_deeper
\begin_layout Itemize
It might be possible and worthwhile to simultaneously fish for synonyms
as well as grammar.
Synonyms are already going to behave the same way grammatically, whereas
part-of-speech groupings are much looser.
This would result in a
\begin_inset Quotes eld
\end_inset
multi-scale
\begin_inset Quotes erd
\end_inset
dictionary, where each part-of-speech grouping can be further subdivided
into synonym collections.
Implementing this requires altering the
\begin_inset Quotes eld
\end_inset
WordClass
\begin_inset Quotes erd
\end_inset
construction to be marked with a class-type: a loose part-of-speech; a
tighter synonym designation.
This requires rejiggering the code a little bit; seems like a great idea.
\end_layout
\end_deeper
\begin_layout Itemize
\series bold
Set Phrases, Institutional Phrases, Idioms.
\series default
These are groupings of words that occur more frequently together, than
apart.
How can these be identified? Why would we be interested in performing such
an identification? Is it a stepping stone to something better?
\end_layout
\begin_layout Itemize
\series bold
Antonyms.
\series default
A famous deficiency in neural net approaches is the inability to identify
antonyms.
The current code & theory is equally blind to antonyms.
Yet this is deeply, fundamentally important for understanding.
\end_layout
\begin_layout Itemize
\series bold
Sound, Pictures, Blueprints, Video
\series default
The approach to this is sketched elsewhere, already.
This is a huge, multi-year project.
Interesting, too.
Will it impress anyone in the short term? Probably not? Who has time to
do this? How can I nurture it along? At any rate, code should be altered
to at least allow multi-sensory data streams, which is not possible right
now.
\end_layout
\begin_layout Itemize
\series bold
Common-sense Reasoning.
\series default
This is the holy grail.
I had some insights into this.
How did that go, again? Something about large-scale correlations.
This is combinatorially-explosive territory, again.
How can it be tackled?
\end_layout
\begin_layout Itemize
\series bold
System Interaction.
\series default
Currently, only I can perceive results within the knowledge graph.
How can it be exposed so that it can be viewed by outsiders? Even shallow
perusal would help build interest and support.
\end_layout
\begin_layout Itemize
\series bold
Performance and scalability
\series default
.
Currently, the MI between word-pairs is computed in a bulk batch process.
Computing it on the fly, per request, will improve the usability of the
MST parsing code.
However, sometimes we need
\begin_inset Quotes eld
\end_inset
all
\begin_inset Quotes erd
\end_inset
of the MI's.
For example, the cosine distance in the high-dimensional spheres requires
each of the vector components to be computed.
Fine: this requires
\begin_inset Formula $2N$
\end_inset
MI's to be computed.
But if we are given a single word, and want to find the *nearest* other
word, we need to (potentially) look at all
\begin_inset Formula $N^{2}$
\end_inset
MI's.
This scales badly as
\begin_inset Formula $N$
\end_inset
increases.
One idea is to implement the page-rank algorithm, so that we can do the
computations locally and in a distributed fashion.
Another idea is to search for
\begin_inset Quotes eld
\end_inset
most-likely-nearest
\begin_inset Quotes erd
\end_inset
by computing only a portion of a dot-product, the part that
\begin_inset Quotes eld
\end_inset
should be the largest
\begin_inset Quotes erd
\end_inset
, and then exploring only from this base.
This requires more code-monkey work.
Ugh.
But its important, as otherwise, we've got scaling problems.
\end_layout
\begin_layout Subsection*
Favorites
\end_layout
\begin_layout Standard
Lets narrow down the above.
Favorite next tasks are:
\end_layout
\begin_layout Itemize
Reiterate classification.
Run it a second time.
This includes implementing word-sense tagging.
Shouldn't be too hard.
Interesting, and the generalization seems useful, anyway.
\end_layout
\begin_layout Itemize
Multi-scale clustering.
(aka synonyms) This requires developing multi-scale WordClass infrastructure.
Shouldn't be too hard.
Seems useful, anyway.
\end_layout
\begin_layout Itemize
Add support for multi-sensory data streams.
This is a refactorization of the current code, to allow it to operate on
more general data streams.
Might fit well with the multi-scale work, above.
\end_layout
\begin_layout Itemize
Add time-stamp tagging and decaying activation; start new entities when