Skip to content

Commit 040db0b

Browse files
committed
chore: improve model loading and bump version to 0.12.3
1 parent 366bc2c commit 040db0b

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) !
3434
You can install EDS-NLP via `pip`. We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/).
3535

3636
```shell
37-
pip install edsnlp==0.12.2
37+
pip install edsnlp==0.12.3
3838
```
3939

4040
or if you want to use the trainable components (using pytorch)
4141

4242
```shell
43-
pip install "edsnlp[ml]==0.12.2"
43+
pip install "edsnlp[ml]==0.12.3"
4444
```
4545

4646
### A first pipeline

changelog.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
# Changelog
22

3-
## Unreleased
4-
5-
### Added
6-
7-
### Changed
8-
9-
### Fixed
10-
11-
## v0.12.2
3+
## v0.12.3
124

135
### Changed
146

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) !
1515
You can install EDS-NLP via `pip`. We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/).
1616

1717
```{: data-md-color-scheme="slate" }
18-
pip install edsnlp==0.12.2
18+
pip install edsnlp==0.12.3
1919
```
2020

2121
or if you want to use the trainable components (using pytorch)
2222

2323
```{: data-md-color-scheme="slate" }
24-
pip install "edsnlp[ml]==0.12.2"
24+
pip install "edsnlp[ml]==0.12.3"
2525
```
2626

2727
### A first pipeline

edsnlp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import edsnlp.pipes
1616
from . import reducers
1717

18-
__version__ = "0.12.2"
18+
__version__ = "0.12.3"
1919

2020
BASE_DIR = Path(__file__).parent
2121

edsnlp/core/pipeline.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1241,14 +1241,15 @@ def load_from_huggingface(
12411241
"to use the model:\n"
12421242
f" pip install {' '.join((repr(str(dep)) for dep in missing_deps))}\n"
12431243
f"or let edsnlp do it \n"
1244-
f" nlp = edsnlp.load('{repo_id}', install_dependencies=True)",
1245-
ImportWarning,
1244+
f" nlp = edsnlp.load('{repo_id}', install_dependencies=True)\n"
1245+
f"You may need to restart your Python session after the installation.",
1246+
UserWarning,
12461247
)
12471248
else:
12481249
warnings.warn(
12491250
"Installing missing dependencies:\n"
12501251
f"pip install {' '.join((repr(str(dep)) for dep in missing_deps))}",
1251-
ImportWarning,
1252+
UserWarning,
12521253
)
12531254
pip = sys.executable.rsplit("/", 1)[0] + "/pip"
12541255
subprocess.run([pip, "install", *(str(d) for d in missing_deps)])

0 commit comments

Comments
 (0)