English 中文(简体)
Retrieve Information From Different Unstructured Text Files - Text Mining?
原标题:

I need some help in solving this problem.

We have a large amount of documents of a given specified domain. These documents are from differente sources and therefore their structure can be very different too. On the other side I have a table with some specified fields where some figures has to be filled from the extract of the documents.

For example:

Company x had a business volume of $20mio in 2010. $1,000,000 was the exchange of company y this year.

The result should something like this

|| Company | Year | Volume  
||  X      | 2010 |  200,000  
||  Y      | 2010 | 1000,000  

Can you point me please to some links or topics, where I can find further informations how to solve such a problem.

I know that there is no out of the box solution for this, but where should i start to look for.

Thanks in advance.

最佳回答

Ok. There are entire computer science labs devoted to that sort of stuff! Maybe start by looking a tool called RapidMiner

Also here are a couple of research paper titles I have as PDF s (which I don t have links for anymore sadly):

1. Automated Understanding of Financial Statements Using Neural Networks and Semantic Grammars

James Markovitch Dun & Bradstreet, Search Technologies April 1995 Email: jsmarkovitch@yahoo.com Copyright  1995 James Markovitch

2. An Integrated Approach for Automatic Semantic Structure Extraction in Document Images

Margherita Berardi, Michele Lapi, and Donato Malerba Dipartimento di Informatica – Università degli Studi di Bari via Orabona 4 - 70126 Bari {berardi,lapi,malerba}@di.uniba.it

I think the first one would be of greatest interest in terms of what you are after. Not quite sure how much value it will be though :)

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签