You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by to...@apache.org on 2012/05/24 23:33:25 UTC

svn commit: r1342437 - in /uima/sandbox/trunk/uima-basp/src: main/java/org/apache/uima/bsp/ test/java/org/apache/uima/bsp/ test/resources/data/ test/resources/data/dev/

Author: tommaso
Date: Thu May 24 21:33:24 2012
New Revision: 1342437

URL: http://svn.apache.org/viewvc?rev=1342437&view=rev
Log:
[UIMA-2410] - adding UIMA examples data files, filtering by .txt extension, removed old test data files

Added:
    uima/sandbox/trunk/uima-basp/src/test/resources/data/Apache_UIMA.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/IBM_LifeSciences.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/New_IBM_Fellows.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/SeminarChallengesInSpeechRecognition.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/TrainableInformationExtractionSystems.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMASummerSchool2003.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMA_Seminars.txt
    uima/sandbox/trunk/uima-basp/src/test/resources/data/WatsonConferenceRooms.txt
Removed:
    uima/sandbox/trunk/uima-basp/src/test/resources/data/dev/
Modified:
    uima/sandbox/trunk/uima-basp/src/main/java/org/apache/uima/bsp/AEProcessingBSPJob.java
    uima/sandbox/trunk/uima-basp/src/test/java/org/apache/uima/bsp/BSPAnalysisEngineExecutorTest.java

Modified: uima/sandbox/trunk/uima-basp/src/main/java/org/apache/uima/bsp/AEProcessingBSPJob.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/main/java/org/apache/uima/bsp/AEProcessingBSPJob.java?rev=1342437&r1=1342436&r2=1342437&view=diff
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/main/java/org/apache/uima/bsp/AEProcessingBSPJob.java (original)
+++ uima/sandbox/trunk/uima-basp/src/main/java/org/apache/uima/bsp/AEProcessingBSPJob.java Thu May 24 21:33:24 2012
@@ -17,10 +17,7 @@ import org.apache.uima.util.InvalidXMLEx
 import org.apache.uima.util.ProcessTrace;
 import org.apache.uima.util.XMLInputSource;
 
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.FileReader;
-import java.io.IOException;
+import java.io.*;
 import java.util.HashMap;
 import java.util.Random;
 import java.util.UUID;
@@ -66,7 +63,12 @@ public class AEProcessingBSPJob<KI, VI, 
       if (isMaster(bspPeer)) {
         String dirPath = configuration.get("collection.path");
         int i = 0;
-        for (File f : new File(dirPath).listFiles()) {
+        for (File f : new File(dirPath).listFiles(new FileFilter() {
+            @Override
+            public boolean accept(File file) {
+              return file.getAbsolutePath().endsWith(".txt");
+            }
+          })) {
           FileReader fileReader = new FileReader(f);
           ByteMessage byteMessage = new ByteMessage(UUID.randomUUID().toString().getBytes("UTF-8"), fileReader.toString().getBytes("UTF-8"));
           fileReader.close();

Modified: uima/sandbox/trunk/uima-basp/src/test/java/org/apache/uima/bsp/BSPAnalysisEngineExecutorTest.java
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/java/org/apache/uima/bsp/BSPAnalysisEngineExecutorTest.java?rev=1342437&r1=1342436&r2=1342437&view=diff
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/java/org/apache/uima/bsp/BSPAnalysisEngineExecutorTest.java (original)
+++ uima/sandbox/trunk/uima-basp/src/test/java/org/apache/uima/bsp/BSPAnalysisEngineExecutorTest.java Thu May 24 21:33:24 2012
@@ -10,7 +10,7 @@ public class BSPAnalysisEngineExecutorTe
   @Test
   public void simpleTest() throws Exception {
     BSPAnalysisEngineExecutor bspAnalysisEngineExecutor = new BSPAnalysisEngineExecutor();
-    bspAnalysisEngineExecutor.executeAE("src/test/resources/uima/SampleAE.xml", "src/test/resources/data/dev", "target/analysis-results.txt", 3);
+    bspAnalysisEngineExecutor.executeAE("src/test/resources/uima/SampleAE.xml", "src/test/resources/data/", "target/analysis-results.txt", 3);
   }
 
 }

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/Apache_UIMA.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/Apache_UIMA.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/Apache_UIMA.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/Apache_UIMA.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,38 @@
+Welcome to Apache UIMA (Unstructured Information Management Architecture), a incubator project of the  Apache Software Foundation (ASF). 
+Our goal is a thriving community of users and developers of UIMA frameworks, supporting components for analysing unstructured content such as text, audio and video.
+
+What is UIMA?
+
+Unstructured Information Management applications are software systems that analyze large volumes of unstructured information in order to discover knowledge that is relevant to an end user. 
+UIMA is a framework and SDK for developing such applications. An example UIM application might ingest plain text and identify entities, such as persons, places, organizations; or relations, such as works-for or located-at. 
+UIMA enables such an application to be decomposed into components, for example "language identification" -> "language specific segmentation" -> "sentence boundary detection" -> "entity detection (person/place names etc.)". 
+Each component must implement interfaces defined by the framework and must provide self-describing metadata via XML descriptor files. The framework manages these components and the data flow between them. Components are written in Java or C++; the data that flows between components is designed for efficient mapping between these languages. 
+UIMA additionally provides capabilities to wrap components as network services, and can scale to very large volumes by replicating processing pipelines over a cluster of networked nodes.
+
+Apache UIMA is an Apache-licensed open source implementation of the UIMA specification (that specification is, in turn, being developed concurrently by a technical committee within OASIS , a standards organization). 
+We invite and encourage you to participate in both the implementation and specification efforts.
+
+UIMA is a component framework for analysing unstructured content such as text, audio and video. 
+It comprises an SDK and tooling for composing and running analytic components written in Java and C++, with some support for Perl, Python and TCL. 
+
+
+Apache UIMA mailing lists:
+
+Users - uima-user@incubator.apache.org
+Developers - uima-dev@incubator.apache.org
+Commits - uima-commits@incubator.apache.org
+
+
+Apache UIMA project committers:
+
+Michael Baessler
+Edward Epstein
+Thilo Goetz
+Adam Lally
+Marshall Schor
+
+
+Apache UIMA project Mentors:
+
+Ken Coar (ASF member and Vice President)
+Sam Ruby (ASF member)
\ No newline at end of file

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/IBM_LifeSciences.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/IBM_LifeSciences.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/IBM_LifeSciences.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/IBM_LifeSciences.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,13 @@
+"Life sciences is one of the emerging markets at the heart of IBM's growth strategy," said John M. Thompson, IBM senior vice president & group executive, Software. "This investment is the first of a number of steps we will be taking to advance IBM's life sciences initiatives." In his role as newly appointed IBM Corporation vice chairman, effective September 1, Mr. Thompson will be responsible for integrating and accelerating IBM's efforts to exploit life sciences and other emerging growth areas.
+
+IBM estimates the market for IT solutions for life sciences will skyrocket from $3.5 billion today to more than $9 billion by 2003. Driving demand is the explosive growth in genomic, proteomic and pharmaceutical research. For example, the Human Genome Database is approximately three terabytes of data, or the equivalent of 150 million pages of information. The volume of life sciences data is doubling every six months. 
+
+"All of this genetic data is worthless without the information technology that can help scientists manage and analyze it to unlock the pathways that will lead to new cures for many of today's diseases," said Dr. Caroline Kovac, vice president of IBM's new Life Sciences unit. "IBM can help speed this process by enabling more efficient interpretation of data and sharing of knowledge. The potential for change based on innovation in life sciences is bigger than the change caused by the digital circuit."
+
+Among the life sciences initiatives already underway at IBM are:
+- DiscoveryLink* -- For the first time, researchers using this combination of innovative middleware and integration services can join together information from many sources to solve complex medical research problems. DiscoveryLink creates a "virtual database" that permits data to be accessed and extracted from multiple data sources used in research and development projects. This IT solution can dramatically improve product cycle time and lower development costs for pharmaceutical, biotechnology and agri-science companies. 
+
+- Blue Gene* - IBM is building a supercomputer 100 times faster than any available today designed to advance understanding of the mechanisms behind protein folding through large-scale biomolecular simulation. In December, IBM committed $100 million to this five-year research project to advance the state-of-the-art in supercomputing for biological applications.
+- Bio-Dictionary* -- IBM has compiled a protein dictionary containing some 30 million protein "words" designed to accelerate the understanding of protein shapes and functions.Bio-Dictionaries for selected genomes, as well as bioinformatics algorithms for pattern discovery and other relevant applications, are available to scientists and researchers for noncommercial use through a website dedicated to life sciences content at http://www.research.ibm.com/compsci/compbio/.
+
+* Indicates trademark or registered trademark of IBM Corporation.
\ No newline at end of file

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/New_IBM_Fellows.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/New_IBM_Fellows.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/New_IBM_Fellows.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/New_IBM_Fellows.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,22 @@
+IBM today elevated five employees to the title of IBM Fellow -- its most prestigious technical honor. The company also presented more than $2.8 million in cash awards to employees whose technical innovation have yielded exceptional value to the company and its customers.
+
+IBM conferred the accolades and awards at its 2003 Corporate Technical Recognition Event (CTRE) in Scottsdale, Ariz. CTRE is a 40-year tradition at IBM, established to recognize exceptional technical employees and reward them for extraordinary achievements and contributions to the company's technology leadership.
+
+"Our technical employees are among the best and brightest innovators in the world. They share a passion for excellence that defines their work and permeates the products and services IBM delivers to its customers," said Nick Donofrio, senior vice president, technology and manufacturing for IBM. "CTRE provides the means for us to honor those who have distinguished themselves as exceptional leaders among their peers."
+
+Among the special honorees at the 2003 CTRE are five employees who earned the coveted distinction of IBM Fellow:
+
+
+- Grady Booch, chief scientist of Rational Software, IBM Software Group. Recognized internationally for his innovative work on software architecture, modeling, and software engineering process. Mr. Booch is one of the original authors of the Unified Modeling Language (UML), the industry-standard language of blueprints for software-intensive systems.
+
+- Dr. Donald Chamberlin, researcher, IBM Almaden Research Center. An expert in relational database languages, Dr. Chamberlin is co- inventor of SQL, the language that energized the relational database market. He has also influenced the creation of XQuery, one of a new generation of database query languages covering structured, semi-structured and unstructured data.
+
+- Dr. George Galambos, chief technology officer, IBM Global Services (IGS) in Canada; the first Fellow from Canada. Dr. Galambos specializes in high-performance, high availability designs, operational effectiveness, and risk assessment/mitigation, focusing on systems engineering and architecture reuse that enhances efficiency and stability. He is a principal driver of and contributor to the widely acclaimed "Patterns for e-business" and the Enterprise Solution Structure Reference Architectures, widely used by IGS in customer engagements.
+
+- Rod Smith, vice president of Internet emerging technologies, IBM Software Group. A leader in the areas of object-oriented programming, visual development tools, Java, XML, and Web Services. Rod also was the chief technical strategist for focusing the Java platform for use in middleware solutions, in particular initiating contributions to the development of the J2EE.
+
+- Charles Webb, eServer processor design, IBM Systems Group. Charles Webb has led the reinvention of IBM's eServer zSeries microprocessor designs and roadmap, including the z900 server, where he provided the bridge among architecture, hardware, compilers and system software, defining major portions of the 64- bit architecture and beyond.
+
+
+The title of IBM Fellow is the company's most preeminent technical distinction and is granted in recognition of outstanding and sustained technical achievements in engineering, programming, science and technology. Only 175 individuals have earned this designation in the company's history and, including the newly named Fellows, 56 are active employees. IBM Fellows are encouraged to further enhance their potential for creative achievements and typically work on special projects or research initiatives that lead the company in exciting new directions.
+

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/SeminarChallengesInSpeechRecognition.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/SeminarChallengesInSpeechRecognition.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/SeminarChallengesInSpeechRecognition.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/SeminarChallengesInSpeechRecognition.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,34 @@
+UIT Seminar: Challenges in Speech Recognition
+  August 8, 2003   10:30 AM - 11:30 AM 
+  Lawrence Rabiner , Associate Director CAIP, Rutgers 
+  University, Professor Univ. of Santa Barbara   
+  Yorktown 20-043
+  Availability: Open 
+
+  Speech recognition has matured to the point where it
+  is now being widely applied in a range of applications
+  including desktop dictation, cell phone name dialing,
+  agent technology, automated operator services,
+  telematics, call center automation and help desks.
+
+  Although the technology is often good enough for many
+  of these applications, there remain key challenges in
+  virtually every aspect of speech recognition that
+  prevent the technology from being used ubiquitously in
+  any environment, for any speaker, and for an even
+  broader range of applications. This talk will analyze
+  the ‘Speech Circle’ that enables a person to maintain
+  a dialog with a machine using speech recognition,
+  spoken language understanding, dialog management and
+  spoken language generation, and finally text-to-speech
+  synthesis, and show where significant progress has
+  been made, and where there remain critical problems
+  that need to be addressed and solved.
+
+  The talk will include several audio and video examples
+  of speech recognition and speech understanding systems
+  that have been studied in the laboratory to illustrate
+  the challenges that remain to be solved before speech
+  recognition is considered a solved problem. 
+
+       

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/TrainableInformationExtractionSystems.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/TrainableInformationExtractionSystems.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/TrainableInformationExtractionSystems.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/TrainableInformationExtractionSystems.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,11 @@
+Adventurous Research Summer Seminar Series - Trainable Information Extraction Systems
+
+August 19, 2003   02:00 PM - 03:30 PM  
+David Johnson, Frank Oles, Tong Zhang(IBM Research)    
+Hawthorne GN-F15 
+Availability: Open  
+
+The technical objective of the TIES project is to build customizable systems that can identify named entities in text, such as persons, organizations, and locations, as well as identifying relations between those entities. The technical approach is to develop new statistical and symbolic machine learning algorithms in service of the technical objective. Also, we are working on combining statistical with symbolic techniques. The first part of this talk, given by David E. Johnson, will provide a general overview of the goals of the TIES project. The second part, given by Tong Zhang, will provide background on applying statistical machine learning to this problem domain. Tong will also describe the particular statistical approach taken, which is termed Robust Risk Minimization (RMM). The final part will be given by Frank J. Oles. Frank will introduce his theory of precedence-inclusion patterns. Precedence-inclusion patterns are mathematical structures possessing multiple intera
 cting strict partial orders that satisfy axioms generalizing the familiar properties of irreflexivity and transitivity. This very general theory provides a radically new approach to symbolic, as opposed to statistical, pattern generalization that can be applied to relational learning in a number of settings, including learning based on text, on images, or on videos. 
+ 
+
+ 

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMASummerSchool2003.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMASummerSchool2003.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMASummerSchool2003.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMASummerSchool2003.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,79 @@
+UIMA Summer School
+
+August 26, 2003
+UIMA 101 - The New UIMA Introduction 
+(Hands-on Tutorial)
+9:00AM-5:00PM in HAW GN-K35
+
+August 28, 2003
+FROST Tutorial
+9:00AM-5:00PM in HAW GN-K35
+
+September 15, 2003
+UIMA 201: UIMA Advanced Topics 
+(Hands-on Tutorial)
+9:00AM-5:00PM in HAW 1S-F53
+
+September 17, 2003
+The UIMA System Integration Test and Hardening Service
+The "SITH"
+3:00PM-4:30PM in HAW GN-K35
+
+
+
+UIMA Summer School Tutorial and Presentation Details
+UIMA 101: The new UIMA tutorial  
+Tuesday August 26 9:00AM - 4:30PM in GN-K35
+
+UIMA 101 is a hands-on programming tutorial.
+
+UIMA 101 is intended for people who want a first introductory course to UIMA or for people who would like a refresher.
+
+The tutorial covers the same concepts in the first UIMA tutorial given in 3Q 2002 except for some key updates:
+
+1) It uses a new interface to the CAS that makes it more natural to access and update CAS feature structures using ordinary Java objects (i.e., the JCAS) and
+2) It uses updated TAE interfaces that give the application developer more control over managing multiple CASs. 
+
+Please NOTE expert users of UIMA can skip this one and should consider attending the Advanced Topics tutorial.
+
+Prerequisites for the UIMA 101 Tutorial
+1) Java Programming
+2) Some experience with Eclipse IDE helpful
+
+FROST Tutorial
+August 28  9:00AM - 5:00PM  in GN-K35
+
+Visitors from the FROST team will be here to talk to us about FROST.
+
+UIMA 201: The UIMA Advanced Topics Tutorial
+September 15:   9:00AM - 5:30PM in Hawthorne 1S-F53
+
+UIMA 201 will introduce some new UIMA concepts and walk the student through hands-on examples.
+
+The advanced topics tutorial is designed for people who have some experience with UIMA and want 
+to use new capabilities of UIMA 1.0 to address one or more of the following 
+Advanced Topics:
+
+1) Collection Processing and Collection Processing Engines (CPEs)
+2) Multi-Threading and CAS Pooling
+3) Using the UIMA adapter framework to integrate network TAEs with Java TAEs
+4) A Semantic Search Application that brings it all together	
+
+Prerequisites for UIMA 201
+1) UIMA 101 Tutorial OR Extensive UIMA Experience
+
+The UIMA Integration Test bed Service (The "SITH")
+September 17 3:00PM - 4:30PM in HAW GN-K35
+
+We have developed the first version of the UIMA Integration Test bed service.
+
+This service is being developed to help test, evaluate, certify and publish UIMA compliant components.
+
+In this talk we will explain the service and what it is intended to provide the UIMA community. We will address the following topics:
+
+1. SITH Services
+2. How to submit components and what to expect in return
+3. Overview of the test bed implementation using Collection Processing UIMA and Juru. 
+4. Next Steps for the SITH
+
+

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMA_Seminars.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMA_Seminars.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMA_Seminars.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/UIMA_Seminars.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,20 @@
+Upcoming UIMA Seminars
+
+April 7, 2004 Distillery Lunch Seminar
+UIMA and its Metadata
+12:00PM-1:00PM in HAW GN-K35. 
+
+Dave Ferrucci will give a UIMA overview and discuss the types of component metadata that UIMA components provide.  Jon Lenchner will give a demo of the Text Analysis Engine configurator tool.
+
+
+April 16, 2004 KM & I Department Tea 
+Title: An Eclipse-based TAE Configurator Tool
+3:00PM-4:30PM in HAW GN-K35 .
+
+Jon Lenchner will demo an Eclipse plugin for configuring TAE descriptors, which will be available soon for you to use.  No more editing XML descriptors by hand!
+
+
+May 11, 2004 UIMA Tutorial 
+9:00AM-5:00PM in HAW GN-K35.
+
+This is a full-day, hands-on tutorial on UIMA, covering the development of Text Analysis Engines and Collection Processing Engines, as well as how to include these components in your own applications.

Added: uima/sandbox/trunk/uima-basp/src/test/resources/data/WatsonConferenceRooms.txt
URL: http://svn.apache.org/viewvc/uima/sandbox/trunk/uima-basp/src/test/resources/data/WatsonConferenceRooms.txt?rev=1342437&view=auto
==============================================================================
--- uima/sandbox/trunk/uima-basp/src/test/resources/data/WatsonConferenceRooms.txt (added)
+++ uima/sandbox/trunk/uima-basp/src/test/resources/data/WatsonConferenceRooms.txt Thu May 24 21:33:24 2012
@@ -0,0 +1,43 @@
+Conference Rooms at Watson:
+ Location	Capacity 	Wall Phone Ext.  
+
+Classroom Style  
+  HAW J2-B34 	Seats 12 	tieline 863-3130  
+  HAW J2-N07 	Seats 24 	tieline 863-3210  
+  YKT 20-001 	Seats 36 	tieline 862-4304  
+  YKT 20-051 	Seats 18 	tieline 862-4307  
+
+Conference Style  
+  HAW 2N-F28 	Seats 20 	tieline 863-7583  
+  HAW 4N-B15 	Seats 14 	tieline 863-7126  
+  HAW 4N-B17 	Seats 10 	tieline 863-7089  
+  HAW 4S-K21 	Seats 16 	tieline 863-6386  
+  HAW GN-F14 	Seats 12 	tieline 863-6770  
+  HAW GN-K30 	Seats 12 	tieline 863-7335  
+  HAW GN-K36 	Seats 10 	tieline 863-6098  
+  HAW J1-N14 	Seats 24 	tieline 863-3629  
+  HAW J2-A16 	Seats 12 	tieline 863-3240  
+  HAW J2-G27 	Seats 15 	tieline 863-3150  
+  HAW J2-M24 	Seats 8 	tieline 863-3160  
+  YKT 03-135 	Seats 8 	tieline 862-1696  
+  YKT 03-235 	Seats 8 	tieline 862-4278  
+  YKT 05-135 	Seats 8 	tieline 862-3477  
+  YKT 05-235 	Seats 8 	tieline 862-4279  
+  YKT 20-006 	Seats 8 	tieline 862-4301  
+  YKT 20-059 	Seats 20 	tieline 862-4308  
+  YKT 35-132 	Seats 8 	tieline 862-2873  
+  YKT 35-232 	Seats 8 	tieline 862-2860  
+  YKT 38-023 	Seats 8 	tieline 862-3299  
+  YKT 39-132 	Seats 8 	tieline 862-3486  
+  YKT 40-100 	Seats 20 	tieline 862-4199  
+  YKT 40-200 	Seats 20 	tieline 862-1379  
+ 
+Other  
+  HAW GN-K35 	Seats 24 	tieline 863-6104  
+
+Theater Style  
+  HAW 1S-F40 	Seats 30 	tieline 863-6396  
+  YKT 20-043 	Seats 50 	tieline 862-4306  
+
+Video Conference Room  
+  YKT 32-026 	Seats 25 	tieline 862-3917