Skip to content

Commit

Permalink
Removing labels requirement message from example files.
Browse files Browse the repository at this point in the history
  • Loading branch information
gugarosa committed Apr 20, 2021
1 parent bacdd4b commit 1468b20
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion examples/applications/knn_supervised_opf_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/semi_supervised_opf_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/supervised_opf_agglomerative.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/supervised_opf_learning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/supervised_opf_pruning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/supervised_opf_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/applications/unsupervised_opf_clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1468b20

Please sign in to comment.