Articles
spacer

D-Lib Magazine
October 2002

Volume 8 Number 10

ISSN 1082-9873

Information Retrieval by Semantic Analysis and Visualization of the Concept Space of D-Lib® Magazine

 

Junliang Zhang
<[email protected]>
University of North Carolina, Chapel Hill [1]

Javed Mostafa
<[email protected]>
Himansu Tripathy
<[email protected]>
Laboratory for Applied Informatics Research
Indiana University

Red Line

spacer

Abstract

In this article we present a method for retrieving documents from a digital library through a visual interface based on automatically generated concepts. We used a vocabulary generation algorithm to generate a set of concepts for the digital library and a technique called the max-min distance technique to cluster them. Additionally, the concepts were visualized in a spring embedding graph layout to depict the semantic relationship among them. The resulting graph layout serves as an aid to users for retrieving documents. An online archive containing the contents of D-Lib Magazine from July 1995 to May 2002 was used to test the utility of an implemented retrieval and visualization system. We believe that the method developed and tested can be applied to many different domains to help users get a better understanding of online document collections and to minimize users' cognitive load during execution of search tasks.

Introduction

Over the past few years, the volume of information available through the World Wide Web has been expanding exponentially. Never has so much information been so readily available and shared among so many people. Unfortunately, the unstructured nature and huge volume of information accessible over networks have made it hard for users to sift through and find relevant information. To deal with this problem, information retrieval (IR) techniques have gained more intensive attention from both industrial and academic researchers. Numerous IR techniques have been developed to help deal with the information overload problem. These techniques concentrate on mathematical models and algorithms for retrieval. Popular IR models such as the Boolean model, the vector-space model, the probabilistic model and their variants are well established (Baeza-Yates, & Ribeiro-Neto, 1999).

From the user's perspective, however, it is still difficult to use current information retrieval systems. Users frequently have problems expressing their information needs and translating those needs into queries. This is partly due to the fact that information needs cannot be expressed appropriately in systems terms (Belkin, 1980). It is not unusual for users to input search terms that are different from the index terms information systems use. Various methods have been proposed to help users choose search terms and articulate queries. One widely used approach is to incorporate into the information system a thesaurus-like component that represents both the important concepts in a particular subject area and the semantic relationships among those concepts (Chen et al. 1993). Unfortunately, the development and use of thesauri is not without its own problems. The thesaurus employed in a specific information system has often been developed for a general subject area and needs significant enhancement to be tailored to the information system where it is to be used. This thesaurus development process, if done manually, is both time consuming and labor intensive. Usage of a thesaurus in searching is complex and may raise barriers for the user. For illustration purposes, let us consider two scenarios of thesaurus usage. In the first scenario the user inputs a search term and the thesaurus then displays a matching set of related terms. Without an overview of the thesaurus — and without the ability to see the matching terms in the context of other terms — it may be difficult to assess the quality of the related terms in order to select the correct term. In the second scenario the user browses the whole thesaurus, which is organized as in an alphabetically ordered list. The problem with this approach is that the list may be long, and neither does it show users the global semantic relationship among all the listed terms.

Nevertheless, because thesaurus use has shown to improve retrieval (Baeza-Yates & Ribeiro-Neto, 1999), for our method we integrate functions in the search interface that permit users to explore built-in search vocabularies to improve retrieval from digital libraries. Our method automatically generates the terms and their semantic relationships representing relevant topics covered in a digital library. We call these generated terms the "concepts", and the generated terms and their semantic relationships we call the "concept space". Additionally, we used a visualization technique to display the concept space and allow users to interact with this space. The automatically generated term set is considered to be more representative of subject area in a corpus than an "externally" imposed thesaurus, and our method has the potential of saving a significant amount of time and labor for those who have been manually creating thesauri as well. Information visualization is an emerging discipline and developed very quickly in the last decade. With growing volumes of documents and associated complexities, information visualization has become increasingly important. Researchers have found information visualization to be an effective way to use and understand information while minimizing a user's cognitive load (Card et al. 1991). Various user interface and visualization issues concerning information retrieval — such as query specification, overview of documents, and display of search results — are discussed by Hearst (1999).

Our work was based on an algorithmic approach of concept discovery and association (Mostafa et al. 1998). Concepts are discovered using an algorithm based on an automated thesaurus generation procedure. Subsequently, similarities among terms are computed using the cosine measure, and the associations among terms are established using a method known as max-min distance clustering. The concept space is then visualized in a spring embedding graph, which roughly shows the semantic relationships among concepts in a 2-D visual representation. The semantic space of the visualization is used as a medium for users to retrieve the desired documents.

In the remainder of this article, we present our algorithmic approach of concept generation and clustering, followed by description of the visualization technique and interactive interface. The paper ends with key conclusions and discussions on future work.

2. Concept Generation

The document set we used in our research came from an online archive of D-Lib Magazine (http://www.dlib.org/) from July 1995 to May 2002, which contains approximately 350 articles. From the archive, we extracted and parsed out the full text of articles for concept generation and clustering purposes. The metadata of the archive, including title, author, volume number, issue number, and URL, were also parsed out and were used for the display of search results.

After parsing the full texts, we generated concepts for the D-Lib articles using a vocabulary generation (VG) algorithm. The following steps were adopted to generate the concepts:

1. Elimination of stop words and word stemming. A stop word list was developed to remove those words that are too general to be useful such as "the", "an", "unless", "versus", etc. After the elimination of stop words, a stemming algorithm was used to identify the word stems for the remaining words (for use in step 2). The stemming algorithm applied was developed by Porter (1980). With an explicit list of suffixes, the algorithm strips the suffixes of words to leave a valid stem based on some heuristics. Since it does not use any stem dictionary, the algorithm is very fast. (The detailed description of this algorithm is available at <http://www.tartarus.org/~martin/PorterStemmer/def.txt>. It can also be downloaded free from <http://www.tartarus.org/~martin/PorterStemmer>.)

2. Unique word identification and weighting. After application of the stop word list and stemming, unique words were identified independent of case. Each unique word in the document set was then weighted per document using a tf*idf weighting formula. (See Appendix.) Even though other more sophisticated term weighting and refinement techniques are available in IR, it was found that the tf*idf approach is almost as effective as other more sophisticated ones (Lewis, 1992). Weighted words were ranked per document based on ascending weight order.

3. Term selection. Instead of extracting all the unique words, we only selected a subset identified as important concepts. Term selection was controlled by two parameters: R and D. The parameter R controls the rank of a particular term in documents. The parameter D controls the distribution of a particular term in the document set. The algorithm selected those terms as relevant concepts that were ranked in top R among all terms and present in at least D documents. Here, R and D values were determined empirically according to the needs of the application (retrieval in our case) and corpus size.

3. Semantic Analysis

Given the generated concepts, we explored the semantic relationship among these concepts, and further divided the concepts into clusters that were to be treated as the different sub-topics of the document set. The similarity between two terms was measured by the Salton & McGill cosine formula. (See Appendix.) Using that measure, a term by term similarity matrix was produced, where each cell represents the similarity value between two given terms.

Based on the similarity matrix, we used a technique called max-min Distance Identification (Tou & Gonzalez, 1974) to divide the concepts into several clusters to generate the sub-topics in the concept space. In the algorithm, concepts were initially divided into two sets of terms: centroids and centroid candidates. At the beginning, all terms were centroid candidates and the centroid set was empty. The first term in the set was then selected as the initial centroid. The second centroid was built by selecting the candidate with the maximum distance from the centroid set, which also must be at least larger than the value of controlled parameter, theta (between 0 and 1). The distance of the candidate from the centroid set is defined as the minimum distance of the candidate from all the members of the centroid set. The cluster building process was repeated until the maximum distance failed to exceed theta. For each remaining term, the nearest centroid was found and the term was grouped under that centroid as its cluster member. The theta permitted us to control the granularity of the cluster space. A high theta produces a smaller numbers of centroids than a low value.

A concept space was thus established representing a set of generated concepts for D-Lib Magazine content and the semantic relationships among those concepts. A spring embedding algorithm was then used to visually depict this concept space. The following three sections contain the description of our visualization algorithm and interface design.

4. Spring Embedding Algorithm

The spring embedding algorithm is also called the force-directed placement algorithm. The algorithm simulates a physical model in which the nodes are represented by rings and the edges connecting nodes are represented by springs. Initially, all the rings are randomly displayed. The forces exerted on the rings force them into an equilibrium configuration, where the sum of the forces on each ring is zero. (See Appendix.) The spring embedding algorithm is especially useful for showing the semantic similarity relationship among the nodes, since the natural length of the spring between two nodes can be determined by their similarity. The more similar two nodes are, the shorter the natural length of the spring is, and vice versa. After the spring graph reaches an equilibrium configuration, it nicely represents the semantic similarity relationships among the nodes.

5. Interface and Interaction

A Java applet [2] was developed to implement the spring layout algorithm and interactive functions. Figure 1 shows the visual interface for the D-Lib Magazine concept space, which contains three areas: visualization (on the left with the colored concept bubbles), search (at the bottom with the search box), and concept space manipulation functions (three tabbed panels on the right). The three tabbed panels are the control panel, the attributes panel, and the concept list panel.

image of visual interface

Figure 1. Visual interface of the concept space for the D-Lib Magazine online archive.

In Figure 1, the visualization area displays 69 nodes that represent the 69 generated concepts [3]. Similar concepts are close to each other in the physical space, for example, "copyright" is near "permission", and "journal" is near "citation". Nodes are labeled with the concept name by default, and moving the cursor over a node will pop up the tool tip showing both the corresponding concept name and number of the documents related to it. All the nodes are color-coded based on cluster analysis conducted during the semantic analysis process. Distinctive colors are used for different clusters of concepts. For example, the cluster in Figure 1 containing the terms: "protect", "permission", "law", "copyright", "culture" and "rights" is shown in blue and the cluster of "journal", "citation", and "sfx" is shown in green. Notice that some of the concepts from the same cluster that represent a strong similarity relationship are not necessarily close to each other visually. One of the reasons is that a particular node experiences spring force exerted by all the other nodes in the concept space, and the total force of other nodes may pull the node away from its cluster. Also, during the process of node movement, nodes can be trapped in a local minimum energy position.

Boolean searches can be done on the displayed concepts in the search area. Users can select as many concepts as they want from the visualization panel and conduct "AND" or "OR" searches by choosing the appropriate Boolean options. When the search button is pressed, another browser is invoked to present the search results, which includes article titles, authors, volumes and issue numbers. The articles on the results page are hyperlinked to the original articles in D-Lib Magazine. Users can also input their own keywords in the text field or can use both their own keywords and the displayed concepts as query keywords.

Image showing color-coding

Figure 2. Color-coding based on the frequency of documents associated with concepts.

The tab panels were designed to save screen space. The attributes panel allows the user to manipulate different visual attributes of nodes such as their shape, color, and label. Since color is considered superior to size, brightness, and shape in visually identifying items (Christ, 1975), we used color to encode nodes based on the cluster analysis discussed above. We also coded the nodes by color based on the number of documents in the archive related to each concept. For example nodes with fewer than 10% of related articles in the D-Lib Magazine archive are shown in white, and concepts that appear in more than 30% of the articles in the archive are shown as gray nodes. Hence, from the visualization in Figure 2 we can learn that concepts such as "disseminate", "interoperability", "repository" are more heavily discussed topics in D-Lib Magazine than the concepts appearing as white nodes. Based on this feature of the interface, users can get a quick impression of relative concept distribution or occurrence of concepts in the online collection.

The control panel (right part of Figure 3) provides several useful functions to help the user explore the semantic relationships in the concept space. By setting the value in the "set minimum similarity value" text field, the user can generate a filtered visualization of corresponding concepts, the similarity among which is larger than the value specified by the user. The visualization area of Figure 3 shows the snapshot of the interface with the 0.6 minimum similarity value, on which only concepts with relationships satisfying 0.6 or larger similarity are visualized. The radio button, labeled "line", is used to display edges between nodes. Each edge comes with an integer numbers above it indicating its natural length [4]. The "scramble" button restarts the moving of the nodes by randomly placing the nodes on the visual panel. The "Increase the gravity power" slider is used to proportionally increase or decrease the natural length among concepts, the actual effect of which is to spread out or shrink the graph.

The concept list panel shows all the concepts in an alphabetically ordered list (see the right part of Figure 2). When a concept in the list is selected, the corresponding concept displayed in the visualization panel is highlighted so that users can quickly locate the concept and view it in the context of other concepts within the concept space.

Image showing filtered concept space

Figure 3. Visualization of filtered concept space.

6. Limitations and an Alternative Interface

There are two limitations of the current visual interface. First, the initial visualization may appear crowded and complex when the number of nodes reaches 100 or higher. Second, there are some ambiguities in the way the concept clusters are displayed. Due to the way the spring embedding algorithm functions over a large term set, in certain instances, the concepts within the same cluster are not necessarily near each other visually. To solve these two problems, we developed an alternative two-layer hierarchical visualization [5]. In this implementation, the initial visualization only displays the clusters instead of showing all the nodes. The clusters are color coded as small square panels. The panels are labeled, and in each panel, cluster concepts appear as small dots (see Figure 4). A zoom-in operation is available, which enlarges a cluster panel and its corresponding concepts, and this feature helps the user see the details of individual clusters. The concepts on the enlarged cluster panel are visualized as a spring embedding graph representing the concept space of individual clusters (see Figure 5). The other clusters are maintained as smaller square panels around the spring graph to allow the user to quickly select alternative clusters. All the major interface functions mentioned previously (in Section 5) are supported in this alternative interface. The alternative interface can effectively handle up to 32 clusters and at least 400 concepts, and the visualization of clusters is clearer. However, when it comes to a small set of concepts, the previous interface may provide an advantage because the user can view all the relevant concepts associated with an online collection in one display. A usability test needs to be conducted to compare these two visualizations.

Alternative design showing concept space

Figure 4. Overview of the concept space in the alternative interface design.

Image showing zoom-in function

Figure 5. Zoom-in function applied on a specific concept cluster.

7. Conclusions and Future Work

We developed automatic techniques for term set extraction, association generation and visualization of concept spaces to aid retrieval from online document collections. Based on automatic concept discovery and clustering, the interface we developed visually depicts the generated concepts and their semantic relationships by using a spring embedding graph. The visualization provides the user a clear and attractive overview of what is available in a document collection. It shows the major sub-topics appearing in the document collection as concept clusters. The visual cues used in the visualization, such as color, label, and distance among nodes, are designed to be visually distinctive, and the design takes advantage of a human's powerful visual perception. The three tab panels also provide users with additional power to control and customize the interface based on different usage conditions. To support improved search, the interface also allows the user to conduct searches on the visualized collection based on terms specified by the user or concepts chosen directly from the visualization. We believe that this tool can be applied in many different domains to help users attain clearer understanding of a complete document collection and to minimize users' cognitive load during search formulation and execution.

We are planning further improvement of the visualization algorithm implemented in this study. For example, the spring embedded algorithm should be fine tuned to better reflect the semantic relationships among concepts. One refinement may be to prevent the nodes from being trapped at a local energy minimum position. Additionally, an evaluation study is being planned with two goals: 1) to compare the two alternative interface designs discussed in this article, and 2) to compare the effectiveness of the interfaces proposed in this article with the current search interface of D-Lib Magazine [6].

Acknowledgement

The authors wish to acknowledge Dr. Katy Börner for her valuable guidance and many constructive comments for this article. The research was partially funded by the NSF Digital Libraries Phase II grant IIS-9817572.

Notes

[1] The research reported in this article was completed while Junliang Zhang was at Indiana University.

[2] The JAVA applet is available at <http://ella.slis.indiana.edu/~junzhang/dlib/IV.html>.

[3] The number of generated concepts was controlled by the R and D parameters. Here, we selected R=10, D=4, restricting the extracted concepts to those ranked in top 10 and those that appears in at least 4 documents.

[4] The natural length is proportional to the similarity value between two concepts represented by nodes.

[5] A prototype of this interface has been developed and is available at <http://ella.slis.indiana.edu/~junzhang/dlib/IV.html>.

[6] The D-Lib search interface is available at <http://www.dlib.org/Architext/AT-dlib2query.html>.

References

[Baeza-Yates] Baeza-Yates, R. & Ribeiro-Neto, B. (Eds.). (1999). Modern Information Retrieval. MA: Addison-Wesley.

[Battista et al.] Battista, G.D., Eades, P., Tamassia, R. & Tollis, I.G. (1999). Graph drawing algorithms for the visualization of graphs. New Jersey : Prentice Hall.

[Belkin] Belkin, N.J. (1980). Anomalous states of knowledge as a basis for information retrieval. Canadian Journal of Information Science, 5, 133-143.

[Card] Card, S. K., Robertson, G. G., & Mackinlay, J. D. (1991). The information visualizer: An information workspace. Proceedings of CHI'91 (New Orleans, Louisiana).

[Chen et al.] Chen, H., Lynch, K.J., Basu, K., & Ng, T. D. (1993). Generating, integrating, and activating thesauri for concept-based document retrieval. IEEE Expert, 8(2), 25-34.

[Christ] Christ, R. (1975). Review and analysis of color-coding research for visual displays. Human Factors, 17, 542-570.

[Hearst] Hearst, M. (1999). User interfaces and visualization. In R. Baeza-Yates & B. Ribeiro-Neto (Eds.), Modern Information Retrieval (pp. 257-325). MA: Addison-Wesley.

[Lewis] Lewis, D. D. (1992). Text representation for intelligent text retrieval: A classification-oriented view. In P. S. Jacobs (Ed.), Text-based intelligent systems: Current research and practice in information extraction and retrieval (pp. 179-197). Hillsdale, NJ: Erlbaum.

[Mostafa et al.] Mostafa, J., Quiroga, L.M., & Palakal, M. (1998). Filtering medical documents using automated and human classification methods. Journal of the American Society of Information Science, 49, 1304-1318.

[Porter] Porter, M. F. (1980), An algorithm for suffix stripping. Program, 14(3), 130-137.

[Salton & McGill] Salton, G. & McGill, M. (1983). Introduction to Modern Information retrieval. New York: McGraw Hill.

[Tou & Gonzalez] Tou, J. & Gonzalez, R. (Eds.). (1974). Pattern recognition principles. MA: Addison-Wesley.

Appendix

1) The tf*idf weighting formula (Salton & Mcgill, 1983):

tf*idf weighting formula

Where formula character is the number of occurrences of term formula character in the document formula character, formula character is the total number of documents, and formula character is the number of documents in the training set that contain the given term formula character.

2) The cosine formula (Salton & Mcgill, 1983):

cosine formula

In the above, formula character and formula character are the formula characterth elements of term vectors formula characterand formula character respectively, representing the term weights in the formula characterth documents.

3. The spring embedding, or force-directed placement, algorithm (Battista et al. 1999):

The force on a ring formula character can be represented as:

spring embedding algorithm

In the above equation formula character is the force exerted on formula character by the spring between formula character and formula character. formula character can be any other ring except formula character itself. The force formula character follows Hooke's law, that is, formula character is proportional to the difference between the distance between formula character and formula character and the natural length of the spring. The computation equation is:

computation equation

formula character is the stiffness of the spring between formula character and formula character, which is empirically determined. formula character is the distance between formula character and formula character. formula character is the natural length of the spring between formula character and formula character.

 

Copyright © Junliang Zhang, Javed Mostafa and Himansu Tripathy
spacer
spacer

Top | Contents
Search | Author Index | Title Index | Back Issues
Previous Article | Conference Report
Home | E-mail the Editor

spacer
spacer

D-Lib Magazine Access Terms and Conditions

DOI: 10.1045/october2002-zhang