Skip to content

Instantly share code, notes, and snippets.

View veb-101's full-sized avatar
:octocat:
There's no try

Vaibhav Singh veb-101

:octocat:
There's no try
View GitHub Profile
@veb-101
veb-101 / understanding-word-vectors.ipynb
Created October 29, 2018 12:54 — forked from aparrish/understanding-word-vectors.ipynb
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@veb-101
veb-101 / Courses.md
Last active May 9, 2020 09:30
List of online courses for Artificial Intelligence Specialization.
def crc(msg, div, code="000"):
msg += code
msg = list(msg)
div = list(div)
for i in range(len(msg) - len(code)):
if msg[i] == "1":
for j in range(len(div)):
msg[i+j] = f"{int(msg[i+j]) ^ int(div[j])}"
@veb-101
veb-101 / feature-selection.ipynb
Created April 17, 2020 21:52
Feature Selection.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@veb-101
veb-101 / RBFN_EG.ipynb
Last active November 11, 2022 10:31
Radial basis function network for XOR
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@veb-101
veb-101 / Word Cloud.ipynb
Last active May 9, 2020 09:44
creating a simple word cloud (logo) in matplotlib
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.