Skip to content

Instantly share code, notes, and snippets.

View yiqiao-li's full-sized avatar

Yiqiao Li yiqiao-li

  • City College of New York
  • New York
  • 22:22 (UTC -05:00)
View GitHub Profile
@bikcrum
bikcrum / Connect Google Colab+Drive with SSH.ipynb
Last active October 16, 2024 03:23
This is the way how can you connect google colab as well as google drive (mounted) using SSH. This is useful when you want to download data directly to your google drive specially for machine learning purpose. It can be easy to mount google drive and use files into for your code.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Windsooon
Windsooon / leetcode_retag.md
Last active November 3, 2025 06:46
Retag most popular Leetcode problems

osjobs

海外兔

website

@dgrapov
dgrapov / SOM example.R
Last active March 11, 2023 11:21
Self-organizing map (SOM) example in R
#SOM example using wines data set
library(kohonen)
data(wines)
set.seed(7)
#create SOM grid
sommap <- som(scale(wines), grid = somgrid(2, 2, "hexagonal"))
## use hierarchical clustering to cluster the codebook vectors
groups<-3