Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb9cbb14

Browse files
committed
links
1 parent0c906b9 commitb9cbb14

19 files changed

+170
-145
lines changed

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ SELECT pgml.transform(
9797
```
9898

9999
##Tabular data
100-
-[47+ classification and regression algorithms](https://postgresml.org/docs/api/sql-extension/pgml.train/)
100+
-[47+ classification and regression algorithms](/docs/open-source/pgml/api/pgml.train)
101101
-[8 - 40X faster inference than HTTP based model serving](https://postgresml.org/blog/postgresml-is-8x-faster-than-python-http-microservices)
102102
-[Millions of transactions per second](https://postgresml.org/blog/scaling-postgresml-to-one-million-requests-per-second)
103103
-[Horizontal scalability](https://github.com/postgresml/pgcat)
@@ -142,7 +142,7 @@ docker run \
142142
sudo -u postgresml psql -d postgresml
143143
```
144144

145-
For more details, take a look at our[Quick Start with Docker](https://postgresml.org/docs/resources/developer-docs/quick-start-with-docker) documentation.
145+
For more details, take a look at our[Quick Start with Docker](https://postgresml.org/docs/open-source/pgml/developers/quick-start-with-docker) documentation.
146146

147147
#Getting Started
148148

@@ -1105,7 +1105,7 @@ pgml: SELECT logs->>'epoch' AS epoch, logs->>'step' AS step, logs->>'loss' AS lo
11051105
During training, model is periodically uploaded to Hugging Face Hub. You will find the model at`https://huggingface.co/<username>/<project_name>`. An example model that was automatically pushed to Hugging Face Hub is[here](https://huggingface.co/santiadavani/imdb_review_sentiement).
11061106

11071107
###6. Inference using fine-tuned model
1108-
Now, that we have fine-tuned model on Hugging Face Hub, we can use[`pgml.transform`](https://postgresml.org/docs/introduction/apis/sql-extensions/pgml.transform/text-classification) to perform real-time predictions as well as batch predictions.
1108+
Now, that we have fine-tuned model on Hugging Face Hub, we can use[`pgml.transform`](/docs/open-source/pgml/guides/llms/text-classification) to perform real-time predictions as well as batch predictions.
11091109

11101110
**Real-time predictions**
11111111

‎pgml-cms/blog/semantic-search-in-postgres-in-15-minutes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ SELECT pgml.embed('mixedbread-ai/mxbai-embed-large-v1', 'Generating embeddings i
5656

5757
!!!
5858

59-
We used the[pgml.embed](/docs/api/sql-extension/pgml.embed) PostresML function to generate an embedding of the sentence "Generating embeddings in Postgres is fun!" using the[mixedbread-ai/mxbai-embed-large-v1](https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1) model from mixedbread.ai.
59+
We used the[pgml.embed](/docs/open-source/pgml/api/pgml.embed) PostresML function to generate an embedding of the sentence "Generating embeddings in Postgres is fun!" using the[mixedbread-ai/mxbai-embed-large-v1](https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1) model from mixedbread.ai.
6060

6161
The output size of the vector varies per model, and in`mxbai-embed-large-v1` outputs vectors with 1024 dimensions: each vector contains 1024 floating point numbers.
6262

‎pgml-cms/blog/sentiment-analysis-using-express-js-and-postgresml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ not bad for less than an hour of coding.
146146

147147
###Final Thoughts
148148

149-
This app is far from complete but does show an easy and scalable way to get started with ML in Express. From here I encourage you to head over to our[docs](https://postgresml.org/docs/api/sql-extension/) and see what other features could be added.
149+
This app is far from complete but does show an easy and scalable way to get started with ML in Express. From here I encourage you to head over to our[docs](https://postgresml.org/docs/) and see what other features could be added.
150150

151-
If SQL is not your thing, no worries. Check out or[JS SDK](https://postgresml.org/docs/api/client-sdk/getting-started) to streamline all our best practices with simple JavaScript.&#x20;
151+
If SQL is not your thing, no worries. Check out or[JS SDK](https://postgresml.org/docs/open-source/korvus) to streamline all our best practices with simple JavaScript.&#x20;
152152

153153
We love hearing from you — please reach out to us on[Discord](https://discord.gg/DmyJP3qJ7U)or simply[Contact Us](https://postgresml.org/contact) here if you have any questions or feedback.&#x20;

‎pgml-cms/blog/using-postgresml-with-django-and-embedding-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ PostgresML allows anyone to integrate advanced AI capabilities into their applic
2828

2929
Advanced search engines like Google use this technique to extract the meaning of search queries and rank the results based on what the user actually_wants_, unlike simple keyword matches which can easily give irrelevant results.
3030

31-
To accomplish this, for each document in our app, we include an embedding column stored as a vector. A vector is just an array of floating point numbers. For each item in our to-do list, we automatically generate the embedding using the PostgresML[`pgml.embed()`](https://postgresml.org/docs/introduction/apis/sql-extensions/pgml.embed) function. This function runs inside the database and doesn't require the Django app to install the model locally.
31+
To accomplish this, for each document in our app, we include an embedding column stored as a vector. A vector is just an array of floating point numbers. For each item in our to-do list, we automatically generate the embedding using the PostgresML[`pgml.embed()`](/docs/open-source/pgml/api/pgml.embed) function. This function runs inside the database and doesn't require the Django app to install the model locally.
3232

3333
An embedding model running inside PostgresML is able to extract the meaning of search queries & compare it to the meaning of the documents it stores, just like a human being would if they were able to search millions of documents in just a few milliseconds.
3434

‎pgml-cms/docs/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,14 @@ PostgresML allows you to take advantage of the fundamental relationship between
2323

2424
These capabilities are primarily provided by two open-source software projects, that may be used independently, but are designed to be used together with the rest of the Postgres ecosystem:
2525

26-
*[**pgml**](/docs/api/sql-extension/) - an open source extension for PostgreSQL. It adds support for GPUs and the latest ML & AI algorithms_inside_ the database with a SQL API and no additional infrastructure, networking latency, or reliability costs.
27-
*[**PgCat**](/docs/product/pgcat/) - an open source connection pooler for PostgreSQL. It abstracts the scalability and reliability concerns of managing a distributed cluster of Postgres databases. Client applications connect only to the pooler, which handles load balancing, sharding, and failover, outside of any single database server.
26+
*[**pgml**](/docs/open-source/pgml/) - an open source extension for PostgreSQL. It adds support for GPUs and the latest ML & AI algorithms_inside_ the database with a SQL API and no additional infrastructure, networking latency, or reliability costs.
27+
*[**PgCat**](/docs/open-source/pgcat/) - an open source connection pooler for PostgreSQL. It abstracts the scalability and reliability concerns of managing a distributed cluster of Postgres databases. Client applications connect only to the pooler, which handles load balancing, sharding, and failover, outside of any single database server.
2828

2929
<figure><imgsrc=".gitbook/assets/architecture.png"alt="PostgresML architectural diagram"><figcaption></figcaption></figure>
3030

31-
To learn more about how we designed PostgresML, take a look at our[architecture overview](/docs/resources/architecture/).
32-
3331
##Client SDK
3432

35-
The PostgresML team also provides[native language SDKs](/docs/api/client-sdk/) which implement best practices for common ML & AI applications. The JavaScript and Python SDKs are generated from the a core Rust library, which provides a uniform API, correctness and efficiency across all environments.
33+
The PostgresML team also provides[native language SDKs](/docs/open-source/korvus/) which implement best practices for common ML & AI applications. The JavaScript and Python SDKs are generated from the a core Rust library, which provides a uniform API, correctness and efficiency across all environments.
3634

3735
While using the SDK is completely optional, SDK clients can perform advanced machine learning tasks in a single SQL request, without having to transfer additional data, models, hardware or dependencies to the client application.
3836

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp