Skip to content

Instantly share code, notes, and snippets.

View gangeshwark's full-sized avatar
🎯
Focusing

Gangeshwar Krishnamurthy gangeshwark

🎯
Focusing
View GitHub Profile
@mpyw
mpyw / free_email_provider_domains.txt
Last active January 6, 2023 14:41 — forked from tbrianjones/free_email_provider_domains.txt
A list of free email provider domains. All forks from the original gist are merged. The list only contains valid hostnames.
0039.cf
0039.ga
0039.ml
00b2bcr51qv59xst2.cf
00b2bcr51qv59xst2.ga
00b2bcr51qv59xst2.ml
02466.cf
02466.ga
02466.ml
07819.cf
@shagunsodhani
shagunsodhani / WikiReading.md
Created August 21, 2016 15:19
Summary of "WikiReading : A Novel Large-scale Language Understanding Task over Wikipedia" paper

WikiReading : A Novel Large-scale Language Understanding Task over Wikipedia

Introduction

  • Large scale natural language understanding task - predict text values given a knowledge base.
  • Accompanied by a large dataset generated using Wikipedia
  • Link to the paper

Dataset

@karpathy
karpathy / min-char-rnn.py
Last active May 6, 2024 16:42
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)