Update README.md
Browse files
README.md
CHANGED
@@ -24,7 +24,7 @@ The primary use of ICKG LLM is for generating knowledge graphs (KG) based on ins
|
|
24 |
- **Python Code**: [https://github.com/xiaohui-victor-li/FinDKG](https://github.com/xiaohui-victor-li/FinDKG)
|
25 |
|
26 |
## Training Details
|
27 |
-
ICKG 2.0 is fine-tuned from the latest Vicuna-7B using ~3K instruction-following demonstrations including KG construction input document and extracted KG triplets as response output.
|
28 |
|
29 |
- **Prompt Template**: The entities and relationship can be customized for specific tasks. `<input_text>` is the document text to replace.
|
30 |
|
@@ -64,7 +64,7 @@ ICKG 2.0 is fine-tuned from the latest Vicuna-7B using ~3K instruction-following
|
|
64 |
```
|
65 |
|
66 |
## Evaluation
|
67 |
-
ICKG has undergone preliminary evaluation comparing its performance to GPT-3.5, GPT-4, and the original Vicuna-7B model. With respect to the KG construction task, it outperforms GPT-3.5 and Vicuna-7B while exhibiting comparative capability as GPT-4.
|
68 |
|
69 |
For a more detailed introduction, refer to [the accompanying paper](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4608445).
|
70 |
|
|
|
24 |
- **Python Code**: [https://github.com/xiaohui-victor-li/FinDKG](https://github.com/xiaohui-victor-li/FinDKG)
|
25 |
|
26 |
## Training Details
|
27 |
+
ICKG 2.0 is fine-tuned from the latest Vicuna-7B using ~3K instruction-following demonstrations including KG construction input document and extracted KG triplets as response output. ICKG is thus learnt to extract list of KG triplets from given text document via prompt engineering. For more in-depth training details, refer to the "Generative Knowledge Graph Construction with Fine-tuned LLM" section of [the accompanying paper](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4608445).
|
28 |
|
29 |
- **Prompt Template**: The entities and relationship can be customized for specific tasks. `<input_text>` is the document text to replace.
|
30 |
|
|
|
64 |
```
|
65 |
|
66 |
## Evaluation
|
67 |
+
ICKG has undergone preliminary evaluation comparing its performance to GPT-3.5, GPT-4, and the original Vicuna-7B model. With respect to the KG construction task, it outperforms GPT-3.5 and Vicuna-7B while exhibiting comparative capability as GPT-4. ICKG excels in generating instruction-based knowledge graphs with a particular emphasis on quality and adherence to format.
|
68 |
|
69 |
For a more detailed introduction, refer to [the accompanying paper](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4608445).
|
70 |
|