The good thing is that alfresco by default supports references (associations). So you can define many usefull relations between documents. For example:
Document->User => viewed-by
Document->User => searched-by
Document->User => downloaded-by
Document->Document => Related-to
Document->Document => Same-year
...
You can catch/implement most of the events using alfresco policies/behaviours (http://wiki.alfresco.com/wiki/Policy_Component). For example: when onCreate event occurs (document is created) do a search for documents with same author and link this document (add associations) to them.
Then you can implement a custom search (webscript maybe) that will return results and for each result also return it's references (associations).
The only thing that worries me is that some events would probably be only accessible via audit log which I have no idea how to capture programatically using java.
In the end you can then feed this stuff to your engine that will learn on that.