Skip to content

Load icews

ICEWSDataLoader

Source code in TimelineKGQA/data_loader/load_icews.py
 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
class ICEWSDataLoader:
    def __init__(
        self,
        data_type="all",
        view_sector_tree_web: bool = False,
        token: str = "",
        queue_name: str = "",
        db_connection_str: str = DB_CONNECTION_STR,
    ):
        self.engine = create_engine(db_connection_str)
        self.data_type = data_type
        self.view_sector_tree_web = view_sector_tree_web
        self.api = API(token=token)
        self.queue_name = queue_name

    def icews_load_data(self):
        """
        Before doing anything, you will need to download the ICEWS data from the Harvard Dataverse.

        Data name is: "ICEWS Coded Event Data",
            https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/28075

        After downloading the data, extract the zip file and put the data in the following directory:
            TimelineKGQA/TimelineKGQA/data/icews_events_data/ICEWS/ICEWS Coded Event Data

        :return:
        """

        if self.data_type == "all" or self.data_type == "icews":

            # loop the folder, and unzip all the files ending with .zip
            # it will override the data if it is running twice
            for file in os.listdir(DATA_ICEWS_EVENTS_DATA_DIR):
                if file.endswith(".zip"):
                    # unzip the file
                    zip_path = DATA_ICEWS_EVENTS_DATA_DIR / file
                    logger.info(f"Unzipping {zip_path}")
                    with zipfile.ZipFile(zip_path, "r") as zip_ref:
                        zip_ref.extractall(DATA_ICEWS_EVENTS_DATA_DIR)

            # read all .tab or .csv files into the df and check their column distribution
            # pandas read from tab, csv files
            # have done the check, all files have the consistent same column names
            combined_df = None
            for file in os.listdir(DATA_ICEWS_EVENTS_DATA_DIR):
                if file.endswith(".tab") or file.endswith(".csv"):
                    tab_path = DATA_ICEWS_EVENTS_DATA_DIR / file
                    logger.info(f"Reading {tab_path}")
                    df = pd.read_csv(tab_path, sep="\t", low_memory=False)
                    if combined_df is None:
                        combined_df = df
                    else:
                        # combine df and combined_df
                        combined_df = pd.concat([combined_df, df], ignore_index=True)
            logger.info("Loading data into database")
            combined_df.to_sql(
                "icews", con=self.engine, if_exists="replace", index=False
            )

        if self.data_type == "all" or self.data_type == "icews_dicts":
            # load the ICEWS Dictionaries into the database for further review
            logger.info("Loading dictionaries into database")
            # loop all the files in the directory, and saving them into the database
            for file in os.listdir(DATA_ICEWS_DICTS_DATA_DIR):
                if file.endswith(".csv"):
                    csv_path = DATA_ICEWS_DICTS_DATA_DIR / file
                    logger.info(f"Reading {csv_path}")
                    # if sector in the file name, then the csv do not have header
                    if "sector" in file:
                        df = pd.read_csv(csv_path, header=None, low_memory=False)
                    else:
                        df = pd.read_csv(csv_path, low_memory=False)
                    table_name = file.rsplit(".", 2)[0].replace(".", "_")
                    logger.info(f"Loading {table_name} into database")
                    if "id" not in df.columns:
                        df["id"] = range(1, 1 + len(df))
                    df.to_sql(
                        table_name, con=self.engine, if_exists="replace", index=False
                    )

    def icews_explore_data(self):
        """
        Read the ICEWS_Sector, as it is a tree, plot a tree for this.
        :return:
        """

        df = pd.read_sql_table("icews_sectors", con=self.engine)
        # Initialize lists to hold the transformed data
        names = []
        parents = []

        logger.info(df.head())

        # Track the last seen name at each level to establish parent-child relationships
        last_seen = {-1: ""}  # Root has no name

        # Iterate over the rows in the original dataframe
        for _, row in df.iterrows():
            for level in range(len(row)):
                logger.info(f"Level: {level}")
                # Check if the cell is not empty
                if not pd.isnull(row[level]):
                    # This level's name
                    name = row[level]
                    # Parent is the last seen name in the previous level
                    parent = last_seen[level - 1]
                    # Update this level's last seen name
                    last_seen[level] = name
                    # If this name at this level is not already added, add it to the lists
                    if (name not in names) or parents[names.index(name)] != parent:
                        names.append(name)
                        parents.append(parent)
                    break  # Move to the next row once the first non-empty cell is processed

        # Creating a new dataframe from the transformed data
        transformed_df = pd.DataFrame({"name": names, "parent": parents})

        # Display the first few rows of the transformed dataframe
        logger.info(transformed_df.head())

        # Creating a tree diagram with Plotly
        fig = go.Figure(
            go.Treemap(
                labels=transformed_df["name"],
                parents=transformed_df["parent"],
            )
        )

        fig.update_layout(margin=dict(t=0, l=0, r=0, b=0))

        if self.view_sector_tree_web:
            fig.show()

    def icews_actor_unified_kg(self):
        """
        run sql query
        ```sql
        CREATE TABLE unified_kg_icews_actor AS
        SELECT
            "Actor Name" AS subject,
            json_build_object('Country', "Country", 'Aliases', "Aliases") AS subject_json,
            'Affiliation To' AS predicate,
            '{}'::json AS predicate_json, -- Correctly cast empty JSON object
            "Affiliation To" AS object,
            '{}'::json AS object_json, -- Correctly cast empty JSON object
            "Affiliation Start Date" AS start_time,
            "Affiliation End Date" AS end_time
        FROM
            icews_actors;
        ```
        :return:
        """
        cursor = self.engine.connect()
        cursor.execute(
            text(
                """
            DO
            $$
                BEGIN
                    -- Attempt to create the table if it doesn't exist
                    -- This part only creates the table structure
                    IF NOT EXISTS (SELECT FROM pg_tables WHERE schemaname = 'public' AND tablename = 'unified_kg_icews_actor') THEN
                        CREATE TABLE public.unified_kg_icews_actor
                        (
                            id             SERIAL PRIMARY KEY,
                            subject        TEXT,
                            subject_json   JSON,
                            predicate      TEXT,
                            predicate_json JSON DEFAULT '{}'::json,
                            object         TEXT,
                            object_json    JSON DEFAULT '{}'::json,
                            start_time     TEXT,
                            end_time       TEXT
                        );
                    END IF;
                    TRUNCATE TABLE public.unified_kg_icews_actor;
                    INSERT INTO unified_kg_icews_actor(
                        subject,
                        subject_json,
                        predicate,
                        predicate_json,
                        object,
                        object_json,
                        start_time,
                        end_time
                    )
                    SELECT
                        "Actor Name" AS subject,
                        json_build_object('Country', "Country", 'Aliases', "Aliases") AS subject_json,
                        'Affiliation To' AS predicate,
                        '{}'::json AS predicate_json, -- Correctly cast empty JSON object
                        "Affiliation To" AS object,
                        '{}'::json AS object_json, -- Correctly cast empty JSON object
                        "Affiliation Start Date" AS start_time,
                        "Affiliation End Date" AS end_time
                    FROM
                        icews_actors;
                END
            $$;

            """
            )
        )
        cursor.commit()
        cursor.close()

    def icews_actor_queue_embedding(
        self, model_name: str = "Mixtral-8x7b", embedding_field_name: str = None
    ):
        """
        embedding iceews actors with several models, add columns to original table
        embedding content will be subject affiliated to object
        :return:
        """
        # add a json field for the embedding, then we can have {"model_name": "embedding"}
        if embedding_field_name is None:
            embedding_field_name = model_name.replace("-", "_")

        self.__db_embedding_field(embedding_field_name)
        # get the one that has not been embedded with SQL, embedding?.model_name is null
        with self.engine.connect() as conn:
            r = conn.execute(
                text(
                    f"""
                        SELECT *
                        FROM icews_actors
                        WHERE {embedding_field_name} IS NULL
                        ORDER BY id
                        DESC
                        ;
                        """
                )
            )

            prompts = []
            logger.info(self.queue_name)
            logger.info(model_name)
            for row in r.mappings():
                logger.debug(row)
                # record_id = row["id"]
                subject = row["Actor Name"]
                object = row["Affiliation To"]
                prompt = f"{subject} affiliated to {object}"
                prompts.append(prompt)

            # every 100 prompts, send to the queue
            for i in range(0, len(prompts), 100):
                if i + 100 > len(prompts):
                    queued_prompts = prompts[i:]
                else:
                    queued_prompts = prompts[i : i + 100]
                response = self.api.queue_create_embedding(
                    queued_prompts,
                    model_name=model_name,
                    name=self.queue_name,
                )
                time.sleep(0.3)
                logger.info(response)

    def icews_actor_queue_actor_name_embedding(
        self,
        model_name: str = "bert",
        field_name: str = "Actor Name",
        embedding_field_name: str = None,
    ):
        """
        embedding iceews actors with several models, add columns to original table
        embedding content will be subject affiliated to object
        :return:
        """
        if embedding_field_name is None:
            embedding_field_name = model_name.replace("-", "_")

        # get the one that has not been embedded with SQL, embedding?.model_name is null
        with self.engine.connect() as conn:
            r = conn.execute(
                text(
                    f"""
                        SELECT "{field_name}"
                        FROM icews_actors
                        WHERE "{embedding_field_name}" IS NULL
                        GROUP BY "{field_name}"
                        ;
                        """
                )
            )

            prompts = []
            logger.info(self.queue_name)
            logger.info(model_name)
            for row in r.mappings():
                prompt = row[field_name]
                prompts.append(prompt)

            # every 100 prompts, send to the queue
            for i in range(0, len(prompts), 100):
                if i + 100 > len(prompts):
                    response = self.api.queue_create_embedding(
                        prompts[i:], model_name=model_name, name=self.queue_name
                    )
                else:
                    response = self.api.queue_create_embedding(
                        prompts[i : i + 100],
                        model_name=model_name,
                        name=self.queue_name,
                    )
                    logger.info(response)
                time.sleep(0.3)

    def icews_actor_embedding_csv(
        self,
        queue_embedding_filename: str,
        model_name: str,
        embedding_field_name: str = None,
        prompt_field: str = None,
    ):
        """
        Load the embedding from the queue into the database
        :param queue_embedding_filename:
        :param model_name:
        :param embedding_field_name:
        :return:
        """
        if embedding_field_name is None:
            embedding_field_name = model_name.replace("-", "_")
        self.__db_embedding_field(embedding_field_name)
        conn = self.engine.connect()
        df = pd.read_csv(DATA_DIR / "ICEWS" / "processed" / queue_embedding_filename)
        for _, row in df.iterrows():
            if row["model_name"] != model_name:
                continue

            if model_name == "bert":
                embedding = json.loads(json.loads(row["response"]))["embedding"]
            else:
                embedding = json.loads(json.loads(row["response"]))["data"][0][
                    "embedding"
                ]
            logger.debug(embedding)

            if prompt_field is None:
                prompt = row["prompt"]
                subject = prompt.split(" affiliated to ")[0].replace("'", "''")
                object = prompt.split(" affiliated to ")[1].replace("'", "''")
                # update the embedding column
                conn.execute(
                    text(
                        f"""
                        UPDATE icews_actors
                        SET {embedding_field_name} = array{embedding}::vector
                        WHERE "Actor Name" = '{subject}' AND "Affiliation To" = '{object}';
                        """
                    )
                )
            else:
                prompt = row["prompt"]
                prompt = prompt.replace("'", "''")
                conn.execute(
                    text(
                        f"""
                        UPDATE icews_actors
                        SET {embedding_field_name} = array{embedding}::vector
                        WHERE "{prompt_field}" = '{prompt}';
                        """
                    )
                )
            conn.commit()

    def __db_embedding_field(self, embedding_field_name: str):
        add_embedding_column_sql = f"""
        DO $$
        BEGIN
            IF NOT EXISTS (
                SELECT FROM information_schema.columns
                WHERE table_name = 'icews_actors' AND column_name = '{embedding_field_name}' AND table_schema = 'public'
            ) THEN
                ALTER TABLE public.icews_actors ADD COLUMN {embedding_field_name} vector;
            END IF;
        END
        $$;
        """
        cursor = self.engine.connect()
        cursor.execute(text(add_embedding_column_sql))
        cursor.commit()
        cursor.close()

    def __icews_actor_bert_embedding(self, prompt: str):
        """
        Use the BERT model to embed the ICEWS actors
        :return:
        """
        # Load pre-trained model tokenizer (vocabulary)
        # Generate embeddings
        model = SentenceTransformer("all-MiniLM-L6-v2")
        embeddings = model.encode(prompt)
        return embeddings.tolist()

    @staticmethod
    def __similarity_to_color(value):
        """
        Returns an RGB color tuple (r, g, b) based on the given value between 0 and 1.
        The color gradient transitions from red (for 0) to green (for 1).
        """
        # Clamp the value between 0 and 1
        value = max(0, min(1, value))

        # Map the value to the hue range (0 to 120)
        hue = (value) * 1.2  # Scaling factor to adjust the hue range

        # Convert the hue to RGB color tuple
        rgb = colorsys.hsv_to_rgb(hue / 3, 1, 1)  # HSV to RGB conversion

        # Convert RGB values to integers between 0 and 255
        rgb = tuple(int(c * 255) for c in rgb)

        return rgb

    # @staticmethod
    # def __similarity_to_color(similarity):
    #     # Assuming similarity ranges from -1 to 1, normalize to 0-1
    #     # normalized_similarity = (similarity + 1) / 2
    #     # Use a colormap (e.g., 'RdYlGn' for Red-Yellow-Green)
    #     return plt.get_cmap("viridis")(similarity)

    def icews_actor_entity_resolution_check(self):
        """
        Check the entity resolution for the ICEWS actors
        :return:
        """
        pass

    def icews_actor_subject_count_distribution(
        self,
        actor_name: str,
        semantic_search: bool = False,
        model_name: str = "bert",
        embedding_field_name: str = None,
    ):
        """
        Get all records for the actor_name and present the occurrence across a timeline.
        X-axis: Year
        Y-axis: Month
        When hovering over a point, it shows the value of "Affiliation To".
        """
        if embedding_field_name is None:
            embedding_field_name = model_name.replace("-", "_")
        if not semantic_search:
            # SQL query to get all records for the specified actor_name
            get_all_records_for_actor_name = f"""
            SELECT
            "Actor Name",
            "Affiliation Start Date",
            "Affiliation End Date",
            "Affiliation To",
            {embedding_field_name} as embedding
            FROM icews_actors WHERE "Actor Name" = '{actor_name}';
            """
            # Execute the query
            actor_df = pd.read_sql_query(
                get_all_records_for_actor_name, con=self.engine
            )
        else:
            # get the embedding of the actor_name
            if model_name == "bert":
                actor_name_embedding = self.__icews_actor_bert_embedding(actor_name)
            else:
                actor_name_embedding = self.api.queue_embedding_and_wait_for_result(
                    [actor_name], model_name=model_name, name="tkgqa"
                )
            # query
            get_relevant_records_for_actor_name = f"""
            SELECT
            "Actor Name"
            FROM icews_actors
            WHERE {embedding_field_name} IS NOT NULL
            ORDER BY {embedding_field_name} <-> array{actor_name_embedding}::vector
            LIMIT 10;
            """
            # Execute the query
            related_actors = pd.read_sql_query(
                get_relevant_records_for_actor_name, con=self.engine
            )
            # find the one with the highest occurrence in the records for 'Actor Name' field
            # voting in RAG
            vote_winner = related_actors["Actor Name"].value_counts().idxmax()
            logger.info(f"Vote Winner: {vote_winner}")
            get_all_records_for_actor_name = f"""
                        SELECT
                        "Actor Name",
                        "Affiliation Start Date",
                        "Affiliation End Date",
                        "Affiliation To",
                        {model_name.replace("-", "_")} as embedding
                        FROM icews_actors WHERE "Actor Name" = '{vote_winner}';
                        """
            # Execute the query
            actor_df = pd.read_sql_query(
                get_all_records_for_actor_name, con=self.engine
            )

        # Replace placeholders with extreme dates for ease of handling
        actor_df["Affiliation Start Date"] = actor_df["Affiliation Start Date"].replace(
            "beginning of time", "1990-01-01"
        )
        actor_df["Affiliation End Date"] = actor_df["Affiliation End Date"].replace(
            "end of time", "2025-12-31"
        )

        # Convert dates to datetime format
        actor_df["Affiliation Start Date"] = pd.to_datetime(
            actor_df["Affiliation Start Date"]
        )
        actor_df["Affiliation End Date"] = pd.to_datetime(
            actor_df["Affiliation End Date"]
        )

        # Extract year and month for both start and end dates
        actor_df["start_year"] = actor_df["Affiliation Start Date"].dt.year
        actor_df["start_month"] = actor_df["Affiliation Start Date"].dt.month
        actor_df["end_year"] = actor_df["Affiliation End Date"].dt.year
        actor_df["end_month"] = actor_df["Affiliation End Date"].dt.month

        # order by start year and month
        actor_df = actor_df.sort_values(by=["start_year", "start_month"])
        actor_df = actor_df.reset_index(drop=True)

        # Prepare a figure object
        fig = go.Figure()
        first_embedding_value = actor_df.iloc[0]["embedding"]
        logger.info(type(first_embedding_value))
        first_embedding_value = torch.tensor(eval(first_embedding_value))
        logger.info(first_embedding_value.shape)
        # Iterate over each record to plot it
        embeddings = []
        for index, row in actor_df.iterrows():
            # Adding a line for each affiliation duration
            logger.info(row["start_year"])
            logger.info(index)
            embedding_value = row["embedding"]
            if type(embedding_value) is str:
                embedding_value = eval(embedding_value)
            embedding_value = torch.tensor(embedding_value)
            similarity = torch.nn.functional.cosine_similarity(
                torch.tensor(first_embedding_value),
                torch.tensor(embedding_value),
                dim=0,
            )
            embeddings.append(embedding_value)
            logger.info(f"Similarity: {similarity}")
            line_color = self.__similarity_to_color(similarity)
            fig.add_trace(
                go.Scatter(
                    x=[
                        row["start_year"] + row["start_month"] / 12,
                        row["end_year"] + row["end_month"] / 12,
                    ],
                    y=[index + 1, index + 1],
                    mode="lines+markers+text",  # Keep markers and text in the mode
                    line=dict(color="rgb" + str(line_color[:3]), width=4),
                    name=row["Affiliation To"],
                    hoverinfo="text",
                    text=[
                        f"{row['Actor Name']} Affiliation To: {row['Affiliation To']}<br>Start: {row['start_year']}-{row['start_month']}<br>End: {row['end_year']}-{row['end_month']} <br>Similarity: {similarity:.2f}",
                        "",  # No text for the end point
                    ],
                    textposition="top center",  # Adjust as needed for the starting point
                )
            )
        min_start_year = (
            actor_df["start_year"].min() + actor_df["start_month"].min() / 12 - 5
        )  # Extend left by subtracting 1
        max_end_year = (
            actor_df["end_year"].max() + actor_df["end_month"].max() / 12 + 5
        )  # Optionally extend right
        max_index = (
            actor_df.index.max() + 1
        )  # Assuming index is continuous and starts from 0

        # Update layout for readability and adjust x and y axis ranges
        fig.update_layout(
            title=f"Affiliation Timeline for {actor_name}",
            xaxis_title="Year",
            yaxis_title="Index",
            xaxis=dict(
                range=[min_start_year, max_end_year]  # Extend the x-axis to the left
            ),
            yaxis=dict(
                range=[0, max_index + 2],  # Extend the y-axis to the top
                tickmode="array",
                tickvals=actor_df.index.tolist(),
                ticktext=actor_df.index.tolist(),
            ),
        )

        fig.show()

        # calculate the similarity between the embeddings
        embeddings = torch.stack(embeddings)
        similarity_matrix = torch.mm(embeddings, embeddings.T)
        logger.info(similarity_matrix.shape)
        # visualize the similarity matrix
        fig = px.imshow(similarity_matrix)
        fig.show()

    def icews_actor_entity_timeline(self, actor_name: str):
        """
        SELECT * FROM icews_actors WHERE "Actor Name" = actor_name;
        :param actor_name:
        :return:
        """
        pass

__icews_actor_bert_embedding(prompt)

Use the BERT model to embed the ICEWS actors :return:

Source code in TimelineKGQA/data_loader/load_icews.py
412
413
414
415
416
417
418
419
420
421
def __icews_actor_bert_embedding(self, prompt: str):
    """
    Use the BERT model to embed the ICEWS actors
    :return:
    """
    # Load pre-trained model tokenizer (vocabulary)
    # Generate embeddings
    model = SentenceTransformer("all-MiniLM-L6-v2")
    embeddings = model.encode(prompt)
    return embeddings.tolist()

__similarity_to_color(value) staticmethod

Returns an RGB color tuple (r, g, b) based on the given value between 0 and 1. The color gradient transitions from red (for 0) to green (for 1).

Source code in TimelineKGQA/data_loader/load_icews.py
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
@staticmethod
def __similarity_to_color(value):
    """
    Returns an RGB color tuple (r, g, b) based on the given value between 0 and 1.
    The color gradient transitions from red (for 0) to green (for 1).
    """
    # Clamp the value between 0 and 1
    value = max(0, min(1, value))

    # Map the value to the hue range (0 to 120)
    hue = (value) * 1.2  # Scaling factor to adjust the hue range

    # Convert the hue to RGB color tuple
    rgb = colorsys.hsv_to_rgb(hue / 3, 1, 1)  # HSV to RGB conversion

    # Convert RGB values to integers between 0 and 255
    rgb = tuple(int(c * 255) for c in rgb)

    return rgb

icews_actor_embedding_csv(queue_embedding_filename, model_name, embedding_field_name=None, prompt_field=None)

Load the embedding from the queue into the database :param queue_embedding_filename: :param model_name: :param embedding_field_name: :return:

Source code in TimelineKGQA/data_loader/load_icews.py
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
def icews_actor_embedding_csv(
    self,
    queue_embedding_filename: str,
    model_name: str,
    embedding_field_name: str = None,
    prompt_field: str = None,
):
    """
    Load the embedding from the queue into the database
    :param queue_embedding_filename:
    :param model_name:
    :param embedding_field_name:
    :return:
    """
    if embedding_field_name is None:
        embedding_field_name = model_name.replace("-", "_")
    self.__db_embedding_field(embedding_field_name)
    conn = self.engine.connect()
    df = pd.read_csv(DATA_DIR / "ICEWS" / "processed" / queue_embedding_filename)
    for _, row in df.iterrows():
        if row["model_name"] != model_name:
            continue

        if model_name == "bert":
            embedding = json.loads(json.loads(row["response"]))["embedding"]
        else:
            embedding = json.loads(json.loads(row["response"]))["data"][0][
                "embedding"
            ]
        logger.debug(embedding)

        if prompt_field is None:
            prompt = row["prompt"]
            subject = prompt.split(" affiliated to ")[0].replace("'", "''")
            object = prompt.split(" affiliated to ")[1].replace("'", "''")
            # update the embedding column
            conn.execute(
                text(
                    f"""
                    UPDATE icews_actors
                    SET {embedding_field_name} = array{embedding}::vector
                    WHERE "Actor Name" = '{subject}' AND "Affiliation To" = '{object}';
                    """
                )
            )
        else:
            prompt = row["prompt"]
            prompt = prompt.replace("'", "''")
            conn.execute(
                text(
                    f"""
                    UPDATE icews_actors
                    SET {embedding_field_name} = array{embedding}::vector
                    WHERE "{prompt_field}" = '{prompt}';
                    """
                )
            )
        conn.commit()

icews_actor_entity_resolution_check()

Check the entity resolution for the ICEWS actors :return:

Source code in TimelineKGQA/data_loader/load_icews.py
450
451
452
453
454
455
def icews_actor_entity_resolution_check(self):
    """
    Check the entity resolution for the ICEWS actors
    :return:
    """
    pass

icews_actor_entity_timeline(actor_name)

SELECT * FROM icews_actors WHERE "Actor Name" = actor_name; :param actor_name: :return:

Source code in TimelineKGQA/data_loader/load_icews.py
630
631
632
633
634
635
636
def icews_actor_entity_timeline(self, actor_name: str):
    """
    SELECT * FROM icews_actors WHERE "Actor Name" = actor_name;
    :param actor_name:
    :return:
    """
    pass

icews_actor_queue_actor_name_embedding(model_name='bert', field_name='Actor Name', embedding_field_name=None)

embedding iceews actors with several models, add columns to original table embedding content will be subject affiliated to object :return:

Source code in TimelineKGQA/data_loader/load_icews.py
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
def icews_actor_queue_actor_name_embedding(
    self,
    model_name: str = "bert",
    field_name: str = "Actor Name",
    embedding_field_name: str = None,
):
    """
    embedding iceews actors with several models, add columns to original table
    embedding content will be subject affiliated to object
    :return:
    """
    if embedding_field_name is None:
        embedding_field_name = model_name.replace("-", "_")

    # get the one that has not been embedded with SQL, embedding?.model_name is null
    with self.engine.connect() as conn:
        r = conn.execute(
            text(
                f"""
                    SELECT "{field_name}"
                    FROM icews_actors
                    WHERE "{embedding_field_name}" IS NULL
                    GROUP BY "{field_name}"
                    ;
                    """
            )
        )

        prompts = []
        logger.info(self.queue_name)
        logger.info(model_name)
        for row in r.mappings():
            prompt = row[field_name]
            prompts.append(prompt)

        # every 100 prompts, send to the queue
        for i in range(0, len(prompts), 100):
            if i + 100 > len(prompts):
                response = self.api.queue_create_embedding(
                    prompts[i:], model_name=model_name, name=self.queue_name
                )
            else:
                response = self.api.queue_create_embedding(
                    prompts[i : i + 100],
                    model_name=model_name,
                    name=self.queue_name,
                )
                logger.info(response)
            time.sleep(0.3)

icews_actor_queue_embedding(model_name='Mixtral-8x7b', embedding_field_name=None)

embedding iceews actors with several models, add columns to original table embedding content will be subject affiliated to object :return:

Source code in TimelineKGQA/data_loader/load_icews.py
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
def icews_actor_queue_embedding(
    self, model_name: str = "Mixtral-8x7b", embedding_field_name: str = None
):
    """
    embedding iceews actors with several models, add columns to original table
    embedding content will be subject affiliated to object
    :return:
    """
    # add a json field for the embedding, then we can have {"model_name": "embedding"}
    if embedding_field_name is None:
        embedding_field_name = model_name.replace("-", "_")

    self.__db_embedding_field(embedding_field_name)
    # get the one that has not been embedded with SQL, embedding?.model_name is null
    with self.engine.connect() as conn:
        r = conn.execute(
            text(
                f"""
                    SELECT *
                    FROM icews_actors
                    WHERE {embedding_field_name} IS NULL
                    ORDER BY id
                    DESC
                    ;
                    """
            )
        )

        prompts = []
        logger.info(self.queue_name)
        logger.info(model_name)
        for row in r.mappings():
            logger.debug(row)
            # record_id = row["id"]
            subject = row["Actor Name"]
            object = row["Affiliation To"]
            prompt = f"{subject} affiliated to {object}"
            prompts.append(prompt)

        # every 100 prompts, send to the queue
        for i in range(0, len(prompts), 100):
            if i + 100 > len(prompts):
                queued_prompts = prompts[i:]
            else:
                queued_prompts = prompts[i : i + 100]
            response = self.api.queue_create_embedding(
                queued_prompts,
                model_name=model_name,
                name=self.queue_name,
            )
            time.sleep(0.3)
            logger.info(response)

icews_actor_subject_count_distribution(actor_name, semantic_search=False, model_name='bert', embedding_field_name=None)

Get all records for the actor_name and present the occurrence across a timeline. X-axis: Year Y-axis: Month When hovering over a point, it shows the value of "Affiliation To".

Source code in TimelineKGQA/data_loader/load_icews.py
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def icews_actor_subject_count_distribution(
    self,
    actor_name: str,
    semantic_search: bool = False,
    model_name: str = "bert",
    embedding_field_name: str = None,
):
    """
    Get all records for the actor_name and present the occurrence across a timeline.
    X-axis: Year
    Y-axis: Month
    When hovering over a point, it shows the value of "Affiliation To".
    """
    if embedding_field_name is None:
        embedding_field_name = model_name.replace("-", "_")
    if not semantic_search:
        # SQL query to get all records for the specified actor_name
        get_all_records_for_actor_name = f"""
        SELECT
        "Actor Name",
        "Affiliation Start Date",
        "Affiliation End Date",
        "Affiliation To",
        {embedding_field_name} as embedding
        FROM icews_actors WHERE "Actor Name" = '{actor_name}';
        """
        # Execute the query
        actor_df = pd.read_sql_query(
            get_all_records_for_actor_name, con=self.engine
        )
    else:
        # get the embedding of the actor_name
        if model_name == "bert":
            actor_name_embedding = self.__icews_actor_bert_embedding(actor_name)
        else:
            actor_name_embedding = self.api.queue_embedding_and_wait_for_result(
                [actor_name], model_name=model_name, name="tkgqa"
            )
        # query
        get_relevant_records_for_actor_name = f"""
        SELECT
        "Actor Name"
        FROM icews_actors
        WHERE {embedding_field_name} IS NOT NULL
        ORDER BY {embedding_field_name} <-> array{actor_name_embedding}::vector
        LIMIT 10;
        """
        # Execute the query
        related_actors = pd.read_sql_query(
            get_relevant_records_for_actor_name, con=self.engine
        )
        # find the one with the highest occurrence in the records for 'Actor Name' field
        # voting in RAG
        vote_winner = related_actors["Actor Name"].value_counts().idxmax()
        logger.info(f"Vote Winner: {vote_winner}")
        get_all_records_for_actor_name = f"""
                    SELECT
                    "Actor Name",
                    "Affiliation Start Date",
                    "Affiliation End Date",
                    "Affiliation To",
                    {model_name.replace("-", "_")} as embedding
                    FROM icews_actors WHERE "Actor Name" = '{vote_winner}';
                    """
        # Execute the query
        actor_df = pd.read_sql_query(
            get_all_records_for_actor_name, con=self.engine
        )

    # Replace placeholders with extreme dates for ease of handling
    actor_df["Affiliation Start Date"] = actor_df["Affiliation Start Date"].replace(
        "beginning of time", "1990-01-01"
    )
    actor_df["Affiliation End Date"] = actor_df["Affiliation End Date"].replace(
        "end of time", "2025-12-31"
    )

    # Convert dates to datetime format
    actor_df["Affiliation Start Date"] = pd.to_datetime(
        actor_df["Affiliation Start Date"]
    )
    actor_df["Affiliation End Date"] = pd.to_datetime(
        actor_df["Affiliation End Date"]
    )

    # Extract year and month for both start and end dates
    actor_df["start_year"] = actor_df["Affiliation Start Date"].dt.year
    actor_df["start_month"] = actor_df["Affiliation Start Date"].dt.month
    actor_df["end_year"] = actor_df["Affiliation End Date"].dt.year
    actor_df["end_month"] = actor_df["Affiliation End Date"].dt.month

    # order by start year and month
    actor_df = actor_df.sort_values(by=["start_year", "start_month"])
    actor_df = actor_df.reset_index(drop=True)

    # Prepare a figure object
    fig = go.Figure()
    first_embedding_value = actor_df.iloc[0]["embedding"]
    logger.info(type(first_embedding_value))
    first_embedding_value = torch.tensor(eval(first_embedding_value))
    logger.info(first_embedding_value.shape)
    # Iterate over each record to plot it
    embeddings = []
    for index, row in actor_df.iterrows():
        # Adding a line for each affiliation duration
        logger.info(row["start_year"])
        logger.info(index)
        embedding_value = row["embedding"]
        if type(embedding_value) is str:
            embedding_value = eval(embedding_value)
        embedding_value = torch.tensor(embedding_value)
        similarity = torch.nn.functional.cosine_similarity(
            torch.tensor(first_embedding_value),
            torch.tensor(embedding_value),
            dim=0,
        )
        embeddings.append(embedding_value)
        logger.info(f"Similarity: {similarity}")
        line_color = self.__similarity_to_color(similarity)
        fig.add_trace(
            go.Scatter(
                x=[
                    row["start_year"] + row["start_month"] / 12,
                    row["end_year"] + row["end_month"] / 12,
                ],
                y=[index + 1, index + 1],
                mode="lines+markers+text",  # Keep markers and text in the mode
                line=dict(color="rgb" + str(line_color[:3]), width=4),
                name=row["Affiliation To"],
                hoverinfo="text",
                text=[
                    f"{row['Actor Name']} Affiliation To: {row['Affiliation To']}<br>Start: {row['start_year']}-{row['start_month']}<br>End: {row['end_year']}-{row['end_month']} <br>Similarity: {similarity:.2f}",
                    "",  # No text for the end point
                ],
                textposition="top center",  # Adjust as needed for the starting point
            )
        )
    min_start_year = (
        actor_df["start_year"].min() + actor_df["start_month"].min() / 12 - 5
    )  # Extend left by subtracting 1
    max_end_year = (
        actor_df["end_year"].max() + actor_df["end_month"].max() / 12 + 5
    )  # Optionally extend right
    max_index = (
        actor_df.index.max() + 1
    )  # Assuming index is continuous and starts from 0

    # Update layout for readability and adjust x and y axis ranges
    fig.update_layout(
        title=f"Affiliation Timeline for {actor_name}",
        xaxis_title="Year",
        yaxis_title="Index",
        xaxis=dict(
            range=[min_start_year, max_end_year]  # Extend the x-axis to the left
        ),
        yaxis=dict(
            range=[0, max_index + 2],  # Extend the y-axis to the top
            tickmode="array",
            tickvals=actor_df.index.tolist(),
            ticktext=actor_df.index.tolist(),
        ),
    )

    fig.show()

    # calculate the similarity between the embeddings
    embeddings = torch.stack(embeddings)
    similarity_matrix = torch.mm(embeddings, embeddings.T)
    logger.info(similarity_matrix.shape)
    # visualize the similarity matrix
    fig = px.imshow(similarity_matrix)
    fig.show()

icews_actor_unified_kg()

run sql query

CREATE TABLE unified_kg_icews_actor AS
SELECT
    "Actor Name" AS subject,
    json_build_object('Country', "Country", 'Aliases', "Aliases") AS subject_json,
    'Affiliation To' AS predicate,
    '{}'::json AS predicate_json, -- Correctly cast empty JSON object
    "Affiliation To" AS object,
    '{}'::json AS object_json, -- Correctly cast empty JSON object
    "Affiliation Start Date" AS start_time,
    "Affiliation End Date" AS end_time
FROM
    icews_actors;
:return:

Source code in TimelineKGQA/data_loader/load_icews.py
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
def icews_actor_unified_kg(self):
    """
    run sql query
    ```sql
    CREATE TABLE unified_kg_icews_actor AS
    SELECT
        "Actor Name" AS subject,
        json_build_object('Country', "Country", 'Aliases', "Aliases") AS subject_json,
        'Affiliation To' AS predicate,
        '{}'::json AS predicate_json, -- Correctly cast empty JSON object
        "Affiliation To" AS object,
        '{}'::json AS object_json, -- Correctly cast empty JSON object
        "Affiliation Start Date" AS start_time,
        "Affiliation End Date" AS end_time
    FROM
        icews_actors;
    ```
    :return:
    """
    cursor = self.engine.connect()
    cursor.execute(
        text(
            """
        DO
        $$
            BEGIN
                -- Attempt to create the table if it doesn't exist
                -- This part only creates the table structure
                IF NOT EXISTS (SELECT FROM pg_tables WHERE schemaname = 'public' AND tablename = 'unified_kg_icews_actor') THEN
                    CREATE TABLE public.unified_kg_icews_actor
                    (
                        id             SERIAL PRIMARY KEY,
                        subject        TEXT,
                        subject_json   JSON,
                        predicate      TEXT,
                        predicate_json JSON DEFAULT '{}'::json,
                        object         TEXT,
                        object_json    JSON DEFAULT '{}'::json,
                        start_time     TEXT,
                        end_time       TEXT
                    );
                END IF;
                TRUNCATE TABLE public.unified_kg_icews_actor;
                INSERT INTO unified_kg_icews_actor(
                    subject,
                    subject_json,
                    predicate,
                    predicate_json,
                    object,
                    object_json,
                    start_time,
                    end_time
                )
                SELECT
                    "Actor Name" AS subject,
                    json_build_object('Country', "Country", 'Aliases', "Aliases") AS subject_json,
                    'Affiliation To' AS predicate,
                    '{}'::json AS predicate_json, -- Correctly cast empty JSON object
                    "Affiliation To" AS object,
                    '{}'::json AS object_json, -- Correctly cast empty JSON object
                    "Affiliation Start Date" AS start_time,
                    "Affiliation End Date" AS end_time
                FROM
                    icews_actors;
            END
        $$;

        """
        )
    )
    cursor.commit()
    cursor.close()

icews_explore_data()

Read the ICEWS_Sector, as it is a tree, plot a tree for this. :return:

Source code in TimelineKGQA/data_loader/load_icews.py
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
def icews_explore_data(self):
    """
    Read the ICEWS_Sector, as it is a tree, plot a tree for this.
    :return:
    """

    df = pd.read_sql_table("icews_sectors", con=self.engine)
    # Initialize lists to hold the transformed data
    names = []
    parents = []

    logger.info(df.head())

    # Track the last seen name at each level to establish parent-child relationships
    last_seen = {-1: ""}  # Root has no name

    # Iterate over the rows in the original dataframe
    for _, row in df.iterrows():
        for level in range(len(row)):
            logger.info(f"Level: {level}")
            # Check if the cell is not empty
            if not pd.isnull(row[level]):
                # This level's name
                name = row[level]
                # Parent is the last seen name in the previous level
                parent = last_seen[level - 1]
                # Update this level's last seen name
                last_seen[level] = name
                # If this name at this level is not already added, add it to the lists
                if (name not in names) or parents[names.index(name)] != parent:
                    names.append(name)
                    parents.append(parent)
                break  # Move to the next row once the first non-empty cell is processed

    # Creating a new dataframe from the transformed data
    transformed_df = pd.DataFrame({"name": names, "parent": parents})

    # Display the first few rows of the transformed dataframe
    logger.info(transformed_df.head())

    # Creating a tree diagram with Plotly
    fig = go.Figure(
        go.Treemap(
            labels=transformed_df["name"],
            parents=transformed_df["parent"],
        )
    )

    fig.update_layout(margin=dict(t=0, l=0, r=0, b=0))

    if self.view_sector_tree_web:
        fig.show()

icews_load_data()

Before doing anything, you will need to download the ICEWS data from the Harvard Dataverse.

"ICEWS Coded Event Data",

https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/28075

After downloading the data, extract the zip file and put the data in the following directory: TimelineKGQA/TimelineKGQA/data/icews_events_data/ICEWS/ICEWS Coded Event Data

:return:

Source code in TimelineKGQA/data_loader/load_icews.py
 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
def icews_load_data(self):
    """
    Before doing anything, you will need to download the ICEWS data from the Harvard Dataverse.

    Data name is: "ICEWS Coded Event Data",
        https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/28075

    After downloading the data, extract the zip file and put the data in the following directory:
        TimelineKGQA/TimelineKGQA/data/icews_events_data/ICEWS/ICEWS Coded Event Data

    :return:
    """

    if self.data_type == "all" or self.data_type == "icews":

        # loop the folder, and unzip all the files ending with .zip
        # it will override the data if it is running twice
        for file in os.listdir(DATA_ICEWS_EVENTS_DATA_DIR):
            if file.endswith(".zip"):
                # unzip the file
                zip_path = DATA_ICEWS_EVENTS_DATA_DIR / file
                logger.info(f"Unzipping {zip_path}")
                with zipfile.ZipFile(zip_path, "r") as zip_ref:
                    zip_ref.extractall(DATA_ICEWS_EVENTS_DATA_DIR)

        # read all .tab or .csv files into the df and check their column distribution
        # pandas read from tab, csv files
        # have done the check, all files have the consistent same column names
        combined_df = None
        for file in os.listdir(DATA_ICEWS_EVENTS_DATA_DIR):
            if file.endswith(".tab") or file.endswith(".csv"):
                tab_path = DATA_ICEWS_EVENTS_DATA_DIR / file
                logger.info(f"Reading {tab_path}")
                df = pd.read_csv(tab_path, sep="\t", low_memory=False)
                if combined_df is None:
                    combined_df = df
                else:
                    # combine df and combined_df
                    combined_df = pd.concat([combined_df, df], ignore_index=True)
        logger.info("Loading data into database")
        combined_df.to_sql(
            "icews", con=self.engine, if_exists="replace", index=False
        )

    if self.data_type == "all" or self.data_type == "icews_dicts":
        # load the ICEWS Dictionaries into the database for further review
        logger.info("Loading dictionaries into database")
        # loop all the files in the directory, and saving them into the database
        for file in os.listdir(DATA_ICEWS_DICTS_DATA_DIR):
            if file.endswith(".csv"):
                csv_path = DATA_ICEWS_DICTS_DATA_DIR / file
                logger.info(f"Reading {csv_path}")
                # if sector in the file name, then the csv do not have header
                if "sector" in file:
                    df = pd.read_csv(csv_path, header=None, low_memory=False)
                else:
                    df = pd.read_csv(csv_path, low_memory=False)
                table_name = file.rsplit(".", 2)[0].replace(".", "_")
                logger.info(f"Loading {table_name} into database")
                if "id" not in df.columns:
                    df["id"] = range(1, 1 + len(df))
                df.to_sql(
                    table_name, con=self.engine, if_exists="replace", index=False
                )