Commit e58c5601 authored by Tim O'Brien's avatar Tim O'Brien
Browse files

Merge branch 'master' of cm-gitlab.stanford.edu:tsob/musicNet

parents 1d5773cf b0050760
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
*.pyc
*.egg-info
*.suo
docs/build/*
+23 −0
Original line number Diff line number Diff line
language: python
sudo: false
python:
  - "2.7"
  - "3.4"
addons:
  apt:
    packages:
    - libblas-dev
    - liblapack-dev
    - gfortran
    - libatlas3gf-base
before_install:
  - pip install -U pip
install:
  - travis_wait travis_retry pip install -r requirements.txt
  - travis_retry pip install -e . 
script: nosetests test
cache:
  - apt
  - directories:
    - $HOME/.cache/pip
    - $HOME/.theano

climin-master/LICENSE

0 → 100644
+37 −0
Original line number Diff line number Diff line
Copyright (c) 2013, climin developers

All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this 
   list of conditions and the following disclaimer.

 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

 * Neither the name of the climin developers nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The climin developers are
    
    Justin Bayer, bayer.justin@googlemail.com
    Christian Osendorfer, osendorf@gmail.com
    Sarah Diot-Girard, sarah.diot-girard@e-kiwi.fr
    Thomas Rueckstiess, rueckstiess@mac.com
    Sebastian Urban, surban@tum.de
+41 −0
Original line number Diff line number Diff line
climin
------

climin is a Python package for optimization, heavily biased to machine learning
scenarios distributed under the BSD 3-clause license. It works on top of numpy
and (partially) gnumpy.

The project was started in winter 2011 by Christian Osendorfer and Justin Bayer.
Since then, Sarah Diot-Girard, Thomas Rueckstiess and Sebastian Urban have 
contributed. If you use climin in your (academic) work, please cite as 
(tech report is in preparation):

> J.Bayer and C.Osendorfer and S. Diot-Girard and T. Rückstiess and Sebastian Urban. climin - A pythonic framework for gradient-based function optimization. TUM Tech Report. 2015. 


Important links
---------------

 - Official repository of source: http://github.com/BRML/climin
 - Documentation: http://climin.readthedocs.org
 - Mailing list: climin@librelist.com (archive: http://librelist.com/browser/climin/)


Dependencies
------------

The software is tested under Python 2.7 with numpy 1.8, scipy 0.13. The tests
are run with nosetests.


Installation
------------

Use git to clone the official repository; then run `pip install --user -e .`
in the clone to intall in your local user space.


Testing
-------

From the download directory run ``nosetests tests/``.
+81 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{1e8caaee-4a8c-48ad-aa51-f7f049f13552}</ProjectGuid>
    <ProjectHome>.</ProjectHome>
    <StartupFile>
    </StartupFile>
    <SearchPath>
    </SearchPath>
    <WorkingDirectory>.</WorkingDirectory>
    <OutputPath>.</OutputPath>
    <Name>climin</Name>
    <RootNamespace>climin</RootNamespace>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <DebugSymbols>true</DebugSymbols>
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <DebugSymbols>true</DebugSymbols>
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
  </PropertyGroup>
  <ItemGroup>
    <Folder Include="climin\" />
    <Folder Include="climin\stops\" />
    <Folder Include="examples\" />
    <Folder Include="test\" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="climin\asgd.py" />
    <Compile Include="climin\base.py" />
    <Compile Include="climin\bfgs.py" />
    <Compile Include="climin\cg.py" />
    <Compile Include="climin\gd.py" />
    <Compile Include="climin\initialize.py" />
    <Compile Include="climin\lbfgs.py" />
    <Compile Include="climin\linesearch.py" />
    <Compile Include="climin\mathadapt.py" />
    <Compile Include="climin\ncg.py" />
    <Compile Include="climin\nes.py" />
    <Compile Include="climin\nesterov.py" />
    <Compile Include="climin\project.py" />
    <Compile Include="climin\rmsprop.py" />
    <Compile Include="climin\rprop.py" />
    <Compile Include="climin\sbfgs.py" />
    <Compile Include="climin\schedule.py" />
    <Compile Include="climin\smd.py" />
    <Compile Include="climin\stops\stops.py" />
    <Compile Include="climin\stops\__init__.py" />
    <Compile Include="climin\util.py" />
    <Compile Include="climin\__init__.py" />
    <Compile Include="examples\nnlrMNIST.py" />
    <Compile Include="examples\nnMNIST.py" />
    <Compile Include="examples\numericalGradientChecker.py" />
    <Compile Include="examples\stop_converged.py" />
    <Compile Include="examples\stop_criterions.py" />
    <Compile Include="examples\stop_iterations.py" />
    <Compile Include="examples\stop_timeelapsed.py" />
    <Compile Include="examples\tongaMNIST.py" />
    <Compile Include="examples\tongaMNISTscript10.py" />
    <Compile Include="test\losses.py" />
    <Compile Include="test\test_asgd.py" />
    <Compile Include="test\test_bfgs.py" />
    <Compile Include="test\test_cg.py" />
    <Compile Include="test\test_gd.py" />
    <Compile Include="test\test_initialize.py" />
    <Compile Include="test\test_lbfgs.py" />
    <Compile Include="test\test_linesearch.py" />
    <Compile Include="test\test_ncg.py" />
    <Compile Include="test\test_nes.py" />
    <Compile Include="test\test_nesterov.py" />
    <Compile Include="test\test_rprop.py" />
    <Compile Include="test\test_sbfgs.py" />
    <Compile Include="test\test_smd.py" />
    <Compile Include="test\test_stops.py" />
    <Compile Include="test\__init__.py" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
</Project>
 No newline at end of file
Loading