Skip to content

Commit

Permalink
Update CHANGELOG.md before release
Browse files Browse the repository at this point in the history
feat: ignore training unit tests (CI OOM)

docs: update `CHANGELOG.md`

feat: add spacy trainer changes

docs: update changelog to include Ranking UI

docs: update changelog
  • Loading branch information
gabrielmbmb committed Jun 29, 2023
1 parent 6160760 commit 9c4fcb6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,26 @@ These are the section headers that we use:

## [Unreleased]

### Fixed

- Check available workspaces on Argilla on `rg.set_workspace` (Closes [#3262](https://github.com/argilla-io/argilla/issues/3262))
## [1.12.0](https://github.com/argilla-io/argilla/compare/v1.11.0...v1.12.0)

### Added

- Added `RankingQuestionSettings` class allowing to create ranking questions in the API using `POST /api/v1/datasets/{dataset_id}/questions` endpoint ([#3232](https://github.com/argilla-io/argilla/pull/3232))
- Added `RankingQuestion` in the Python client to create ranking questions ([#3275](https://github.com/argilla-io/argilla/issues/3275)).
- Added `Ranking` component in feedback task question form ([#3177](https://github.com/argilla-io/argilla/pull/3177) & [#3246](https://github.com/argilla-io/argilla/pull/3246)).
- Added `FeedbackDataset.prepare_for_training` method for generaring a framework-specific dataset with the responses provided for `RatingQuestion`, `LabelQuestion` and `MultiLabelQuestion` ([#3151](https://github.com/argilla-io/argilla/pull/3151)).
- Added `ArgillaSpaCyTransformersTrainer` class for supporting the training with `spacy-transformers` ([#3256](https://github.com/argilla-io/argilla/pull/3256)).

### Changed

- All docker related files have been moved into the `docker` folder
- `release.Dockerfile` have been renamed to `Dockerfile`
- Update `rg.load` function to raise a `ValueError` with a explanatory message for the cases in which the user tries to use the function to load a `FeedbackDataset` ([#3289](https://github.com/argilla-io/argilla/pull/3289)).
- All docker related files have been moved into the `docker` folder ([#3053](https://github.com/argilla-io/argilla/pull/3053)).
- `release.Dockerfile` have been renamed to `Dockerfile` ([#3133](https://github.com/argilla-io/argilla/pull/3133)).
- Updated `rg.load` function to raise a `ValueError` with a explanatory message for the cases in which the user tries to use the function to load a `FeedbackDataset` ([#3289](https://github.com/argilla-io/argilla/pull/3289)).
- Updated `ArgillaSpaCyTrainer` to allow re-using `tok2vec` ([#3256](https://github.com/argilla-io/argilla/pull/3256)).

### Fixed

- Check available workspaces on Argilla on `rg.set_workspace` (Closes [#3262](https://github.com/argilla-io/argilla/issues/3262))

## [1.11.0](https://github.com/argilla-io/argilla/compare/v1.10.0...v1.11.0)

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ log_format = "%(asctime)s %(name)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli = "True"
testpaths = ["tests"]
addopts = ["--ignore", "tests/training"]

[tool.coverage.report]
exclude_lines = [
Expand Down
1 change: 0 additions & 1 deletion tests/training/test_spacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def test_train_textcat_multi_label(
train_with_cleanup(trainer, output_dir, train=False)
cleanup_spacy_config(trainer)

@pytest.mark.skip(reason="CI doesn't have enough memory to run this test")
def test_train_tokencat(
self, framework: str, model: str, dataset_token_classification: rg.DatasetForTokenClassification
) -> None:
Expand Down

0 comments on commit 9c4fcb6

Please sign in to comment.