Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 0.1.1 #205

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This is just a centralised version of the Github automatically generated Release changelogs.

## 0.1.1

* fix rope when very long sequence precision is key by @vince62s in https://github.com/eole-nlp/eole/pull/200
* Better fix for long rope (training was not optimized) by @vince62s in https://github.com/eole-nlp/eole/pull/201
* add filtertooshort transform by @vince62s in https://github.com/eole-nlp/eole/pull/202
* Basic pixtral support, paving the way for vision models 🖼️ by @francoishernandez in https://github.com/eole-nlp/eole/pull/153
* Clean / rename / simplify by @vince62s in https://github.com/eole-nlp/eole/pull/203

## 0.1.0

* reinstate cuda rmsnorm (much faster in fp16/awq) + ct2 enc/dec config by @vince62s in https://github.com/eole-nlp/eole/pull/167
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ You can customize the workflow and build your own images based on specific needs

To pull the Docker image:
```bash
docker pull ghcr.io/eole-nlp/eole:0.1.0-torch2.5.1-ubuntu22.04-cuda12.4
docker pull ghcr.io/eole-nlp/eole:0.1.1-torch2.5.1-ubuntu22.04-cuda12.4
```

Example one-liner to run a container and open a bash shell within it:
```bash
docker run --rm -it --runtime=nvidia ghcr.io/eole-nlp/eole:0.1.0-torch2.5.1-ubuntu22.04-cuda12.4
docker run --rm -it --runtime=nvidia ghcr.io/eole-nlp/eole:0.1.1-torch2.5.1-ubuntu22.04-cuda12.4
```

> **Note**: Ensure you have the [Nvidia Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) (formerly nvidia-docker) installed to take advantage of CUDA/GPU features.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Open language modeling toolkit based on PyTorch",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1.0",
version="0.1.1",
packages=find_packages(),
project_urls={
"Source": "https://github.com/eole-nlp/eole/",
Expand Down