-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmenv.m
27 lines (21 loc) · 805 Bytes
/
menv.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%% setting enviroment
clear ; close all;
global curr_dir
curr_dir= pwd;
addpath(curr_dir);
addpath([curr_dir '/util']);
addpath([curr_dir '/linear_reg']);
addpath([curr_dir '/logistic_reg']);
addpath([curr_dir '/neural']);
addpath([curr_dir '/SVM']);
addpath([curr_dir '/competitions/liberty-mutual-fire-peril']);
addpath([curr_dir '/competitions/seizure-prediction']);
addpath([curr_dir '/competitions/digit-recognizer']);
addpath([curr_dir '/competitions/restaurant-revenue-prediction']);
addpath([curr_dir '/competitions/otto-group-product-classification-challenge']);
addpath([curr_dir '/competitions/springleaf-marketing-respons']);
addpath([curr_dir '/dataset/poly/']);
%% addpath('/Users/gino/kaggle/libsvm/matlab');
if exist('OCTAVE_VERSION', 'builtin') > 0
setenv('GNUTERM','qt')
end