Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Prolog mlpack Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
Prolog mlpack Library
Commits
4750257f
Commit
4750257f
authored
2 years ago
by
Jakhes
Browse files
Options
Downloads
Patches
Plain Diff
Updating root Makefile
parent
fc60b566
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+37
-3
37 additions, 3 deletions
Makefile
src/methods/new_method/new_method.pl
+1
-1
1 addition, 1 deletion
src/methods/new_method/new_method.pl
with
38 additions
and
4 deletions
Makefile
+
37
−
3
View file @
4750257f
...
@@ -3,39 +3,72 @@ SPLFR_PATH=/usr/local/sicstus4.7.1/bin/splfr
...
@@ -3,39 +3,72 @@ SPLFR_PATH=/usr/local/sicstus4.7.1/bin/splfr
all
:
all
:
@
echo
"Start compiling!"
@
echo
"Start compiling!"
@
echo
"AdaBoost!..."
make
-C
src/methods/ada_boost
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/ada_boost
splfr
=
$(
SPLFR_PATH
)
@
echo
"AdaBoost!"
@
echo
"ApproxKFN!..."
make
-C
src/methods/approx_kfn
splfr
=
$(
SPLFR_PATH
)
@
echo
"BayesianLinearRegression!..."
make
-C
src/methods/bayesian_linear_regression
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/bayesian_linear_regression
splfr
=
$(
SPLFR_PATH
)
@
echo
"CF!..."
#make -C src/methods/cf splfr=
$(
SPLFR_PATH
)
#make -C src/methods/cf splfr=
$(
SPLFR_PATH
)
@
echo
"DBScan!..."
make
-C
src/methods/dbscan
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/dbscan
splfr
=
$(
SPLFR_PATH
)
@
echo
"DecisionTree!..."
make
-C
src/methods/decision_tree
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/decision_tree
splfr
=
$(
SPLFR_PATH
)
@
echo
"EMST!..."
make
-C
src/methods/emst
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/emst
splfr
=
$(
SPLFR_PATH
)
@
echo
"FastMKS!..."
make
-C
src/methods/fastmks
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/fastmks
splfr
=
$(
SPLFR_PATH
)
@
echo
"HoeffdingTree!..."
make
-C
src/methods/hoeffding_tree
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/hoeffding_tree
splfr
=
$(
SPLFR_PATH
)
@
echo
"KDE!..."
make
-C
src/methods/kde
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/kde
splfr
=
$(
SPLFR_PATH
)
@
echo
"KernelPCA!..."
make
-C
src/methods/kernel_pca
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/kernel_pca
splfr
=
$(
SPLFR_PATH
)
@
echo
"KFN!..."
make
-C
src/methods/kfn
splfr
=
$(
SPLFR_PATH
)
@
echo
"KMeans!..."
make
-C
src/methods/kmeans
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/kmeans
splfr
=
$(
SPLFR_PATH
)
@
echo
"KNN!..."
make
-C
src/methods/knn
splfr
=
$(
SPLFR_PATH
)
@
echo
"LARS!..."
make
-C
src/methods/lars
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/lars
splfr
=
$(
SPLFR_PATH
)
@
echo
"LinearRegression!..."
make
-C
src/methods/linear_regression
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/linear_regression
splfr
=
$(
SPLFR_PATH
)
@
echo
"LinearSVM!..."
make
-C
src/methods/linear_SVM
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/linear_SVM
splfr
=
$(
SPLFR_PATH
)
@
echo
"LMNN!..."
make
-C
src/methods/lmnn
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/lmnn
splfr
=
$(
SPLFR_PATH
)
@
echo
"LocalCoordinateCoding!..."
make
-C
src/methods/local_coordinate_coding
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/local_coordinate_coding
splfr
=
$(
SPLFR_PATH
)
@
echo
"LogisticRegression!..."
make
-C
src/methods/logistic_regression
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/logistic_regression
splfr
=
$(
SPLFR_PATH
)
@
echo
"LSH!..."
make
-C
src/methods/lsh
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/lsh
splfr
=
$(
SPLFR_PATH
)
@
echo
"MeanShift!..."
make
-C
src/methods/mean_shift
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/mean_shift
splfr
=
$(
SPLFR_PATH
)
@
echo
"NaiveBayesClassifier!..."
make
-C
src/methods/naive_bayes_classifier
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/naive_bayes_classifier
splfr
=
$(
SPLFR_PATH
)
@
echo
"NCA!..."
make
-C
src/methods/nca
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/nca
splfr
=
$(
SPLFR_PATH
)
@
echo
"NMF!..."
make
-C
src/methods/nmf
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/nmf
splfr
=
$(
SPLFR_PATH
)
@
echo
"PCA!..."
make
-C
src/methods/pca
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/pca
splfr
=
$(
SPLFR_PATH
)
@
echo
"Perceptron!..."
make
-C
src/methods/perceptron
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/perceptron
splfr
=
$(
SPLFR_PATH
)
@
echo
"Radical!..."
make
-C
src/methods/radical
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/radical
splfr
=
$(
SPLFR_PATH
)
@
echo
"RandomForest!..."
make
-C
src/methods/random_forest
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/random_forest
splfr
=
$(
SPLFR_PATH
)
@
echo
"SoftmaxRegression!..."
make
-C
src/methods/softmax_regression
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/softmax_regression
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/approx_kfn
splfr
=
$(
SPLFR_PATH
)
@
echo
"SparseCoding!..."
make
-C
src/methods/sparse_coding
splfr
=
$(
SPLFR_PATH
)
make
-C
src/methods/sparse_coding
splfr
=
$(
SPLFR_PATH
)
clean
:
clean
:
make
-C
src/methods/ada_boost clean
make
-C
src/methods/ada_boost clean
make
-C
src/methods/approx_kfn clean
make
-C
src/methods/bayesian_linear_regression clean
make
-C
src/methods/bayesian_linear_regression clean
#make -C src/methods/cf clean
#make -C src/methods/cf clean
make
-C
src/methods/dbscan clean
make
-C
src/methods/dbscan clean
...
@@ -45,7 +78,9 @@ clean:
...
@@ -45,7 +78,9 @@ clean:
make
-C
src/methods/hoeffding_tree clean
make
-C
src/methods/hoeffding_tree clean
make
-C
src/methods/kde clean
make
-C
src/methods/kde clean
make
-C
src/methods/kernel_pca clean
make
-C
src/methods/kernel_pca clean
make
-C
src/methods/kfn clean
make
-C
src/methods/kmeans clean
make
-C
src/methods/kmeans clean
make
-C
src/methods/knn clean
make
-C
src/methods/lars clean
make
-C
src/methods/lars clean
make
-C
src/methods/linear_regression clean
make
-C
src/methods/linear_regression clean
make
-C
src/methods/linear_SVM clean
make
-C
src/methods/linear_SVM clean
...
@@ -62,7 +97,6 @@ clean:
...
@@ -62,7 +97,6 @@ clean:
make
-C
src/methods/radical clean
make
-C
src/methods/radical clean
make
-C
src/methods/random_forest clean
make
-C
src/methods/random_forest clean
make
-C
src/methods/softmax_regression clean
make
-C
src/methods/softmax_regression clean
make
-C
src/methods/approx_kfn clean
make
-C
src/methods/sparse_coding clean
make
-C
src/methods/sparse_coding clean
This diff is collapsed.
Click to expand it.
src/methods/new_method/new_method.pl
+
1
−
1
View file @
4750257f
...
@@ -42,7 +42,7 @@ foreign(function, c, function(arguments)).
...
@@ -42,7 +42,7 @@ foreign(function, c, function(arguments)).
%% bool name => (1)true / (0)false
%% bool name => (1)true / (0)false
%% Defines the functions that get connected from
main
.cpp
%% Defines the functions that get connected from
new_method
.cpp
foreign_resource
(
new_method
,
[
function
]).
foreign_resource
(
new_method
,
[
function
]).
:-
load_foreign_resource
(
new_method
).
:-
load_foreign_resource
(
new_method
).
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment