From 288ae4631d156f637494df44e173029cc35a5c57 Mon Sep 17 00:00:00 2001 From: Lim Chee Kin Date: Wed, 6 Sep 2023 15:13:32 +0800 Subject: [PATCH] chore: no more llama2.c directory --- .github/workflows/convert.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/convert.yml b/.github/workflows/convert.yml index 5cd4f5e..4eee42c 100644 --- a/.github/workflows/convert.yml +++ b/.github/workflows/convert.yml @@ -11,7 +11,7 @@ jobs: convert-upload: runs-on: ubuntu-latest steps: - - name: Checkout own repo + - name: Checkout karpathy/llama2.c repo uses: actions/checkout@v4 with: repository: "karpathy/llama2.c" @@ -23,9 +23,8 @@ jobs: - name: Install Python packages run: | - cd ${{ github.ref_name }} pip install --no-cache-dir -r requirements.txt pip install --no-cache-dir transformers - name: Download and convert model - run: cd ${{ github.ref_name }};python export.py tinyllama.bin --hf ${{ github.event.inputs.model_name }} + run: python export.py tinyllama.bin --hf ${{ github.event.inputs.model_name }}