diff options
author | takov751 <40316768+takov751@users.noreply.github.com> | 2023-09-08 17:06:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 19:06:26 +0300 |
commit | ec2a24fedf1de8ebd5f170016953b09ff2806924 (patch) | |
tree | 65b98e6a5565cb376ebc82cfba684aa8f29fdbf7 | |
parent | 7d99aca759f2f8a1ff39f3bb02a840f69863428b (diff) |
flake : add train-text-from-scratch to flake.nix (#3042)
-rw-r--r-- | flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ]; |