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

Commitf8a9c24

Browse files
Moloejoegitbook-bot
authored andcommitted
GITBOOK-103: No subject
1 parent0b87292 commitf8a9c24

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

‎pgml-cms/docs/introduction/apis/sql-extensions/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ description: >-
99

1010
##Open Source Models
1111

12-
PostgresML integrates[🤗 Hugging Face Transformers](https://huggingface.co/transformers) to bring state-of-the-art models into the data layer. There are tens of thousands of pre-trained models with pipelines to turn raw inputs into useful results. Manystate of the art deep learning architectures have been published and made available for download. You will want to browse all the[models](https://huggingface.co/models) available to find the perfect solution for your[dataset](https://huggingface.co/dataset) and[task](https://huggingface.co/tasks). The pgml extension provides a few APIs for different use cases:
12+
PostgresML integrates[🤗 Hugging Face Transformers](https://huggingface.co/transformers) to bring state-of-the-art models into the data layer. There are tens of thousands of pre-trained models with pipelines to turn raw inputs into useful results. ManyLLMs have been published and made available for download. You will want to browse all the[models](https://huggingface.co/models) available to find the perfect solution for your[dataset](https://huggingface.co/dataset) and[task](https://huggingface.co/tasks). The pgml extension provides a few APIs for different use cases:
1313

1414
*[pgml.embed.md](pgml.embed.md"mention") returns vector embeddings for nearest neighbor searches and other vector database use cases
1515
*[pgml.generate.md](pgml.generate.md"mention") returns streaming text responses for chatbots
1616
*[pgml.transform](pgml.transform/"mention") allows you to perform dozens of natural language processing (NLP) tasks with thousands of models, like sentiment analysis, question and answering, translation, summarization and text generation
17-
*[pgml.tune.md](pgml.tune.md"mention")fine tunes an open source model on your own data
17+
*[pgml.tune.md](pgml.tune.md"mention")fine tunes an open source model on your own data
1818

1919
##Train & deploy your own models
2020

‎pgml-cms/docs/introduction/apis/sql-extensions/pgml.transform/README.md‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
---
2+
layout:
3+
title:
4+
visible:true
5+
description:
6+
visible:true
7+
tableOfContents:
8+
visible:true
9+
outline:
10+
visible:true
11+
pagination:
12+
visible:true
13+
---
14+
115
#pgml.transform()
216

317
PostgresML integrates[🤗 Hugging Face Transformers](https://huggingface.co/transformers) to bring state-of-the-art models into the data layer. There are tens of thousands of pre-trained models with pipelines to turn raw inputs into useful results. Many state of the art deep learning architectures have been published and made available for download. You will want to browse all the[models](https://huggingface.co/models) available to find the perfect solution for your[dataset](https://huggingface.co/dataset) and[task](https://huggingface.co/tasks).

‎pgml-cms/docs/resources/developer-docs/contributing.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Once there, you can initialize `pgrx` and get going:
6767
####Pgrx command line and environments
6868

6969
```commandline
70-
cargo install cargo-pgrx --version "0.11.2" --locked && \
70+
cargo install cargo-pgrx --version "0.9.8" --locked && \
7171
cargo pgrx init # This will take a few minutes
7272
```
7373

‎pgml-cms/docs/resources/developer-docs/installation.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ brew bundle
3636
PostgresML is written in Rust, so you'll need to install the latest compiler from[rust-lang.org](https://rust-lang.org). Additionally, we use the Rust PostgreSQL extension framework`pgrx`, which requires some initialization steps:
3737

3838
```bash
39-
cargo install cargo-pgrx --version 0.11.2&& \
39+
cargo install cargo-pgrx --version 0.9.8&& \
4040
cargo pgrx init
4141
```
4242

@@ -288,7 +288,7 @@ We use the `pgrx` Postgres Rust extension framework, which comes with its own in
288288

289289
```bash
290290
cd pgml-extension&& \
291-
cargo install cargo-pgrx --version 0.11.2&& \
291+
cargo install cargo-pgrx --version 0.9.8&& \
292292
cargo pgrx init
293293
```
294294

‎pgml-cms/docs/resources/developer-docs/self-hosting/building-from-source.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ For a typical deployment in production, you would need to compile and install th
4545
To install`pgrx`, simply run:
4646

4747
```
48-
cargo install cargo-pgrx --version "0.11.2"
48+
cargo install cargo-pgrx --version "0.10.0"
4949
```
5050

5151
Before using`pgrx`, it needs to be initialized against the installed version of PostgreSQL. In this example, we'll be using the Ubuntu 22.04 default PostgreSQL 14 installation:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp