Skip to content

Commit

Permalink
Casual -> causal (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Dec 19, 2023
1 parent da2beef commit 6ef9dd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ a family of models and suggests certain modifications to adapt the code to speci
It includes the following pipelines:

1. [Benchmarking script for large language models](./llm_bench/python/)
2. [Casual LM](./text_generation/casual_lm/cpp/)
2. [Causal LM](./text_generation/causal_lm/cpp/)
3. [OpenVINO Stable Diffuison (with LoRA) C++ pipeline](./image_generation/stable_diffusion_1_5/cpp/)

> [!NOTE]
Expand Down
6 changes: 3 additions & 3 deletions text_generation/causal_lm/cpp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Casual LM
# Causal LM

This application showcases inference of a casual language model (LM). It doesn't have many configuration options to encourage the reader to explore and modify the source code. There's a Jupyter notebook which corresponds to this pipeline and discusses how to create an LLM-powered Chatbot: https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/254-llm-chatbot.
This application showcases inference of a causal language model (LM). It doesn't have many configuration options to encourage the reader to explore and modify the source code. There's a Jupyter notebook which corresponds to this pipeline and discusses how to create an LLM-powered Chatbot: https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/254-llm-chatbot.

> [!NOTE]
> This project is not for production use.
Expand All @@ -13,7 +13,7 @@ The program loads a tokenizer, detokenizer, and a model (`.xml` and `.bin`) to O

Install OpenVINO Runtime from an archive: [Linux](https://docs.openvino.ai/2023.2/openvino_docs_install_guides_installing_openvino_from_archive_linux.html). `<INSTALL_DIR>` below refers to the extraction location.

## Build `Casual LM` and `user_ov_extensions`
## Build `Causal LM` and `user_ov_extensions`

```sh
git submodule update --init
Expand Down

0 comments on commit 6ef9dd3

Please sign in to comment.