Skip to content

Instantly share code, notes, and snippets.

View drorhunvural's full-sized avatar
🎯
Focusing

Orhun drorhunvural

🎯
Focusing
View GitHub Profile
@tianyu-lu
tianyu-lu / 6-language-models.ipynb
Created October 31, 2021 17:36
6-Language-Models.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bxshi
bxshi / Hits_at_K_TensorFlow.py
Created January 12, 2017 21:34
Implement Hits@K evaluation metric for Knowledge Graph Completion tasks.
import tensorflow as tf
with tf.Session() as sess:
"""
idx (h,r) top_3
[ [
[0,1], [0,8,3],
[1,3], [7,2,1],
[2,4], [4,3,9],
] ]