From 1468b20caec4a65e92c34b1402d37b8ce455c94f Mon Sep 17 00:00:00 2001 From: Gustavo Rosa Date: Tue, 20 Apr 2021 15:54:16 -0300 Subject: [PATCH] Removing labels requirement message from example files. --- examples/applications/knn_supervised_opf_training.py | 1 - examples/applications/semi_supervised_opf_training.py | 1 - examples/applications/supervised_opf_agglomerative.py | 1 - examples/applications/supervised_opf_learning.py | 1 - examples/applications/supervised_opf_pre_computed_distances.py | 1 - examples/applications/supervised_opf_pruning.py | 1 - examples/applications/supervised_opf_training.py | 1 - examples/applications/unsupervised_opf_clustering.py | 1 - 8 files changed, 8 deletions(-) diff --git a/examples/applications/knn_supervised_opf_training.py b/examples/applications/knn_supervised_opf_training.py index dd1e518..636465a 100644 --- a/examples/applications/knn_supervised_opf_training.py +++ b/examples/applications/knn_supervised_opf_training.py @@ -8,7 +8,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and testing sets diff --git a/examples/applications/semi_supervised_opf_training.py b/examples/applications/semi_supervised_opf_training.py index 7bc4864..3b6b870 100644 --- a/examples/applications/semi_supervised_opf_training.py +++ b/examples/applications/semi_supervised_opf_training.py @@ -8,7 +8,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and testing sets diff --git a/examples/applications/supervised_opf_agglomerative.py b/examples/applications/supervised_opf_agglomerative.py index 71f66ae..df4396e 100644 --- a/examples/applications/supervised_opf_agglomerative.py +++ b/examples/applications/supervised_opf_agglomerative.py @@ -10,7 +10,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and validation sets diff --git a/examples/applications/supervised_opf_learning.py b/examples/applications/supervised_opf_learning.py index 9775202..394242d 100644 --- a/examples/applications/supervised_opf_learning.py +++ b/examples/applications/supervised_opf_learning.py @@ -7,7 +7,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and validation sets diff --git a/examples/applications/supervised_opf_pre_computed_distances.py b/examples/applications/supervised_opf_pre_computed_distances.py index 5248bf1..4109154 100644 --- a/examples/applications/supervised_opf_pre_computed_distances.py +++ b/examples/applications/supervised_opf_pre_computed_distances.py @@ -8,7 +8,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Pre-computing the distances diff --git a/examples/applications/supervised_opf_pruning.py b/examples/applications/supervised_opf_pruning.py index 1d91d83..dafd2af 100644 --- a/examples/applications/supervised_opf_pruning.py +++ b/examples/applications/supervised_opf_pruning.py @@ -7,7 +7,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and validation sets diff --git a/examples/applications/supervised_opf_training.py b/examples/applications/supervised_opf_training.py index 4b96ef8..4d390e2 100644 --- a/examples/applications/supervised_opf_training.py +++ b/examples/applications/supervised_opf_training.py @@ -8,7 +8,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and testing sets diff --git a/examples/applications/unsupervised_opf_clustering.py b/examples/applications/unsupervised_opf_clustering.py index bd48506..7ae5ccc 100644 --- a/examples/applications/unsupervised_opf_clustering.py +++ b/examples/applications/unsupervised_opf_clustering.py @@ -8,7 +8,6 @@ txt = l.load_txt('data/boat.txt') # Parsing a pre-loaded numpy array -# Note that OPFython uses labels within [1, n] X, Y = p.parse_loader(txt) # Splitting data into training and testing sets