From: takov751 Date: Fri, 8 Sep 2023 16:06:26 +0000 (+0100) Subject: flake : add train-text-from-scratch to flake.nix (#3042) X-Git-Tag: gguf-v0.4.0~99 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=ec2a24fedf1de8ebd5f170016953b09ff2806924;p=pkg%2Fggml%2Fsources%2Fllama.cpp flake : add train-text-from-scratch to flake.nix (#3042) --- diff --git a/flake.nix b/flake.nix index 02095411..1f69a4d5 100644 --- a/flake.nix +++ b/flake.nix @@ -93,6 +93,10 @@ type = "app"; program = "${self.packages.${system}.default}/bin/quantize"; }; + apps.train-text-from-scratch = { + type = "app"; + program = "${self.packages.${system}.default}/bin/train-text-from-scratch"; + }; apps.default = self.apps.${system}.llama; devShells.default = pkgs.mkShell { buildInputs = [ llama-python ];