From f7b720b127444f7124988757e6dfa9f8966e9c9f Mon Sep 17 00:00:00 2001 From: henk717 Date: Wed, 31 Aug 2022 02:16:35 +0200 Subject: [PATCH 1/5] Clarify umamba People wanted the source code of umamba.exe so we clarify where it was taken from and where its source code can be found. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 968aa995..0d69934b 100644 --- a/readme.md +++ b/readme.md @@ -216,4 +216,4 @@ Did we miss your contribution? Feel free to issue a commit adding your name to t KoboldAI is licensed with a AGPL license, in short this means that it can be used by anyone for any purpose. However, if you decide to make a publicly available instance your users are entitled to a copy of the source code including all modifications that you have made (which needs to be available trough an interface such as a button on your website), you may also not distribute this project in a form that does not contain the source code (Such as compiling / encrypting the code and distributing this version without also distributing the source code that includes the changes that you made. You are allowed to distribute this in a closed form if you also provide a separate archive with the source code.). -umamba.exe is bundled for convenience because we observed that many of our users had trouble with command line download methods, it is not part of our project and does not fall under the AGPL license. It is licensed under the BSD-3-Clause license. Other files with differing licenses will have a reference or embedded version of this license within the file. +umamba.exe is bundled for convenience because we observed that many of our users had trouble with command line download methods, it is not part of our project and does not fall under the AGPL license. It is licensed under the BSD-3-Clause license. Other files with differing licenses will have a reference or embedded version of this license within the file. It has been sourced from https://anaconda.org/conda-forge/micromamba/files and its source code can be found here : https://github.com/mamba-org/mamba/tree/master/micromamba From 9debec921aac3e987522150f7906ef2f0d904073 Mon Sep 17 00:00:00 2001 From: henk717 Date: Fri, 9 Sep 2022 15:57:27 +0200 Subject: [PATCH 2/5] Erebus 13B --- colab/TPU.ipynb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/colab/TPU.ipynb b/colab/TPU.ipynb index 22c35e08..745ad3a4 100644 --- a/colab/TPU.ipynb +++ b/colab/TPU.ipynb @@ -89,6 +89,10 @@ " Model = \"KoboldAI/fairseq-dense-13B-Nerys-v2\"\n", " path = \"\"\n", " download = \"\"\n", + "elif Model == \"Erebus 13B\":\n", + " Model = \"KoboldAI/OPT-13B-erebus\"\n", + " path = \"\"\n", + " download = \"\"\n", "elif Model == \"Shinen 13B\":\n", " Model = \"KoboldAI/fairseq-dense-13B-Shinen\"\n", " path = \"\"\n", From 08a875ca6305c2f6e4458fb88e9a0729b71ca056 Mon Sep 17 00:00:00 2001 From: henk717 Date: Fri, 9 Sep 2022 15:59:27 +0200 Subject: [PATCH 3/5] Erebus 13B --- colab/TPU.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colab/TPU.ipynb b/colab/TPU.ipynb index 745ad3a4..40a4517a 100644 --- a/colab/TPU.ipynb +++ b/colab/TPU.ipynb @@ -66,7 +66,7 @@ "#@title <-- Select your model below and then click this to start KoboldAI\n", "#@markdown You can find a description of the models below along with instructions on how to start KoboldAI.\n", "\n", - "Model = \"Nerys 13B V2\" #@param [\"Nerys 13B V2\", \"Janeway 13B\", \"Shinen 13B\", \"Skein 20B\", \"Skein 6B\", \"Janeway 6B\", \"Adventure 6B\", \"Shinen 6B\", \"Lit 6B\", \"NeoX 20B\", \"OPT 13B\", \"Fairseq Dense 13B\", \"GPT-J-6B\"] {allow-input: true}\n", + "Model = \"Nerys 13B V2\" #@param [\"Nerys 13B V2\", \"Erebus 13B\", \"Janeway 13B\", \"Shinen 13B\", \"Skein 20B\", \"Skein 6B\", \"Janeway 6B\", \"Adventure 6B\", \"Shinen 6B\", \"Lit 6B\", \"NeoX 20B\", \"OPT 13B\", \"Fairseq Dense 13B\", \"GPT-J-6B\"] {allow-input: true}\n", "Version = \"Official\" #@param [\"Official\", \"United\"] {allow-input: true}\n", "Provider = \"Cloudflare\" #@param [\"Localtunnel\", \"Cloudflare\"]\n", "\n", From fdd222e68f1472b206ad5c772577e9f728e67e53 Mon Sep 17 00:00:00 2001 From: henk717 Date: Fri, 9 Sep 2022 16:43:19 +0200 Subject: [PATCH 4/5] Erebus link update It changed on Huggingface, so lets update it here to --- colab/TPU.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colab/TPU.ipynb b/colab/TPU.ipynb index 40a4517a..d4719169 100644 --- a/colab/TPU.ipynb +++ b/colab/TPU.ipynb @@ -90,7 +90,7 @@ " path = \"\"\n", " download = \"\"\n", "elif Model == \"Erebus 13B\":\n", - " Model = \"KoboldAI/OPT-13B-erebus\"\n", + " Model = \"KoboldAI/OPT-13B-Erebus\"\n", " path = \"\"\n", " download = \"\"\n", "elif Model == \"Shinen 13B\":\n", @@ -233,4 +233,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +} From 359f95aff1c5bc5c8f2a89a93f421c1114ac78e4 Mon Sep 17 00:00:00 2001 From: henk717 Date: Tue, 13 Sep 2022 14:59:23 +0200 Subject: [PATCH 5/5] Downgrade Chex Chex got a breaking update, while it is not a direct dependency we add it so that optax and jax don't break. --- requirements_mtj.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements_mtj.txt b/requirements_mtj.txt index c5c17a19..b44e5524 100644 --- a/requirements_mtj.txt +++ b/requirements_mtj.txt @@ -17,3 +17,4 @@ eventlet lupa==1.10 markdown bleach==4.1.0 +chex==0.1.4