~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to Lib/sandbox/svm/README

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Support Vector Machines
2
 
=======================
3
 
 
4
 
This code is being developed as a Summer of Code project.
5
 
 
6
 
Code will be checked into this repository periodically.
7
 
 
8
 
For more information, see:
9
 
 
10
 
http://students.ee.sun.ac.za/~albert/pylibsvm/
11
 
 
12
 
 
13
 
To run the test suite, do the following:
14
 
 
15
 
1. Build the libsvm_ library in the libsvm-2.82 directory.
16
 
 
17
 
On Windows:
18
 
 
19
 
Start the Visual Studio .NET 2003 Command Prompt
20
 
cd libsvm-2.82
21
 
nmake -f Makefile.win
22
 
copy libsvm_.dll ..
23
 
 
24
 
On Linux:
25
 
 
26
 
cd libsvm-2.82
27
 
scons
28
 
cp libsvm_.so ..
29
 
 
30
 
2. Install NumPy SVN r2780 or later.
31
 
 
32
 
3. Install ctypes 0.9.9.6 or later.
33
 
 
34
 
On Windows:
35
 
 
36
 
http://sourceforge.net/project/showfiles.php?group_id=71702
37
 
 
38
 
On Linux, one of:
39
 
 
40
 
yum install python-ctypes
41
 
apt-get install python-ctypes
42
 
 
43
 
4. Run the tests in the tests directory.
44
 
 
45
 
On Windows:
46
 
 
47
 
cd tests
48
 
test_classification.py
49
 
...
50
 
test_all.py
51
 
 
52
 
On Linux:
53
 
 
54
 
cd tests
55
 
python test_classification.py
56
 
...
57
 
python test_all.py