From 621f7ec08ea5fc89e9ac5a51a8dc132981c9c056 Mon Sep 17 00:00:00 2001 From: ioangatop Date: Fri, 22 Mar 2024 15:09:58 +0100 Subject: [PATCH 1/6] Minor fix on downloading configs instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31bebc4e..56ed9043 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ of the repo. Apart from cloning the repo, you can download the latest config fol [here](https://download-directory.github.io/?url=https://github.com/kaiko-ai/eva/tree/main/configs). Alternatively, from a specific release the configs can be downloaded from the terminal as follows: ```sh -curl -LO https://github.com/kaiko-ai/eva/releases/download/0.0.1/configs.zip | unzip configs.zip +curl -LO https://github.com/kaiko-ai/eva/releases/download/0.0.1/configs.zip | unzip configs ``` For example, to perform a downstream evaluation of DINO ViT-S/16 on the BACH dataset with From 25d696a7bf130b3ab7d22d9e0ce98dd8aed80114 Mon Sep 17 00:00:00 2001 From: ioangatop Date: Wed, 27 Mar 2024 15:36:45 +0100 Subject: [PATCH 2/6] update docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8924400e..497b6a07 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ and [tutorials](https://kaiko-ai.github.io/eva/dev/user-guide/advanced/replicate ## Benchmarks -In this section you will find model benchmarks which were generated with _eva_. +In this section you will find model benchmarks which were generated with `_eva_`. ### Table I: WSI patch-level benchmark From a2df5d3f30f94e9bf1e7c53c04e4b4b61b5e610f Mon Sep 17 00:00:00 2001 From: ioangatop Date: Wed, 27 Mar 2024 15:37:32 +0100 Subject: [PATCH 3/6] minor update to ci file --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f769bdd5..d190dcb1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -51,6 +51,7 @@ jobs: with: lfs: true token: ${{ secrets.GITHUB_TOKEN }} + - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: From d63cb82630b620d38a6921640c6c0ef58ca508eb Mon Sep 17 00:00:00 2001 From: ioangatop Date: Wed, 27 Mar 2024 15:42:09 +0100 Subject: [PATCH 4/6] update ci --- .github/workflows/ci.yaml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d190dcb1..f75d7828 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,25 +4,16 @@ name: CI on: workflow_dispatch: pull_request: - branches: - - main - paths-ignore: - - "docs/**" - - "*.md" + branches: main push: - branches: - - main - paths-ignore: - - "docs/**" - - "*.md" + branches: main + jobs: quality: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: @@ -36,7 +27,6 @@ jobs: run: nox -s lint - name: Performing static type checks run: nox -s check - tests: strategy: matrix: @@ -50,8 +40,6 @@ jobs: uses: actions/checkout@v4 with: lfs: true - token: ${{ secrets.GITHUB_TOKEN }} - - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: From dfeed2c4ccd09570a3ad75d04538ec90fe9bb72b Mon Sep 17 00:00:00 2001 From: ioangatop Date: Wed, 27 Mar 2024 15:44:02 +0100 Subject: [PATCH 5/6] update --- .github/workflows/ci.yaml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f75d7828..f769bdd5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,16 +4,25 @@ name: CI on: workflow_dispatch: pull_request: - branches: main + branches: + - main + paths-ignore: + - "docs/**" + - "*.md" push: - branches: main - + branches: + - main + paths-ignore: + - "docs/**" + - "*.md" jobs: quality: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: @@ -27,6 +36,7 @@ jobs: run: nox -s lint - name: Performing static type checks run: nox -s check + tests: strategy: matrix: @@ -40,6 +50,7 @@ jobs: uses: actions/checkout@v4 with: lfs: true + token: ${{ secrets.GITHUB_TOKEN }} - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: From dc9b419f35c9d2cd6f2f5a4832da1181e36c4787 Mon Sep 17 00:00:00 2001 From: ioangatop Date: Wed, 27 Mar 2024 15:48:22 +0100 Subject: [PATCH 6/6] update ci --- .github/workflows/ci.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f769bdd5..8da0e265 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,8 +4,6 @@ name: CI on: workflow_dispatch: pull_request: - branches: - - main paths-ignore: - "docs/**" - "*.md" @@ -21,8 +19,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: @@ -50,7 +46,6 @@ jobs: uses: actions/checkout@v4 with: lfs: true - token: ${{ secrets.GITHUB_TOKEN }} - name: Setting up PDM uses: pdm-project/setup-pdm@v4 with: