Skip to main content

CrossTrainer: Practical Domain Adaptation with Loss Reweighting

Project description

# CrossTrainer: Practical Domain Adaptation with Loss Reweighting

This is an implementation of the method described in "CrossTrainer: Practical Domain Adaptation with Loss Reweighting" by Justin Chen, Edward Gan, Kexin Rong, Sahaana Suri, and Peter Bailis.

### Install
The crosstrainer package can be installed using pip.

```
pip install crosstrainer
```

### Usage

CrossTrainer utilizes loss reweighting to train machine learning models using data from a target task with supplementary source data.

##### Inputs:
Base model, target data, source data.

##### Outputs:
Trained model with optimized weighting parameter alpha.

##### Example:

```python
import crosstrainer
from sklearn import linear_model

lr = linear_model.LogisticRegression()
ct = CrossTrainer(lr, k=5, delta=0.01)
lr, alpha = ct.fit(X_target, y_target, X_source, y_source)
y_pred = lr.predict(X_test)
```

More examples can be found in the tests file: ```crosstrainer/tests/test_crosstrainer.py```.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

crosstrainer-0.1.4-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page