ECN>> CCM>> 返回
项目作者: Jianbo-Lab

项目描述 :
高级语言: Python
项目地址: git://github.com/Jianbo-Lab/CCM.git
创建时间: 2018-01-14T01:11:24Z
项目社区:https://github.com/Jianbo-Lab/CCM

开源协议:

下载


CCM

Code for replicating the experiments in the paper Kernel Feature Selection via Conditional Covariance Minimization by Jianbo Chen*, Mitchell Stern*, Martin J. Wainwright, Michael I. Jordan. (* indicates equal contribution)

Dependencies

The code for CCM runs with Python and requires Tensorflow of version 1.2.1 or higher. Please pip install the following packages:

  • numpy
  • tensorflow

Or you may run the following and in shell to install the required packages:

  1. git clone https://github.com/Jianbo-Lab/CCM
  2. cd CCM
  3. sudo pip install -r requirements.txt

Running in Docker, MacOS or Ubuntu

We provide as an example the source code to run CCM on the three synthetic datasets in the paper. Run the following commands in shell:

  1. ###############################################
  2. # Omit if already git cloned.
  3. git clone https://github.com/Jianbo-Lab/CCM
  4. cd CCM
  5. ###############################################
  6. python examples/run_synthetic.py

See core/ccm.py and examples/run_synthetic.py for details.

Citation

If you use this code for your research, please cite our paper:

  1. @incollection{NIPS2017_7270,
  2. title = {Kernel Feature Selection via Conditional Covariance Minimization},
  3. author = {Chen, Jianbo and Stern, Mitchell and Wainwright, Martin J and Jordan, Michael I},
  4. booktitle = {Advances in Neural Information Processing Systems 30},
  5. editor = {I. Guyon and U. V. Luxburg and S. Bengio and H. Wallach and R. Fergus and S. Vishwanathan and R. Garnett},
  6. pages = {6949--6958},
  7. year = {2017},
  8. publisher = {Curran Associates, Inc.},
  9. url = {http://papers.nips.cc/paper/7270-kernel-feature-selection-via-conditional-covariance-minimization.pdf}
  10. }