summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortakov751 <40316768+takov751@users.noreply.github.com>2023-09-08 17:06:26 +0100
committerGitHub <noreply@github.com>2023-09-08 19:06:26 +0300
commitec2a24fedf1de8ebd5f170016953b09ff2806924 (patch)
tree65b98e6a5565cb376ebc82cfba684aa8f29fdbf7
parent7d99aca759f2f8a1ff39f3bb02a840f69863428b (diff)
flake : add train-text-from-scratch to flake.nix (#3042)
-rw-r--r--flake.nix4
1 files changed, 4 insertions, 0 deletions
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 ];