Skip to content

Commit 0ed334e

Browse files
Doc overview page copy update (postgresml#1574)
1 parent 6f535c2 commit 0ed334e

File tree

1 file changed

+7
-7
lines changed
  • pgml-dashboard/src/components/pages/docs/landing_page

1 file changed

+7
-7
lines changed

pgml-dashboard/src/components/pages/docs/landing_page/template.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</div>
3535
<div class="w-100 d-flex flex-column align-items-center">
3636
<h1 class="text-center">PostgresML</br><span class="text-gradient-green">Documentation</span></h1>
37-
<p class="w-75 text-center">PostgresML is a open-source database extension that turns Postgres into an end-to-end machine learning platform. Build, train, and deploy ML/AI models directly within your Postgres database without moving data between systems.</p>
37+
<p class="w-75 text-center">Build, train, and deploy ML/AI models directly where your data resides.</p>
3838
</div>
3939

4040
<div class="w-100 mx-auto" style="max-width: 40rem;">
@@ -112,23 +112,23 @@ <h1 class="text-center text-xl-start mb-5 mb-xl-0 mx-auto" style="width: fit-con
112112
}
113113
%>
114114
<%+ Accordian::new().html_titles(vec![
115-
"What is PostgresML?",
115+
"What is PGML?",
116116
"What is a DB extension?",
117117
"How does it work?",
118118
"What are the benefits?",
119119
"What are the cons?",
120-
"What is hosted PostgresML?"
120+
"What is PostgresML Cloud?"
121121
])
122122
.html_contents(
123123
vec![
124-
&accordian_paragraph("PostgresML is an open-source database extension that turns Postgres into an end-to-end machine learning platform. It allows you to build, train, and deploy ML models directly within your Postgres database without moving data between systems."),
124+
&accordian_paragraph("PGML is an open-source database extension that turns Postgres into an end-to-end machine learning platform. It allows you to build, train, and deploy ML models directly within your Postgres database without moving data between systems."),
125125
&accordian_paragraph("A database extension is software that extends the capabilities of a database. Postgres allows extensions to add new data types, functions, operators, indexes, etc. PostgresML uses extensions to bring machine learning capabilities natively into Postgres."),
126126
&accordian_paragraph("PostgresML installs as extensions in Postgres. It provides SQL API functions for each step of the ML workflow like importing data, transforming features, training models, making predictions, etc. Models are stored back into Postgres tables. This unified approach eliminates complexity."),
127127
&accordian_paragraph("Benefits include faster development cycles, reduced latency, tighter integration between ML and applications, leveraging Postgres' reliability and ACID transactions, and horizontal scaling."),
128128
&accordian_paragraph("PostgresML requires using Postgres as the database. If your data currently resides in a different database, there would be some upfront effort required to migrate the data into Postgres in order to utilize PostgresML's capabilities."),
129129
&accordian_paragraph(r##"
130-
<p>Hosted PostgresML is a fully managed cloud service that provides all the capabilities of open source PostgresML without the need to run your own database infrastructure.</p>
131-
<p>With hosted PostgresML, you get:</p>
130+
<p>Hosted PostgresML is a fully managed cloud service that provides all the capabilities of open source PGML without the need to run your own database infrastructure.</p>
131+
<p>With PostgresML Cloud, you get:</p>
132132
<ul>
133133
<li>Flexible compute resources - Choose CPU, RAM or GPU machines tailored to your workload</li>
134134
<li>Horizontally scalable inference with read-only replicas </li>
@@ -137,7 +137,7 @@ <h1 class="text-center text-xl-start mb-5 mb-xl-0 mx-auto" style="width: fit-con
137137
<li>Automated backups and point-in-time restore </li>
138138
<li>Monitoring dashboard with metrics and logs </li>
139139
</ul>
140-
<p>In summary, hosted PostgresML removes the operational burden so you can focus on developing machine learning applications, while still getting the benefits of the unified PostgresML architecture.</p>
140+
<p>In summary, PostgresML Cloud removes the operational burden so you can focus on developing machine learning applications, while still getting the benefits of the unified PostgresML architecture.</p>
141141
"##)
142142
])
143143
%>

0 commit comments

Comments
 (0)