Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RNL1 committed Nov 2, 2024
1 parent 84d7c88 commit f7f1311
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 65 deletions.
20 changes: 0 additions & 20 deletions Makefile

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ yhat_dipls, err = m.predict(X_test, y_test=[])

## How to apply mdi-PLS
```python
from diPLSlib.models import DIPLS as dipls
from diPLSlib.models import DIPLS

# Training
m = dipls(X, y, X_source, X_target, 2)
m = DIPLS(X, y, X_source, X_target, 2)
l = [100000] # Regularization
m.fit(l, target_domain=2)

Expand All @@ -48,10 +48,10 @@ yhat_dipls, err = m.predict(X_test, y_test=[])

## How to apply GCT-PLS
```python
from diPLSlib.models import GCTPLS as gctpls
from diPLSlib.models import GCTPLS

# Training
m = gctpls(X, y, X_source, X_target, 2)
m = GCTPLS(X, y, X_source, X_target, 2)
l = [100] # Regularization
m.fit(l)

Expand Down
16 changes: 16 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,22 @@ All notable changes to this project will be documented in this file.

[2.0.0]: https://github.com/B-Analytics/di-PLS/releases/tag/v2.0.0

## [2.1.0] - 2024-11-02
### Added
- utils submodule added to outsource utility functions.
- Documentation added

### Changed
- N/A

### Fixed
- N/A

### Removed
- N/A

[2.1.0]: https://github.com/B-Analytics/di-PLS/releases/tag/v2.1.0




Expand Down
10 changes: 5 additions & 5 deletions diPLSlib.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: diPLSlib
Version: 2.0.0
Version: 2.1.0
Summary: Python package for domain adaptation in multivariate regression
Home-page: https://github.com/B-Analytics/di-PLS
Author: Ramin Nikzad-Langerodi
Expand Down Expand Up @@ -48,10 +48,10 @@ yhat_dipls, err = m.predict(X_test, y_test=[])

## How to apply mdi-PLS
```python
from diPLSlib.models import DIPLS as dipls
from diPLSlib.models import DIPLS

# Training
m = dipls(X, y, X_source, X_target, 2)
m = DIPLS(X, y, X_source, X_target, 2)
l = [100000] # Regularization
m.fit(l, target_domain=2)

Expand All @@ -65,10 +65,10 @@ yhat_dipls, err = m.predict(X_test, y_test=[])

## How to apply GCT-PLS
```python
from diPLSlib.models import GCTPLS as gctpls
from diPLSlib.models import GCTPLS

# Training
m = gctpls(X, y, X_source, X_target, 2)
m = GCTPLS(X, y, X_source, X_target, 2)
l = [100] # Regularization
m.fit(l)

Expand Down
35 changes: 0 additions & 35 deletions make.bat

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="diPLSlib",
version="2.0.0",
version="2.1.0",
author="Ramin Nikzad-Langerodi",
author_email="[email protected]",
description="Python package for domain adaptation in multivariate regression",
Expand Down

0 comments on commit f7f1311

Please sign in to comment.