IBM Open Sources UIMA 23
psykocrime writes "Line56 is reporting that IBM has open-sourced core components of their UIMA project. UIMA is (or was) an IBM Research Project
for managing "unstructured information" such as free-text. IBM describes UIMA as: 'an open, industrial-strength, scalable and extensible platform for creating, integrating and deploying unstructured information management solutions from combinations of semantic analysis and search components. [...] and makes the core Java framework available as open source software to provide a common foundation for industry and academia to collaborate and accelerate the world-wide development of technologies critical for discovering the vital knowledge present in the fastest growing sources of information today.' The newly opened source is available at SourceForge."
Translation... (Score:2, Interesting)
FTFA: UIMA is about text analytics, which encompasses functions like search and pattern analysis. "It's able to create sophisticated solutions that extract insight from a large amount of unstructured data stored in computers," says Dr. Nelson Mattos, IBM VP of Information and Interaction. "The goal i
Re:Translation... (Score:3, Interesting)
And so can China. Woohoo...
Re:Translation... (Score:3, Interesting)
Sign me up, man! (Score:3, Insightful)
If you have to rely on buzz words and jargon when communicating to the popular press, then you are saying nothing, or you don't understand what the fuck you're talking about.
Re:Sign me up, man! (Score:3, Interesting)
Re:Sign me up, man! (Score:2)
Did it occur to you that it might be you, rather than the IBM researcher, who doesn't know what the IBM researcher is talking about? Pardon my being blunt, but what he was saying wasn't buzz word driven at all, and when you deal with topics this far removed from natural language, it's either communication in jargon or no communication
Translating the translation... (Score:2)
Or Google.
Re:Translating the translation... (Score:2)
I admit it. (Score:4, Insightful)
Re:I admit it. (Score:3, Informative)
Re:I admit it. (Score:2)
From the IBM UIMA SDK (Score:2, Interesting)
What is the UIMA framework? (Score:5, Informative)
I am a UIMA user within IBM (but not an official spokesperson), so I can take an unofficial stab at answering that question. The UIMA framework (now on Sourceforge) is primarily a Software Developers Kit. It is not really intended to "do" anything out of the box; it does come with a handful of illustrative example applications but does not really provide direct end-user functionality (any more than a Java SDK does). Instead it provides a variety of interfaces and framework code to enable programmers to build applications that analyze unstructured information such as text (or images, audio, video, etc.).
Some key capabilities provided by the UIMA framework include:
1) A data structure, known as the Common Analysis Structure (CAS), that holds the results of analysis. It is essentially a big bag structure that has a lot convenient methods for using that bag to hold a "subject of analysis" (e.g., a text string) and information about that subject of analysis (e.g., annotations over character spans in a text string). Also included are methods for serializing and deserializing the CAS into an XML format.
2) A set of interfaces for components that manipulate CAS's. For example, an "Annotator" takes a CAS that contains an existing subject of analysis and adds more information about that subject of analysis into that CAS. Developers are expected to implement those interfaces to build analysis capabilities.
3) An XML format for providing metadata about those components and aggregates of those components.
4) A "collection processing manager" that takes a metadata specification of an aggregate component and executes those components, either locally or remotely, via SOAP or some other protocol.
So why use UIMA? If you are building some specialized analysis component, the UIMA framework provides common structures and interfaces for building and deploying these components. If you are building an end user application, basing the application on the UIMA framework allows you to draw on whatever "best of breed" UIMA components are available for providing the various elements of functionality that you want.
The range of applications that can potentially benefit from a combination of analysis components is virtually limitless. The parent post mentions a few (e.g., semantic grep, natural-language question answering). There are many others such as machine translation, summarization, etc. Many of these applications can benefit from common primitive subcomponents such as being able to identify the subject and verb of an English sentence. A common framework like UIMA can help developers to build, share, and reuse these components.
Re:I admit it. (Score:1)
Their 340 page user manual [ibm.com] (just under 4MB) is actually quite readable. Chapter 2 gives you a conceptual summary, and the rest of it is focused on actually using it.
What is it in a nutshell? Unstructured data -> UIMA -> Structured Data. It's a means of converting unstructured, or more likely semi-structured data into what appears to be relational tables (with indices).
UIMA is really a collection of analysis engines, which you can write, and tends to specialize in some kind of knowledge extraction,
Translation for common people: (Score:2)
Is it good? Is it bad? Who knows.
Re:Translation for common people: (Score:5, Insightful)
Re:Translation for common people: (Score:2)
Re:Translation for common people: (Score:2)
Re:Translation for common people: (Score:2, Interesting)
If you stop and think about it for a moment, this would be stupid for IBM to do, and it's obviously not what they are doing.
Paradoxically, it costs money to open source something (at least for a big company like IBM). Getting the package ready for the light of day, getting all the approvals and sign-offs, and staffing the resource to keep working on it, all take money.
IBM wouldn't do that for something it doesn't consider valuable in some way
When will they... (Score:1, Offtopic)
Re:When will they... (Score:1)
Interesting thought, eh?
This should have been in the summary (Score:2)
http://slashdot.org/article.pl?sid=05/08/08/23372
Not exactly a dupe, since at the time of that story, the code wasn't yet available as open source. So consider this a follow-up to the above story.