Skip to content

Commit

Permalink
chore: update changelog and bump version to 0.10.0beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Nov 28, 2023
1 parent eaf6d6c commit 4bfb44f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## v0.10.0beta2

### Added

- New add unified `edsnlp.data` api (json, brat, spark, pandas) and LazyCollection object
to efficiently read / write data from / to different formats & sources.
- New unified processing API to select the execution execution backends via `docs.configure(...)`
- The training scripts can now use data from multiple concatenated adapters
- Support quantized transformers (compatible with multiprocessing as well !)

### Changed

- Pipes (in edsnlp/pipelines) are now lazily loaded, which should improve the loading time of the library.
- `to_disk` methods can now return a config to override the initial config of the pipeline (e.g., to load a transformer directly from the path storing its fine-tuned weights)
- The `eds.tokenizer` tokenizer has been added to entry points, making it accessible from the outside
- Deprecate old connectors (e.g. BratDataConnector) in favor of the new `edsnlp.data` API
- Deprecate old `pipe` wrapper in favor of the new processing API

### Fixed

- Support for pydantic v2
- Support for python 3.11 (not ci-tested yet)

## v0.10.0beta1

Large refacto of EDS-NLP to allow training models and performing inference using PyTorch
Expand Down
2 changes: 1 addition & 1 deletion edsnlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
# from . import language
import edsnlp.data # noqa: F401

__version__ = "0.10.0beta1"
__version__ = "0.10.0beta2"

BASE_DIR = Path(__file__).parent

0 comments on commit 4bfb44f

Please sign in to comment.