Skip to content

Commit b237e17

Browse files
committed
deps
1 parent 66f3844 commit b237e17

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ Configuring these dataset arguments ensures that the model is trained on the app
15061506
Once the fine-tuning is completed, you will see the model in your Hugging Face repository (example: https://huggingface.co/santiadavani/fingpt-llama2-7b-chat). Since we are using LoRA to fine tune the model we only save the adapter weights (~2MB) instead of all the 7B weights (14GB) in Llama2-7b model.
15071507

15081508
## Inference
1509-
For inference, we will be utilizing the [OpenSourceAI](https://postgresml.org/docs/use-cases/opensourceai) class from the [pgml SDK](https://postgresml.org/docs/api/client-sdk/getting-started). Here's an example code snippet:
1509+
For inference, we will be utilizing the [OpenSourceAI](https://postgresml.org/docs/open-source/korvus/guides/opensourceai) class from the [pgml SDK](https://postgresml.org/docs/open-source/korvus/). Here's an example code snippet:
15101510

15111511
```python
15121512
import pgml

pgml-cms/docs/TODO/architecture/why-postgresml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ PostgresML simplifies things. By moving machine learning models to the database,
3232
</figure>
3333

3434

35-
For a detailed overview of how PostgresML works, take a look at our [architecture documentation](/docs/resources/architecture/).
35+
For a detailed overview of how PostgresML works, take a look at our [architecture documentation](/docs/).

pgml-dashboard/src/api/cms.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ lazy_static! {
6666
("introduction/getting-started/import-your-data/", "introduction/import-your-data/"),
6767
("introduction/getting-started/import-your-data/foreign-data-wrapper", "introduction/import-your-data/foreign-data-wrappers"),
6868
("use-cases/embeddings/generating-llm-embeddings-with-open-source-models-in-postgresml", "open-source/pgml/guides/embeddings/in-database-generation"),
69-
("use-cases/natural-language-processing", "open-source/pgml/guides/natural-language-processing"),
69+
("use-cases/natural-language-processing", "open-source/pgml/guides/llms/"),
7070
])
7171
);
7272
}

pgml-dashboard/src/components/navigation/navbar/marketing/template.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
];
1818

1919
let solutions_use_cases_links = vec![
20+
StaticNavLink::new("RAG".to_string(), "/rag".to_string()).icon("manage_search"),
2021
StaticNavLink::new("Search".to_string(), "/docs/open-source/pgml/guides/improve-search-results-with-machine-learning".to_string()).icon("feature_search"),
2122
StaticNavLink::new("Chatbots".to_string(), "/chatbot".to_string()).icon("smart_toy"),
2223
];
2324

2425
let solutions_tasks_links = vec![
25-
StaticNavLink::new("RAG".to_string(), "/rag".to_string()).icon("manage_search"),
26-
StaticNavLink::new("NLP".to_string(), "/docs/open-source/pgml/guides/natural-language-processing".to_string()).icon("description"),
27-
StaticNavLink::new("Supervised Learning".to_string(), "/docs/open-source/pgml/guides/supervised-learning".to_string()).icon("model_training"),
26+
StaticNavLink::new("LLMs".to_string(), "/docs/open-source/pgml/guides/llms/".to_string()).icon("token"),
2827
StaticNavLink::new("Embeddings".to_string(), "/docs/open-source/pgml/guides/embeddings/".to_string()).icon("subtitles"),
2928
StaticNavLink::new("Vector Database".to_string(), "/docs/open-source/pgml/guides/vector-database".to_string()).icon("open_with"),
29+
StaticNavLink::new("Supervised Learning".to_string(), "/docs/open-source/pgml/guides/supervised-learning/".to_string()).icon("model_training"),
3030
];
3131

3232
let company_links = vec![

pgml-dashboard/src/components/sections/footers/marketing_footer/mod.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,18 @@ impl MarketingFooter {
1717
product: vec![
1818
StaticNavLink::new("Korvus".into(), "https://github.com/postgresml/korvus".into()),
1919
StaticNavLink::new("PGML".into(), "https://github.com/postgresml/postgresml".into()),
20-
StaticNavLink::new("PpCat Learning".into(), "https://github.com/postgresml/pgcat".into()),
20+
StaticNavLink::new("PgCat".into(), "https://github.com/postgresml/pgcat".into()),
2121
StaticNavLink::new("PostgresML".into(), "/docs/cloud/overview".into()),
2222
StaticNavLink::new("VPC".into(), "/docs/cloud/enterprise/vpc".into()),
2323
],
2424
solutions: vec![
2525
StaticNavLink::new(
26-
"NLP".into(),
27-
"/docs/open-source/pgml/guides/natural-language-processing".into(),
26+
"LLMs".into(),
27+
"/docs/open-source/pgml/guides/llms/".into(),
28+
),
29+
StaticNavLink::new(
30+
"Embeddings".into(),
31+
"/docs/open-source/pgml/guides/embeddings/".into(),
2832
),
2933
StaticNavLink::new(
3034
"Supervised Learning".into(),

0 commit comments

Comments
 (0)