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 / 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.
@veb-101
veb-101 / RBFN_EG.ipynb
Last active September 4, 2024 11:04
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 / 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.
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 / Courses.md
Last active May 9, 2020 09:30
List of online courses for Artificial Intelligence Specialization.