Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
feature=['age', 'parity', 'spontaneous'], label='case')])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastForestBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastLinearBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastLinearClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastLinearRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastTreesBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastTreesRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/FastTreesTweedieRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/GamBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/GamRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/KMeansPlusPlus.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline \
.fit(data) \
.test(data, 'induced', output_scores=True)
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/LightGbmBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(
data, 'case').test(
data, output_scores=True)
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/LightGbmClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/LightGbmRanker.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
feature=['Class', 'dep_day', 'duration'], label='rank', group_id='group')])

# train, predict, and evaluate.
# TODO: Replace with CV
metrics, predictions = pipeline \
.fit(data) \
.test(data, output_scores=True)
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/LightGbmRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/LinearSvmBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
feature=['age', 'parity', 'spontaneous'], label='case')])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/NaiveBayesClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/OneVsRestClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/PcaAnomalyDetector.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(
data, 'case', output_scores=True)
# Score
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/PoissonRegressionRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/SgdBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down
1 change: 0 additions & 1 deletion src/python/nimbusml/examples/SymSgdBinaryClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
])

# train, predict, and evaluate
# TODO: Replace with CV
metrics, predictions = pipeline.fit(data).test(data, output_scores=True)

# print predictions
Expand Down