From 99059ae667eaa89fc61335c90e3abc081674bab9 Mon Sep 17 00:00:00 2001 From: justheuristic Date: Sun, 12 Jun 2022 04:23:38 +0300 Subject: [PATCH] install script --- .gitignore | 1 - README.md | 23 +++++++++++++++++++++-- requirements.txt | 3 --- 3 files changed, 21 insertions(+), 6 deletions(-) delete mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index b6e4761..7114a35 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ dist/ downloads/ eggs/ .eggs/ -lib/ lib64/ parts/ sdist/ diff --git a/README.md b/README.md index a19babe..078801a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,23 @@ # bloom-demo -Early dev prototype for decentralized bloom. Not for public eyes yet. +Early dev prototype for decentralized bloom. Not for public eyes **yet**. -`if you see this and you not in '@timdettmers @borzunov @mryab @greenfatguy'.split(): go away` +```python +if you.read(this) and you.name not in '@timdettmers @borzunov @mryab @greenfatguy'.split(): + you.go("away") +``` + + + +# install + + +```bash +conda create -y --name bloom-demo python=3.8.12 pip +conda activate bloom-demo + +conda install -y -c conda-forge cudatoolkit-dev==11.3.1 cudatoolkit==11.3.1 cudnn==8.2.1.32 +pip install torch==1.11.0+cu113 torchvision==0.12.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html +pip install bitsandbytes-cuda113==0.26.0 +pip install https://github.com/learning-at-home/hivemind/archive/dac8940c324dd612d89c773b51a53e4a04c59064.zip +pip install https://github.com/huggingface/transformers/archive/224bde91caff4ccfd12277ab5e9bf97c61e22ee9.zip +``` diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 77fb921..0000000 --- a/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -torch -https://github.com/learning-at-home/hivemind/archive/dac8940c324dd612d89c773b51a53e4a04c59064.zip -https://github.com/huggingface/transformers/archive/224bde91caff4ccfd12277ab5e9bf97c61e22ee9.zip \ No newline at end of file