Skip to content

Instantly share code, notes, and snippets.

Avatar
🧬
Focusing

Vijini Mallawaarachchi Vini2

🧬
Focusing
View GitHub Profile
@Vini2
Vini2 / Code for Matching of Bipartite Graphs.ipynb
Last active April 6, 2021 15:22
Code for Matching of Bipartite Graphs.ipynb
View Code for Matching of Bipartite Graphs.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Clustering using convex hulls - High Dim.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Clustering using convex hulls.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View evaluate.py
import argparse
import scipy.special
import csv
parser = argparse.ArgumentParser(description="""Evaluate clustering results. This scripts will return the
precision, recall, F1-score and ARI of the provided clustering result""")
parser.add_argument("--clustered",
required=True,
type=str,
View Zelda BOTW - Weapon, Shield and Bow Analysis.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Vini2
Vini2 / Python-igraph Example.ipynb
Created April 7, 2020 14:53
Python-igraph Example
View Python-igraph Example.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Composition-based Clustering of Metagenomic Sequences.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Composition Comparison of Coronaviruses.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Vini2
Vini2 / DBSCAN blog.ipynb
Created March 25, 2020 12:15
DBSCAN eps detection - blog article
View DBSCAN blog.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View RA_demo_examples.sql
-- Projection example
SELECT DISTINCT member_id FROM borrow;
SELECT DISTINCT member_id,book_id FROM borrow;
-- Selection example
SELECT * FROM member WHERE date_of_birth='1997-10-21';
-- Rename example
WITH library_member AS (SELECT * FROM member) SELECT * FROM library_member;