From d07e484bec18fd940cb540c31b7ab80b2104523b Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Fri, 29 Dec 2023 10:13:21 -0700 Subject: [PATCH] doc linting --- docs/api_classes/overview.md | 2 +- examples/full_ml_pipeline.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/api_classes/overview.md b/docs/api_classes/overview.md index 9db57b0f0..73784c97e 100644 --- a/docs/api_classes/overview.md +++ b/docs/api_classes/overview.md @@ -74,4 +74,4 @@ Processing... sageworks_new_light !!! note "Examples" - All of the SageWorks Examples are in the Sageworks Repository under the examples/ directory. For a full code listing of any example please visit our [SageWorks Examples](https://github.com/SuperCowPowers/sageworks/blob/main/examples) + All of the SageWorks Examples are in the Sageworks Repository under the `examples/` directory. For a full code listing of any example please visit our [SageWorks Examples](https://github.com/SuperCowPowers/sageworks/blob/main/examples) diff --git a/examples/full_ml_pipeline.py b/examples/full_ml_pipeline.py index 7272f30e8..758bbf671 100644 --- a/examples/full_ml_pipeline.py +++ b/examples/full_ml_pipeline.py @@ -19,7 +19,6 @@ log = logging.getLogger("sageworks") if __name__ == "__main__": - # Create the abalone_data DataSource ds = DataSource("s3://sageworks-public-data/common/abalone.csv") @@ -48,4 +47,3 @@ df = fs.query(f"SELECT * FROM {athena_table} where training = 0") results = endpoint.predict(df) print(results[["class_number_of_rings", "prediction"]]) -