!fXpAvneDgyJuYMZSwO:nixos.org

Nix Data Science

295 Members
62 Servers

You have reached the beginning of time (for this room).


SenderMessageTime
8 Apr 2022
@carlthome:matrix.orgcarlthome joined the room.15:12:59
@carlthome:matrix.orgcarlthomeHello hello! Anybody working with deep learning on audio data here? 🤗15:14:48
@skainswo:matrix.orgSamuel Ainsworth
In reply to @carlthome:matrix.org
Hello hello! Anybody working with deep learning on audio data here? 🤗
I'm not sure about audio data specifically, but I know that a few people are using NixOS for DL research
23:15:06
9 Apr 2022
@FRidh:matrix.orgFRidh
In reply to @carlthome:matrix.org
Hello hello! Anybody working with deep learning on audio data here? 🤗
Working with audio here and some ML but not DL. On the to do list :)
06:52:56
16 Apr 2022
@lihram:jnh.ems.hostHilmar (he/him) joined the room.23:12:40
17 Apr 2022
@yuu:matrix.orgyuu joined the room.04:23:53
@yuu:matrix.orgyuuanyone who has a flake for pytorch + cuda development? or it could be a shell.nix too06:30:27
@yuu:matrix.orgyuu
{
  description = "Pytorch and stuff";

  # Specifies other flakes that this flake depends on.
  inputs = {
    devshell.url = "github:numtide/devshell";
    utils.url = "github:numtide/flake-utils";
    nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11";
  };

  # Function that produces an attribute set.
  # Its function arguments are the flakes specified in inputs.
  # The self argument denotes this flake.
  outputs = inputs@{ self, nixpkgs, utils, ... }:
    (utils.lib.eachSystem [ "x86_64-linux" ] (system:
      let
        pkgs = (import nixpkgs {
          inherit system;
          config = {
            # For CUDA.
            allowUnfree = true;
            # Enables CUDA support in packages that support it.
            cudaSupport = true;
          };
        });
      in rec {
        # Executed by `nix build .#<name>`
        # Ignore this, it was just for testing.
        packages = utils.lib.flattenTree {
          hello = pkgs.hello;
        };

        # Executed by `nix build .`
        defaultPackage = packages.hello;
        # defaultPackage = pkgs.callPackage ./default.nix { };

        # Executed by `nix develop`
        devShell = with pkgs; mkShell {
          buildInputs = [
            python39 # numba-0.54.1 not supported for interpreter python3.10
          ] ++ (with python39.pkgs; [
            inflect
            librosa
            pip
            pytorch-bin
            unidecode
          ]) ++ (with cudaPackages; [
            cudatoolkit
          ]);

          shellHook = ''
            export CUDA_PATH=${pkgs.cudatoolkit}
          '';
        };
      }
    ));
}
14:52:09
@glepage:matrix.orgGaétan Lepage joined the room.22:00:17

Show newer messages


Back to Room ListRoom Version: 6