Skip to content

Commit

Permalink
infra: prepare for release 0.1.20 [generated]
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron <[email protected]>
  • Loading branch information
aarnphm committed Jul 5, 2023
1 parent 0892d10 commit 4e35172
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 26 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,43 @@ This changelog is managed by towncrier and is compiled at release time.

<!-- towncrier release notes start -->

## [0.1.20](https://github.com/bentoml/openllm/tree/v0.1.20)

### Features

- ### Fine-tuning support for Falcon

Added support for fine-tuning Falcon models with QLoRa

OpenLLM now brings a `openllm playground`, which create a jupyter notebook for
easy fine-tuning script

Currently, it supports fine-tuning OPT and Falcon, more to come.

`openllm.LLM` now provides a `prepare_for_training` helpers to easily setup LoRA
and related configuration for fine-tuning
[#98](https://github.com/bentoml/openllm/issues/98)


### Bug fix

- Fixes loading MPT config on CPU

Fixes runner StopIteration on GET for Starlette App
[#92](https://github.com/bentoml/openllm/issues/92)
- `openllm.LLM` now generates tags based on given `model_id` and optional
`model_version`.

If given `model_id` is a custom path, the name would be the basename of the
directory, and version would be the hash of the last modified time.

`openllm start` now provides a `--runtime`, allowing setup different runtime.
Currently it refactors to `transformers`. GGML is working in progress.

Fixes miscellaneous items when saving models with quantized weights.
[#102](https://github.com/bentoml/openllm/issues/102)


## [0.1.19](https://github.com/bentoml/openllm/tree/v0.1.19)
No significant changes.

Expand Down
10 changes: 0 additions & 10 deletions changelog.d/102.fix.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/92.fix.md

This file was deleted.

11 changes: 0 additions & 11 deletions changelog.d/98.feature.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openllm",
"version": "0.1.20.dev0",
"version": "0.1.20",
"description": "OpenLLM: Your one stop-and-go solution for serving Large Language Model",
"repository": "[email protected]:llmsys/OpenLLM.git",
"author": "Aaron Pham <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/openllm/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.1.20.dev0"
__version__ = "0.1.20"

0 comments on commit 4e35172

Please sign in to comment.