From e18f02cf01d46889e273ab5448902570d7d85fd7 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 25 Aug 2022 14:53:17 -0700 Subject: [PATCH 1/2] Editors pass #2 --- .../docs/blog/data-is-living-and-relational.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pgml-docs/docs/blog/data-is-living-and-relational.md b/pgml-docs/docs/blog/data-is-living-and-relational.md index a0f6b8d70..55e01106c 100644 --- a/pgml-docs/docs/blog/data-is-living-and-relational.md +++ b/pgml-docs/docs/blog/data-is-living-and-relational.md @@ -25,7 +25,7 @@ Data is Living and Relational -A common problem with data science and machine learning tutorials is the published and studied data sets are often nothing like what you’ll find in industry. +A common problem with data science and machine learning tutorials is the published and studied datasets are often nothing like what you’ll find in industry.
@@ -42,11 +42,11 @@ They are: - usually denormalized into a single tabular form, e.g. a CSV file - often relatively tiny to medium amounts of data, not big data - always static, with new rows never added -- sometimes pre-treated to clean or simplify the data +- sometimes pretreated to clean or simplify the data -As Data Science transitions from academia into industry, these norms influence organizations and applications. Professional Data Scientists need teams of Data Engineers to move data from production databases into data warehouses and denormalized schemas which are more familiar, and ideally easier to work with. Large offline batch jobs are a typical integration point between Data Scientists and their Engineering counterparts, who primarily deal with online systems. As the systems grow more complex, additional specialized Machine Learning Engineers are required to optimize performance and scalability bottlenecks between databases, warehouses, models and applications. +As Data Science transitions from academia into industry, these norms influence organizations and applications. Professional Data Scientists need teams of Data Engineers to move data from production databases into data warehouses and denormalized schemas, which are more familiar and ideally easier to work with. Large offline batch jobs are a typical integration point between Data Scientists and their Engineering counterparts, who primarily deal with online systems. As the systems grow more complex, additional specialized Machine Learning Engineers are required to optimize performance and scalability bottlenecks between databases, warehouses, models and applications. -This eventually leads to expensive maintenance and to terminal complexity: new improvements to the system become exponentially more difficult. Ultimately, previously working models start getting replaced by simpler solutions, so the business can continue to iterate. This is not a new phenomenon, see the fate of the Netflix Prize. +This eventually leads to expensive maintenance and terminal complexity: new improvements to the system become exponentially more difficult. Ultimately, previously working models start getting replaced by simpler solutions, so the business can continue to iterate. This is not a new phenomenon, see the fate of the Netflix Prize. Announcing the PostgresML Gym 🎉 ------------------------------- @@ -58,12 +58,12 @@ Instead of starting from the academic perspective that data is dead, PostgresML Relationa data: - is normalized for real time performance and correctness considerations -- has new rows added and updated constantly, which form the incomplete features for a prediction +- has new rows added and updated constantly, which form incomplete features for a prediction -Meanwhile, denormalized data sets: +Meanwhile, denormalized datasets: -- may grow to billions of rows, where single updates multiple into mass rewrites -- often span multiple iterations of the schema, where software bugs leave behind outliers +- may grow to billions of rows, where single updates multiply into mass rewrites +- often span multiple iterations of the schema, with software bugs leaving behind outliers We think it’s worth attempting to move the machine learning process and modern data architectures beyond the status quo. To that end, we’re building the PostgresML Gym, a free offering, to provide a test bed for real world ML experimentation in a Postgres database. Your personal Gym will include the PostgresML dashboard, several tutorial notebooks to get you started, and access to your own personal PostgreSQL database, supercharged with our machine learning extension. From d92508c16289c4ddb2a65892e251a921e6c5e55b Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 25 Aug 2022 14:54:21 -0700 Subject: [PATCH 2/2] typo --- pgml-docs/docs/blog/data-is-living-and-relational.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgml-docs/docs/blog/data-is-living-and-relational.md b/pgml-docs/docs/blog/data-is-living-and-relational.md index 55e01106c..f2527951f 100644 --- a/pgml-docs/docs/blog/data-is-living-and-relational.md +++ b/pgml-docs/docs/blog/data-is-living-and-relational.md @@ -55,7 +55,7 @@ Instead of starting from the academic perspective that data is dead, PostgresML ![relational data](/images/illustrations/uml.png) -Relationa data: +Relational data: - is normalized for real time performance and correctness considerations - has new rows added and updated constantly, which form incomplete features for a prediction @@ -65,7 +65,7 @@ Meanwhile, denormalized datasets: - may grow to billions of rows, where single updates multiply into mass rewrites - often span multiple iterations of the schema, with software bugs leaving behind outliers -We think it’s worth attempting to move the machine learning process and modern data architectures beyond the status quo. To that end, we’re building the PostgresML Gym, a free offering, to provide a test bed for real world ML experimentation in a Postgres database. Your personal Gym will include the PostgresML dashboard, several tutorial notebooks to get you started, and access to your own personal PostgreSQL database, supercharged with our machine learning extension. +We think it’s worth attempting to move the machine learning process and modern data architectures beyond the status quo. To that end, we’re building the PostgresML Gym, a free offering, to provide a test bed for real world ML experimentation, in a Postgres database. Your personal Gym will include the PostgresML dashboard, several tutorial notebooks to get you started, and access to your own personal PostgreSQL database, supercharged with our machine learning extension.