|
3 | 3 | - The source code, data, and/or other artifacts are available at GitHub: https://github.com/qzc438/ontology-llm |
4 | 4 |
|
5 | 5 | ## News: |
6 | | -- This paper has been accepted by PVLDB 2025 (https://vldb.org/2025/). |
| 6 | +- This paper has been accepted by PVLDB 2025: https://dl.acm.org/doi/10.14778/3712221.3712222 |
7 | 7 | - A production version linked to the PVLDB 2025 paper can be found in the `Releases` section. |
8 | 8 | - The slide presentation can be found in the `slide_presentation` folder. |
9 | 9 |
|
10 | | - |
11 | 10 | ## Important Notice: |
12 | 11 | - For technical inquiries, please submit a GitHub issue. |
13 | 12 | - For feature discussion or potential extensions, please join our foundation model discussion group: https://groups.google.com/g/agent-om |
14 | 13 | - To track the continuous development of LLMs, we propose to use the benchmark with a timestamp tag. |
15 | 14 |
|
16 | 15 | ## Instructions: |
17 | | - |
18 | 16 | - Our experiment was run on a Dell Alienware Aurora R15. |
19 | | - - Memory: 64.0 GiB |
20 | | - - Processor: 13th Gen Intel® Core™ i9-13900KF × 32 |
21 | | - - Graphics: NVIDIA GeForce RTX™ 4090 |
| 17 | + - Memory: 64.0 GiB |
| 18 | + - Processor: 13th Gen Intel® Core™ i9-13900KF × 32 |
| 19 | + - Graphics: NVIDIA GeForce RTX™ 4090 |
22 | 20 | - Disk Capacity: 6.1 TB |
23 | | -- The operating system is Ubuntu 24.04.1 LTS. |
| 21 | +- The operating system is Ubuntu 24.04.1 LTS. |
24 | 22 | - The CUDA version is 12.2. |
25 | 23 |
|
26 | 24 | ### 1. Install PostgreSQL Database: |
@@ -79,7 +77,7 @@ pip install ipyparallel |
79 | 77 | ``` |
80 | 78 | - Deal with the blank page: https://stackoverflow.com/questions/55152948/juypter-notebook-shows-blank-page |
81 | 79 |
|
82 | | -**Author Note**: There is a known issue with the `Enchant` and `PyEnchant` libraries, we suggest using the `hunspell` and `pyhunspell` libraries instead in the `util.py`: |
| 80 | +**Author Note**: There is a known issue with the `Enchant` and `PyEnchant` libraries, we suggest using the `hunspell` and `pyhunspell` libraries instead in the `util.py`. |
83 | 81 | ``` |
84 | 82 | pip install hunspell == 0.5.5 |
85 | 83 | sudo apt install hunspell-en-gb hunspell-en-us |
@@ -211,7 +209,7 @@ vector_length = 1536 |
211 | 209 | embeddings_service = OpenAIEmbeddings(model="text-embedding-3-large") |
212 | 210 | vector_length = 3072 |
213 | 211 | ``` |
214 | | -**Author Note**: It is possible to use embedding models other than OpenAI. For example, the following works for Llama 3 embedding models: |
| 212 | +**Author Note**: It is possible to use embedding models other than OpenAI. For example, the following works for Llama 3 embedding models. |
215 | 213 | ``` |
216 | 214 | pip install langchain-ollama == 0.2.2 |
217 | 215 | ``` |
|
0 commit comments