Skip to content

trela/qikify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Qikify

Qikify is a Model-View-Controller framework for addressing challenging semiconductor data analysis and machine learning tasks. Qikify is built in Python using numpy, but learning Qikify should be easy for anyone familiar with MATLAB or R.

The objective of this project is to simplify the task of working with semiconductor data in production environments.

Using the MVC pattern partitions your application into three distinct components, each with very specific responsibilities.

For a first release, we are targeting CSV-based data and applying basic machine learning algorithms to implement adaptive test applications. After an initial release, our roadmap includes moving to a Hadoop HDFS/HBase backend for data storage, rewriting some of the key algorithms to support Hadoop MapReduce implementations, and building more general tools to address semiconductor data analysis tasks.

Organization

As an MVC framework, Qikify aims to define clear design patterns for implementing data analysis tasks. Semiconductor datasets are abstracted as models, machine learning algorithms are defined in controllers, and real-time traces of running algorithms are observed in views. Finally, these MVC components are assembled as recipes; several example recipes will be included with the framework covering basic machine learning tasks.

Models

The atomic model used in our framework is the Chip model, encapsulating chip-level data. Higher level (wafer or lot) abstractions are clearly possibly, but we have found abstracting data at the chip-level to be the best for maintaining clean interfaces between blocks. To generate Chip objects, an ATESimulator recipe is provided to simulate automated test equipment. This ATE simulator takes raw CSV data and periodically emits chip objects.

Controllers

A large number of controllers are provided with the Qikify framework. These controllers aim to provide simple APIs, usually defining a standard controller.run() method.

Views

In Qikify, a view server recipe is provided. The view server listens for JSON from recipes and controllers, and then forwards that on to any connected web clients. Some client-side javascript parses the JSON and turns it into graphical representations.

Installation

This project is built on and requires the following software:

Depending on your platform, installing these dependencies is usually straightforward. Once python is installed, pip install [packagename] will do the trick, with the notable exception of numpy/scipy. These libraries are built on fortran ATLAS/LAPACK and usually will not install cleanly from PyPI; binaries should be downloaded directly from the project site.

Once the above are installed, install qikify with:

git clone git://github.com/trela/qikify.git
cd qikify
python setup.py install

to get started with the code.

Contributors

The following are the major project contributors.

License

(The MIT License)

Copyright © 2011-2012 Nathan Kupp, Yale University.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

MVC framework for adaptive test and lightning-fast machine learning for semiconductor data analysis.

Resources

License

Stars

Watchers

Forks

Packages

No packages published