Skip to content

Commit

Permalink
[trainer_llm] 0.1.0 Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-lopuszynski-tcl committed May 21, 2024
1 parent 718801f commit 224929e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@

## DONE

## ptdeco 0.4.0, ptdeco trainer 0.8.0
## ptdeco llm trainer 0.1.0
+ **[trainer_llm]** Implements decomposing llms with falor method and finetuning of

## ptdeco 0.4.0, ptdeco vision trainer 0.8.0
+ **[general]** Implement and test building a wheel package
+ **[general]** Move to src project layout
+ **[utils]** Add logging num of decomposed modules of each type in apply_decompose_config_in_place
Expand All @@ -19,20 +22,20 @@
+ **[trainer]** Fix typing
+ **[trainer]** Move notebooks to a sepearte dir

## ptdeco trainer 0.7.0
## ptdeco vision trainer 0.7.0
+ **[tranier]** Add logging state dict stats
+ **[trainer]** Fix state dict bug
+ **[trainer]** Unify logged stats of decomposed models in lockd/falor/finetune

## ptdeco 0.3.0, ptdeco trainer 0.6.0
## ptdeco 0.3.0, ptdeco vision trainer 0.6.0
+ **[falor]** Refactor `fal` -> `falor` and move module to separate directory
+ **[general]** Refactor wrapping class names
+ **[lockd]** Get rid of needless module copies in lockd wrapping
+ **[lockd]** Refactor - split ptdeco.py into multiple modules
+ **[lockd]** Remove `uwrap_in_place`
+ **[trainer]** Refactor compile config to Optional in trainer

## ptdeco 0.2.0, ptdeco trainer 0.5.0
## ptdeco 0.2.0, ptdeco vision trainer 0.5.0
+ **[falor]** Add decomposition params handling through config
+ **[general]** Add checking if all blacklisted modules are present in the model
+ **[general]** Clean-up configurator getters to make use of pydantic models
Expand Down
2 changes: 1 addition & 1 deletion examples/trainer_llm/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is parsed by setup.py, so we need to stick to str -> int parsing
__version__ = "0.0.65"
__version__ = "0.1.0"

_ver_major = int(__version__.split(".")[0])
_ver_minor = int(__version__.split(".")[1])
Expand Down

0 comments on commit 224929e

Please sign in to comment.