From b3e90a58646da5a66ea83d4de47ceae9b07b6977 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Wed, 21 Aug 2024 09:05:41 +0200 Subject: [PATCH 1/2] Fix typos (#4024) --- README.md | 2 +- ludwig/benchmarking/README.md | 2 +- ludwig/datasets/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e0d720c48b..2d6866fc8f7 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Please see [contributing](https://github.com/ludwig-ai/ludwig/blob/master/CONTRI # 🚂 Getting Started -Want to take a quick peak at some of the Ludwig 0.8 features? Check out this Colab Notebook 🚀 [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1lB4ALmEyvcMycE3Mlnsd7I3bc0zxvk39) +Want to take a quick peek at some of the Ludwig 0.8 features? Check out this Colab Notebook 🚀 [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1lB4ALmEyvcMycE3Mlnsd7I3bc0zxvk39) Looking to fine-tune Llama-2 or Mistral? Check out these notebooks: diff --git a/ludwig/benchmarking/README.md b/ludwig/benchmarking/README.md index 8768302f25e..6f10e0b46b8 100644 --- a/ludwig/benchmarking/README.md +++ b/ludwig/benchmarking/README.md @@ -3,7 +3,7 @@ ### Some use cases - Regression testing for ML experiments across releases and PRs. -- Model performance testing for experimenting with new features and hyperparmeters. +- Model performance testing for experimenting with new features and hyperparameters. - Resource usage tracking for the full ML pipeline. ## Ludwig benchmarking CLI and API diff --git a/ludwig/datasets/README.md b/ludwig/datasets/README.md index d77327db9fc..fb43f4a3f15 100644 --- a/ludwig/datasets/README.md +++ b/ludwig/datasets/README.md @@ -74,7 +74,7 @@ ______________________________________________________________________ Gets a dictionary of model configs for the specified dataset. Keys are the config names, and may contain the special keys: -- `default` - The default config for the dataset. Should train to decent performance under 10 minutes on a tyipcal +- `default` - The default config for the dataset. Should train to decent performance under 10 minutes on a typical laptop without GPU. - `best` - The best known config for the dataset. Should be replaced when a better config is found. This is a good opportunity for contributions, if you find a better one please check it in and open a PR! From e308c66fa940b8e74263b36e05ed590bc8f2a23e Mon Sep 17 00:00:00 2001 From: ethanreidel Date: Thu, 17 Oct 2024 15:41:53 -0700 Subject: [PATCH 2/2] changed version of actions in pytest.yml --- .github/workflows/pytest.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 03a307da140..9a8d8b01cf9 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -70,9 +70,9 @@ jobs: sudo apt-get install -y nodejs sudo mkdir -p /opt/hostedtoolcache/ sudo chmod 777 -R /opt/hostedtoolcache/ - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -88,7 +88,7 @@ jobs: - name: pip cache if: ${{ !env.ACT }} - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-torch${{ matrix.pytorch-version }}-${{ matrix.test-markers }}-${{ hashFiles('requirements*.txt', '.github/workflows/pytest.yml') }} @@ -192,7 +192,7 @@ jobs: - name: Upload Unit Test Results if: ${{ always() && !env.ACT }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Unit Test Results (Python ${{ matrix.python-version }} ${{ matrix.test-markers }}) path: pytest.xml @@ -230,9 +230,9 @@ jobs: timeout-minutes: 90 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: "3.10" @@ -286,9 +286,9 @@ jobs: timeout-minutes: 60 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.9 @@ -327,9 +327,9 @@ jobs: timeout-minutes: 60 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.8 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.8 @@ -367,9 +367,9 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.8 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.8 @@ -560,7 +560,7 @@ jobs: steps: - name: Upload if: ${{ !env.ACT }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Event File path: ${{ github.event_path }}