Skip to content

Commit d9d0d31

Browse files
committed
Fixed #23 - file extensions in gurls++ demo
1 parent 6cfbd8b commit d9d0d31

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

README

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,43 @@ Documentation
2828

2929
=============
3030

31-
- Webpage
32-
the GURLS webpage can be found at: http://lcsl.mit.edu/#/downloads/gurls
31+
- GURLS webpage
32+
http://lcsl.mit.edu/#/downloads/gurls
3333

3434
- Reference paper
35-
Tacchetti, Mallapragada, Santoro and Rosasco,
36-
Gurls: a least squares-based library for state of the art supervised learning
37-
accepted for publication on JMLR
35+
A. Tacchetti, P. K. Mallapragada, M. Santoro and L. Rosasco,
36+
GURLS: a Least Squares Library for Supervised Learning,
37+
Journal of Machine Learning Research, 14, 2013.
38+
http://jmlr.org/papers/v14/tacchetti13a.html
3839

3940
- Installation instructions can be found here:
4041
https://github.com/LCSL/GURLS/wiki/2-Getting-Started
4142

42-
- Quick intructions on how to run the libraries for a default case can be found here:
43+
- Quick intructions on how to run the libraries for a default case:
4344
https://github.com/LCSL/GURLS/wiki/2-Getting-Started#wiki-Hello_World
4445

45-
- A User manual with several examples can be found here:
46+
- A User manual with several examples:
4647
https://github.com/LCSL/GURLS/wiki/3-User-Manual#wiki-User_Manual
4748

48-
- A collection of the most useful and common pipelines can be found here:
49+
- A collection of the most useful and common pipelines:
4950
https://github.com/LCSL/GURLS/wiki/3-User-Manual#wiki-Examples
5051

51-
- The list of all the available methods of the libraries can be found at
52+
- The list of all the available methods of the libraries:
5253
https://github.com/LCSL/GURLS/wiki/4-Available-methods
5354

54-
- C++ Code Documentation can be found at: http://lcsl.github.io/GURLS/
55+
- C++ Code Documentation:
56+
http://lcsl.github.io/GURLS/
5557

5658
- Further Documentation
5759
* Have a look at the README files of each individual package.
5860

5961
* In gurls-manual.pdf you can find both the installation instructions
60-
and user manual, together with the Matlab and C++ Developer's Guide.
62+
and user manual, together with the MATLAB and C++ Developer's Guide.
6163
GURLS is designed for easy expansion. Give it a try!
6264

6365
* In recursiveRLS-tutorial.pdf you can find a simple Tutorial for the Recursive
6466
RLS API
6567

66-
* The description of the available methods, demos and data
67-
for each package can be found at
68+
* Description of the available methods, demos and data for each package:
6869
https://github.com/CBCL/GURLS/wiki/4-Code-Description
70+

gurls++/demo/helloworld.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* The GURLS Package in C++
33
*
4-
* Copyright (C) 2011-1013, IIT@MIT Lab
4+
* Copyright (C) 2011-1013, LCSL, MIT/IIT Lab
55
* All rights reserved.
66
*
77
* authors: M. Santoro
88
9-
* website: http://cbcl.mit.edu/IIT@MIT/[email protected]
9+
* website: http://lcsl.mit.edu
1010
*
1111
* Redistribution and use in source and binary forms, with or without
1212
* modification, are permitted provided that the following conditions

gurls++/demo/traintest_demo.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ int main(int argc, char* argv[])
6060
{
6161
//reading CSV with standard names from selected path
6262
std::cout<<"Reading Xtr"<<std::endl;
63-
Xtr.readCSV(std::string(argv[1]) + "/Xtr.csv");
63+
Xtr.readCSV(std::string(argv[1]) + "/Xtr.txt");
6464
std::cout<<"Reading ytr"<<std::endl;
65-
ytr.readCSV(std::string(argv[1]) + "/Ytr.csv");
65+
ytr.readCSV(std::string(argv[1]) + "/ytr.txt");
6666
std::cout<<"Reading Xte"<<std::endl;
67-
Xte.readCSV(std::string(argv[1]) + "/Xts.csv");
67+
Xte.readCSV(std::string(argv[1]) + "/Xte.txt");
6868
std::cout<<"Reading yte"<<std::endl;
69-
yte.readCSV(std::string(argv[1]) + "/Yts.csv");
69+
yte.readCSV(std::string(argv[1]) + "/yte.txt");
7070
}
7171

7272
catch(gurls::gException &e)

0 commit comments

Comments
 (0)