Skip to content
View melissakou's full-sized avatar
Block or Report

Block or report melissakou

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. knowledge-graph-embedding knowledge-graph-embedding Public

    A TensorFlow-based implementation of knowledge graph embedding models.

    Python 8 3

  2. KG-RecSys KG-RecSys Public

    I read some papers about Knowledge Graph applied in Recommender System, and write the summary of these papers.

    Jupyter Notebook 2 1

  3. NLP_cs224n NLP_cs224n Public

    My solution for the assignment in CS224n: Natural Language Processing with Deep Learning at Stanford.

    JavaScript

  4. leetcode_practice leetcode_practice Public

    my LeetCode practice (using python)

    Python 1

  5. panel-practice panel-practice Public

    A practice that uses Panel and Plotly to build a simple stock market price dashboard.

    Jupyter Notebook

  6. spark_data_skew_key_salting_join.py spark_data_skew_key_salting_join.py
    1
    def key_salting_join(left_df, right_df, left_key, right_key, how, coarseness):
    2
        """ Implementation of key salting join.
    3
        Args:
    4
            left_df (spark.DataFrame): left dataframe to be joined.
    5
            right_df (spark.DataFrame): right dataframe to be joined.