umap-playground

messing around with UMAP
git clone git://jb55.com/umap-playground
Log | Files | Refs | README

default.nix (176B)


      1 { pkgs ? import <nixpkgs> {} }:
      2 with pkgs;
      3 mkShell {
      4   name = "umap_harps";
      5   buildInputs = with python3Packages; [ scikitlearn seaborn pandas matplotlib numpy umap-learn ];
      6 }