StarkQA-PrimeKG
Class for loading StarkQAPrimeKG dataset.
StarkQAPrimeKG
Bases: Dataset
Class for loading StarkQAPrimeKG dataset. It downloads the data from the HuggingFace repo and stores it in the local directory. The data is then loaded into pandas DataFrame of QA pairs, dictionary of split indices, and node information.
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
__init__(local_dir='../../../data/starkqa_primekg/')
Constructor for StarkQAPrimeKG class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
local_dir
|
str
|
The local directory to store the dataset files. |
'../../../data/starkqa_primekg/'
|
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
_load_stark_embeddings()
Private method to load the embeddings of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
dict
|
The query embeddings of StarkQAPrimeKG dataset. |
dict
|
The node embeddings of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
|
_load_stark_repo()
Private method to load related files of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
DataFrame
|
The nodes dataframe of StarkQAPrimeKG dataset. |
dict
|
The split indices of StarkQAPrimeKG dataset. |
dict
|
The node information of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
get_node_embeddings()
Get the node embeddings of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
dict
|
The node embeddings of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
194 195 196 197 198 199 200 201 |
|
get_query_embeddings()
Get the query embeddings of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
dict
|
The query embeddings of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
185 186 187 188 189 190 191 192 |
|
get_starkqa()
Get the dataframe of StarkQAPrimeKG dataset, containing the QA pairs.
Returns:
Type | Description |
---|---|
DataFrame
|
The nodes dataframe of PrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
158 159 160 161 162 163 164 165 |
|
get_starkqa_node_info()
Get the node information of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
dict
|
The node information of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
176 177 178 179 180 181 182 183 |
|
get_starkqa_split_indicies()
Get the split indices of StarkQAPrimeKG dataset.
Returns:
Type | Description |
---|---|
dict
|
The split indices of StarkQAPrimeKG dataset. |
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
167 168 169 170 171 172 173 174 |
|
load_data()
Load the StarkQAPrimeKG dataset into pandas DataFrame of QA pairs, dictionary of split indices, and node information.
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
146 147 148 149 150 151 152 153 154 155 |
|
setup()
A method to set up the dataset.
Source code in aiagents4pharma/talk2knowledgegraphs/datasets/starkqa_primekg.py
44 45 46 47 48 49 |
|