Skip to content

Instantly share code, notes, and snippets.

View iakash2604's full-sized avatar

Akash Nimmagadda iakash2604

  • Bangalore
View GitHub Profile
@sharmaeklavya2
sharmaeklavya2 / cpintro.md
Last active February 18, 2020 23:53
Slides used in ACM-CPSIG 2017

Introduction to Competitive Programming

--

Presentation summary

  • What is competitive programming (CP)?
  • Why do CP?
  • How and where to practice?
  • Comparison of programming languages
@sharmaeklavya2
sharmaeklavya2 / CP1.md
Last active May 10, 2023 21:26
Getting started with Competitive Programming

Starting out with Competitive Programming

(This guide is meant for beginners. If you have solved 100+ problems and are looking for guidance on how to solve problems involving algorithms and data structures, this document is not for you.)

Competitive Programming is an interesting activity which mixes problem solving with programming. It is not only enjoyable but also very demanded in placements. Competitive programming will make you very good at writing efficient programs quickly.

@danoneata
danoneata / fisher_vector.py
Last active December 6, 2023 06:25
Fisher vectors with sklearn
import numpy as np
import pdb
from sklearn.datasets import make_classification
from sklearn.mixture import GaussianMixture as GMM
def fisher_vector(xx, gmm):
"""Computes the Fisher vector on a set of descriptors.