{ "info": { "author": "Antoine de Mathelin", "author_email": "antoine.demat@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# ADAPT\n\n[![PyPI version](https://badge.fury.io/py/adapt.svg)](https://pypi.org/project/adapt)\n[![Build Status](https://github.com/adapt-python/adapt/actions/workflows/run-test.yml/badge.svg)](https://github.com/adapt-python/adapt/actions)\n[![Python Version](https://img.shields.io/badge/python-3.8%20|%203.9%20|%203.10|%203.11-blue)](https://img.shields.io/badge/python-3.8%20|%203.9%20|%203.10|%203.11-blue)\n[![Codecov Status](https://codecov.io/gh/adapt-python/adapt/branch/master/graph/badge.svg?token=IWQXMYGY2Q)](https://codecov.io/gh/adapt-python/adapt)\n\n**A**wesome **D**omain **A**daptation **P**ython **T**oolbox\n\n---\n\nADAPT is an open source library providing numerous tools to perform Transfer Learning and Domain Adaptation.\n\nThe purpose of the ADAPT library is to facilitate the access to transfer learning algorithms for a large public, including industrial players. ADAPT is specifically designed for [Scikit-learn](https://scikit-learn.org/stable/) and [Tensorflow](https://www.tensorflow.org/) users with a \"user-friendly\" approach. All objects in ADAPT implement the ***fit***, ***predict*** and ***score*** methods like any scikit-learn object. A very detailed documentation with several examples is provided:\n\n:arrow_right: [Documentation](https://adapt-python.github.io/adapt/)\n\n\n \n \n \n \n \n \n \n \n
\n \n
\n Sample bias correction\n
\n
\n \n
\n
\n \n
\n Model-based Transfer\n
\n
\n \n
\n
\n \n
\n Deep Domain Adaptation\n
\n
\n \n
\n
\n \n
\n Multi-Fidelity Transfer\n
\n
\n \n
\n
\n\n## Installation and Usage\n\nThis package is available on [Pypi](https://pypi.org/project/adapt) and can be installed with the following command line: \n\n```\npip install adapt\n```\n\nThe following dependencies are required and will be installed with the library:\n- `numpy`\n- `scipy`\n- `tensorflow` (>= 2.0)\n- `scikit-learn`\n- `cvxopt`\n- `scikeras`\n\nIf for some reason, these packages failed to install, you can do it manually with:\n\n```\npip install numpy scipy tensorflow scikit-learn cvxopt scikeras\n```\n\nFinally import the module in your python scripts with:\n\n```python\nimport adapt\n```\n\nA simple example of usage is given in the [Quick-Start](#Quick-Start) below.\n\n### Stable environments [Updated Dec 2023]\n\nADAPT sometimes encounters incompatibility issue after a new Tensorflow release. In this case, you can use the following environment, which has passed all tests. ADAPT should work well on it:\n- OS: `ubuntu-22.04, windows-2022, macos-12`\n- Python versions: `3.8 to 3.11`\n\n```\npip install numpy==1.26.2 scipy==1.11.4 tensorflow==2.15.0 scikit-learn==1.3.2 cvxopt==1.3.2 scikeras==0.12.0\n```\n\n## ADAPT Guideline\n\nThe transfer learning methods implemented in ADAPT can be seen as scikit-learn \"Meta-estimators\" or tensorflow \"Custom Model\":\n\n\n\n\n\t\n\t\n\n\n\n
\n
\nAdapt Estimator\n
\n
\n\t\n```python\nAdaptEstimator(\n\testimator = \"\"\"A scikit-learn estimator\n\t (like Ridge(alpha=1.) for example)\n\t\t or a Tensorflow Model\"\"\",\n\tXt = \"The target input features\",\n\tyt = \"The target output labels (if any)\",\n\t**params = \"Hyper-parameters of the AdaptEstimator\"\n)\n```\n\t\n
\n
\nDeep Adapt Estimator\n
\n
\n\n\t\n```python\nDeepAdaptEstimator(\n\tencoder = \"A Tensorflow Model (if required)\",\n\ttask = \"A Tensorflow Model (if required)\",\n\tdiscriminator = \"A Tensorflow Model (if required)\",\n\tXt = \"The target input features\",\n\tyt = \"The target output labels (if any)\",\n\t**params = \"\"\"Hyper-parameters of the DeepAdaptEstimator and\n\t\t the compile and fit params (optimizer, epochs...)\"\"\"\n)\n```\n\t\n\n
\n
\nScikit-learn Meta-Estimator\n
\n
\n\t\n```python\nSklearnMetaEstimator(\n\tbase_estimator = \"\"\"A scikit-learn estimator\n\t\t\t (like Ridge(alpha=1.) for example)\"\"\",\n\t**params = \"Hyper-parameters of the SklearnMetaEstimator\"\n)\n```\n\t\n\n
\n\n\nAs you can see, the main difference between ADAPT models and scikit-learn and tensorflow objects is the two arguments `Xt, yt` which refer to the target data. Indeed, in classical machine learning, one assumes that the fitted model is applied on data distributed according to the training distribution. This is why, in this setting, one performs cross-validation and splits uniformly the training set to evaluate a model.\n\nIn the transfer learning framework, however, one assumes that the target data (on which the model will be used at the end) are not distributed like the source training data. Moreover, one assumes that the target distribution can be estimated and compared to the training distribution. Either because a small sample of labeled target data `Xt, yt` is available or because a large sample of unlabeled target data `Xt` is at one's disposal.\n\nThus, the transfer learning models from the ADAPT library can be seen as machine learning models that are fitted with a specific target in mind. This target is different but somewhat related to the training data. This is generally achieved by a transformation of the input features (see [feature-based transfer](https://adapt-python.github.io/adapt/contents.html#adapt-feature-based-feature-based-methods)) or by importance weighting (see [instance-based transfer](https://adapt-python.github.io/adapt/contents.html#adapt-instance-based)). In some cases, the training data are no more available but one aims at fine-tuning a pre-trained source model on a new target dataset (see [parameter-based transfer](https://adapt-python.github.io/adapt/contents.html#adapt-parameter-based)).\n\n\n## Navigate into ADAPT\n\nThe ADAPT library proposes numerous transfer algorithms and it can be hard to know which algorithm is best suited for a particular problem. If you do not know which algorithm to choose, this [flowchart](https://adapt-python.github.io/adapt/map.html) may help you:\n\n[](https://adapt-python.github.io/adapt/map.html)\n\n\n## Quick Start\n\nHere is a simple usage example of the ADAPT library. This is a simulation of a 1D sample bias problem with binary classification task. The source input data are distributed according to a Gaussian distribution centered in -1 with standard deviation of 2. The target data are drawn from Gaussian distribution centered in 1 with standard deviation of 2. The output labels are equal to 1 in the interval [-1, 1] and 0 elsewhere. We apply the transfer method [KMM](https://adapt-python.github.io/adapt/generated/adapt.instance_based.KMM.html) which is an unsupervised instance-based algorithm.\n\n```python\n# Import standard libraries\nimport numpy as np\nfrom sklearn.linear_model import LogisticRegression\n\n# Import KMM method form adapt.instance_based module\nfrom adapt.instance_based import KMM\n\nnp.random.seed(0)\n\n# Create source dataset (Xs ~ N(-1, 2))\n# ys = 1 for ys in [-1, 1] else, ys = 0\nXs = np.random.randn(1000, 1)*2-1\nys = (Xs[:, 0] > -1.) & (Xs[:, 0] < 1.)\n\n# Create target dataset (Xt ~ N(1, 2)), yt ~ ys\nXt = np.random.randn(1000, 1)*2+1\nyt = (Xt[:, 0] > -1.) & (Xt[:, 0] < 1.)\n\n# Instantiate and fit a source only model for comparison\nsrc_only = LogisticRegression(penalty=\"none\")\nsrc_only.fit(Xs, ys)\n\n# Instantiate a KMM model : estimator and target input\n# data Xt are given as parameters with the kernel parameters\nadapt_model = KMM(\n estimator=LogisticRegression(penalty=\"none\"), \n Xt=Xt,\n kernel=\"rbf\", # Gaussian kernel\n gamma=1., # Bandwidth of the kernel\n verbose=0,\n random_state=0\n)\n\n# Fit the model.\nadapt_model.fit(Xs, ys);\n\n# Get the score on target data\nadapt_model.score(Xt, yt)\n```\n```python\n>>> 0.574\n```\n\n| | \n|:--:| \n| **Quick-Start Plotting Results**. *The dotted and dashed lines are respectively the class separation of the \"source only\" and KMM models. Note that the predicted positive class is on the right of the dotted line for the \"source only\" model but on the left of the dashed line for KMM. (The code for plotting the Figure is available [here](https://adapt-python.github.io/adapt/examples/Quick_start.html))* |\n\n\n## Contents\n\nADAPT package is divided in three sub-modules containing the following domain adaptation methods:\n\n### Feature-based methods\n\n\n\n- [FA](https://adapt-python.github.io/adapt/generated/adapt.feature_based.FA.html) (*Frustratingly Easy Domain Adaptation*) [[paper]](https://arxiv.org/pdf/0907.1815.pdf)\n- [SA](https://adapt-python.github.io/adapt/generated/adapt.feature_based.SA.html) (*Subspace Alignment*) [[paper]](https://arxiv.org/abs/1409.5241)\n- [fMMD](https://adapt-python.github.io/adapt/generated/adapt.feature_based.fMMD.html) (*feature Selection with MMD*) [[paper]](https://www.cs.cmu.edu/afs/cs/Web/People/jgc/publication/Feature%20Selection%20for%20Transfer%20Learning.pdf)\n- [DANN](https://adapt-python.github.io/adapt/generated/adapt.feature_based.DANN.html) (*Discriminative Adversarial Neural Network*) [[paper]](https://jmlr.org/papers/volume17/15-239/15-239.pdf)\n- [ADDA](https://adapt-python.github.io/adapt/generated/adapt.feature_based.ADDA.html) (*Adversarial Discriminative Domain Adaptation*) [[paper]](https://arxiv.org/pdf/1702.05464.pdf)\n- [CORAL](https://adapt-python.github.io/adapt/generated/adapt.feature_based.CORAL.html) (*CORrelation ALignment*) [[paper]](https://arxiv.org/pdf/1511.05547.pdf)\n- [DeepCORAL](https://adapt-python.github.io/adapt/generated/adapt.feature_based.DeepCORAL.html) (*Deep CORrelation ALignment*) [[paper]](https://arxiv.org/pdf/1607.01719.pdf)\n- [MCD](https://adapt-python.github.io/adapt/generated/adapt.feature_based.MCD.html) (*Maximum Classifier Discrepancy*) [[paper]](https://arxiv.org/pdf/1712.02560.pdf)\n- [MDD](https://adapt-python.github.io/adapt/generated/adapt.feature_based.MDD.html) (*Margin Disparity Discrepancy*) [[paper]](https://arxiv.org/pdf/1904.05801.pdf)\n- [WDGRL](https://adapt-python.github.io/adapt/generated/adapt.feature_based.WDGRL.html) (*Wasserstein Distance Guided Representation Learning*) [[paper]](https://arxiv.org/pdf/1707.01217.pdf)\n- [CDAN](https://adapt-python.github.io/adapt/generated/adapt.feature_based.CDAN.html) (*Conditional Adversarial Domain Adaptation*) [[paper]](https://arxiv.org/pdf/1705.10667.pdf)\n- [CCSA](https://adapt-python.github.io/adapt/generated/adapt.feature_based.CCSA.html) (*Classification and Contrastive Semantic Alignment*) [[paper]](https://arxiv.org/abs/1709.10190)\n\n### Instance-based methods\n\n\n\n- [LDM](https://adapt-python.github.io/adapt/generated/adapt.instance_based.LDM.html) (*Linear Discrepancy Minimization*) [[paper]](https://arxiv.org/pdf/0902.3430.pdf)\n- [KMM](https://adapt-python.github.io/adapt/generated/adapt.instance_based.KMM.html) (*Kernel Mean Matching*) [[paper]](https://proceedings.neurips.cc/paper/2006/file/a2186aa7c086b46ad4e8bf81e2a3a19b-Paper.pdf)\n- [KLIEP](https://adapt-python.github.io/adapt/generated/adapt.instance_based.KLIEP.html) (*Kullback\u00e2\u20ac\u201cLeibler Importance Estimation Procedure*) [[paper]](https://proceedings.neurips.cc/paper/2007/file/be83ab3ecd0db773eb2dc1b0a17836a1-Paper.pdf)\n- [TrAdaBoost](https://adapt-python.github.io/adapt/generated/adapt.instance_based.TrAdaBoost.html) (*Transfer AdaBoost*) [[paper]](https://cse.hkust.edu.hk/~qyang/Docs/2007/tradaboost.pdf)\n- [TrAdaBoostR2](https://adapt-python.github.io/adapt/generated/adapt.instance_based.TrAdaBoostR2.html) (*Transfer AdaBoost for Regression*) [[paper]](https://www.cs.utexas.edu/~dpardoe/papers/ICML10.pdf)\n- [TwoStageTrAdaBoostR2](https://adapt-python.github.io/adapt/generated/adapt.instance_based.TwoStageTrAdaBoostR2.html) (*Two Stage Transfer AdaBoost for Regression*) [[paper]](https://www.cs.utexas.edu/~dpardoe/papers/ICML10.pdf)\n- [NearestNeighborsWeighting](https://adapt-python.github.io/adapt/generated/adapt.instance_based.NearestNeighborsWeighting.html) (*Nearest Neighbors Weighting*) [[paper]](https://arxiv.org/pdf/2102.02291.pdf)\n- [WANN](https://adapt-python.github.io/adapt/generated/adapt.instance_based.WANN.html) (*Weighting Adversarial Neural Network*) [[paper]](https://arxiv.org/pdf/2006.08251.pdf)\n\n### Parameter-based methods\n\n\n\n- [RegularTransferLR](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.RegularTransferLR.html) (*Regular Transfer with Linear Regression*) [[paper]](https://www.microsoft.com/en-us/research/wp-content/uploads/2004/07/2004-chelba-emnlp.pdf)\n- [RegularTransferLC](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.RegularTransferLC.html) (*Regular Transfer with Linear Classification*) [[paper]](https://www.microsoft.com/en-us/research/wp-content/uploads/2004/07/2004-chelba-emnlp.pdf)\n- [RegularTransferNN](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.RegularTransferNN.html) (*Regular Transfer with Neural Network*) [[paper]](https://hal.inria.fr/hal-00911179v1/document)\n- [FineTuning](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.FineTuning.html) (*Fine-Tuning*) [[paper]](https://hal.inria.fr/hal-00911179v1/document)\n- [TransferTreeClassifier](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.TransferTreeClassifier.html) (*Transfer Tree Classifier*) [[paper]](https://ieeexplore.ieee.org/document/8995296)\n- [TransferTreeForest](https://adapt-python.github.io/adapt/generated/adapt.parameter_based.TransferTreeForest.html) (*Transfer Tree Forest*) [[paper]](https://ieeexplore.ieee.org/document/8995296)\n\n\n## Reference\n\nIf you use this library in your research, please cite ADAPT using the following reference: https://arxiv.org/pdf/2107.03049.pdf\n\n```\n@article{de2021adapt,\n\t title={ADAPT: Awesome Domain Adaptation Python Toolbox},\n\t author={de Mathelin, Antoine and Deheeger, Fran{\\c{c}}ois and Richard, Guillaume and Mougeot, Mathilde and Vayatis, Nicolas},\n\t journal={arXiv preprint arXiv:2107.03049},\n\t year={2021}\n\t}\n```\n\n## Acknowledgement\n\nThis work has been funded by Michelin and the Industrial Data Analytics and Machine Learning chair from ENS Paris-Saclay, Borelli center.\n\n[\"Michelin\"](https://www.michelin.com/) [\"IDAML\"](https://centreborelli.ens-paris-saclay.fr/fr/chaire-idaml) [\"Centre](https://centreborelli.ens-paris-saclay.fr/fr)", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/adapt-python/adapt.git", "keywords": "", "license": "BSD-2", "maintainer": "", "maintainer_email": "", "name": "adapt", "package_url": "https://pypi.org/project/adapt/", "platform": null, "project_url": "https://pypi.org/project/adapt/", "project_urls": { "Homepage": "https://github.com/adapt-python/adapt.git" }, "release_url": "https://pypi.org/project/adapt/0.4.4/", "requires_dist": null, "requires_python": "", "summary": "Awesome Domain Adaptation Python Toolbox for Tensorflow and Scikit-learn", "version": "0.4.4", "yanked": false, "yanked_reason": null }, "last_serial": 21040393, "releases": { "0.1": [], "0.2.0": [ { "comment_text": "", "digests": { "blake2b_256": "6bfdfbf2f0b8558ff03c33395c808788c7af00a22f08800a00ba9b36e9e8966c", "md5": "18217d67f4e153a11671c50ca5beebda", "sha256": "4f6c25b2dd26c12ee7c0bae18f09210c4e4e3df8c9fb7efe01864e0d9cf6942d" }, "downloads": -1, "filename": "adapt-0.2.0.tar.gz", "has_sig": false, "md5_digest": "18217d67f4e153a11671c50ca5beebda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42005, "upload_time": "2021-08-31T08:29:01", "upload_time_iso_8601": "2021-08-31T08:29:01.570896Z", "url": "https://files.pythonhosted.org/packages/6b/fd/fbf2f0b8558ff03c33395c808788c7af00a22f08800a00ba9b36e9e8966c/adapt-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "blake2b_256": "bbfed4a3123cd4a5410323641d077b6c3c4d64f0a04f789fcd29a50102ebdde5", "md5": "640f099bc7c74856a7fc09725813882e", "sha256": "12ab0a133d5fd5c1be9434ddb9009839587bd9a3ede7a1e474161d5113666925" }, "downloads": -1, "filename": "adapt-0.2.1.tar.gz", "has_sig": false, "md5_digest": "640f099bc7c74856a7fc09725813882e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43589, "upload_time": "2021-08-31T08:45:50", "upload_time_iso_8601": "2021-08-31T08:45:50.122780Z", "url": "https://files.pythonhosted.org/packages/bb/fe/d4a3123cd4a5410323641d077b6c3c4d64f0a04f789fcd29a50102ebdde5/adapt-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "blake2b_256": "d94cc940b5078e9100fc7bdd7ca181740ba32e386cc48361243c43542f6e2c43", "md5": "7a62771f55d5292bc1fd17890c569a0b", "sha256": "958f2841eba8ed358c44248c214f214a6ef95788248286af0cfa13aba946c613" }, "downloads": -1, "filename": "adapt-0.2.2.tar.gz", "has_sig": false, "md5_digest": "7a62771f55d5292bc1fd17890c569a0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47368, "upload_time": "2021-09-08T15:23:27", "upload_time_iso_8601": "2021-09-08T15:23:27.631251Z", "url": "https://files.pythonhosted.org/packages/d9/4c/c940b5078e9100fc7bdd7ca181740ba32e386cc48361243c43542f6e2c43/adapt-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "blake2b_256": "a8433e5e978f734e98d3fb76338281625a5fbe90f754f473a6fd0ed0d322bb0d", "md5": "2ea4a2c6b825024d6152588532307f4d", "sha256": "010eec19d9a01d0bbf7258554f671817cc7fc27a601830abcf3c444507b04465" }, "downloads": -1, "filename": "adapt-0.2.3.tar.gz", "has_sig": false, "md5_digest": "2ea4a2c6b825024d6152588532307f4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47364, "upload_time": "2021-09-08T15:34:43", "upload_time_iso_8601": "2021-09-08T15:34:43.131914Z", "url": "https://files.pythonhosted.org/packages/a8/43/3e5e978f734e98d3fb76338281625a5fbe90f754f473a6fd0ed0d322bb0d/adapt-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "blake2b_256": "e7af0d121229f9f95bdb1e4d46d0aeb6e2af289dff939d1a64be578b81bcad35", "md5": "926c00a7bf9c18912b4e88c8339213f4", "sha256": "4a7c1c5aa95654c7d6e3ee1f42e113f780238bdc22b3641249b551be5d31bfa3" }, "downloads": -1, "filename": "adapt-0.2.4.tar.gz", "has_sig": false, "md5_digest": "926c00a7bf9c18912b4e88c8339213f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47405, "upload_time": "2021-09-08T15:48:15", "upload_time_iso_8601": "2021-09-08T15:48:15.450368Z", "url": "https://files.pythonhosted.org/packages/e7/af/0d121229f9f95bdb1e4d46d0aeb6e2af289dff939d1a64be578b81bcad35/adapt-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "blake2b_256": "c92c713a3f8b938ea7cb3287e74840077df9f9f3665399760c5bcff815cb94ef", "md5": "c38241d382338d6755bf466991a8672b", "sha256": "84231e7edaeaba8cd69e95cef026e9071b3925329a2dbb61861c060152c0a94c" }, "downloads": -1, "filename": "adapt-0.2.5.tar.gz", "has_sig": false, "md5_digest": "c38241d382338d6755bf466991a8672b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47447, "upload_time": "2021-09-08T15:57:46", "upload_time_iso_8601": "2021-09-08T15:57:46.163965Z", "url": "https://files.pythonhosted.org/packages/c9/2c/713a3f8b938ea7cb3287e74840077df9f9f3665399760c5bcff815cb94ef/adapt-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "blake2b_256": "5e3de754f3591a6142ebcf789a88b9772cc463335a3b77a83f3f7c0995a06db2", "md5": "d704e8c5c88797c05aaec2fa09806246", "sha256": "1be8bc4eaa46cd4d49eb4af99a9bbb2b5e5494d051b3bc11845a11c5423624f4" }, "downloads": -1, "filename": "adapt-0.2.6.tar.gz", "has_sig": false, "md5_digest": "d704e8c5c88797c05aaec2fa09806246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47460, "upload_time": "2021-09-08T16:04:45", "upload_time_iso_8601": "2021-09-08T16:04:45.129833Z", "url": "https://files.pythonhosted.org/packages/5e/3d/e754f3591a6142ebcf789a88b9772cc463335a3b77a83f3f7c0995a06db2/adapt-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.7": [ { "comment_text": "", "digests": { "blake2b_256": "6e6c433318f0657eaf9290d5b2c211dcfff66fe308246fc13ead82564b74fd99", "md5": "f7d283894f4ce34f807e8e358a3f32ab", "sha256": "03352fc76536113ed58203572371c50a54aec3c0ac2cd156b17a1e0d82223dcf" }, "downloads": -1, "filename": "adapt-0.2.7.tar.gz", "has_sig": false, "md5_digest": "f7d283894f4ce34f807e8e358a3f32ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47457, "upload_time": "2021-09-09T07:05:46", "upload_time_iso_8601": "2021-09-09T07:05:46.744546Z", "url": "https://files.pythonhosted.org/packages/6e/6c/433318f0657eaf9290d5b2c211dcfff66fe308246fc13ead82564b74fd99/adapt-0.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.8": [ { "comment_text": "", "digests": { "blake2b_256": "58e973b7268131c63a3505c49e2a4ff79a27b1524d9a77b4454cfb64c996fbf2", "md5": "b7c5ff3cca45286c7d5fe9a61f2b5fed", "sha256": "4781d5dbe894b1972730b664c034373a3d538fdfaafaf94778484c520732909c" }, "downloads": -1, "filename": "adapt-0.2.8.tar.gz", "has_sig": false, "md5_digest": "b7c5ff3cca45286c7d5fe9a61f2b5fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47454, "upload_time": "2021-09-21T10:24:46", "upload_time_iso_8601": "2021-09-21T10:24:46.721397Z", "url": "https://files.pythonhosted.org/packages/58/e9/73b7268131c63a3505c49e2a4ff79a27b1524d9a77b4454cfb64c996fbf2/adapt-0.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.9": [ { "comment_text": "", "digests": { "blake2b_256": "007272cdac68b0e20096bb5aafeb2c7cf9f0d8ac7c9871f9527711c324465a28", "md5": "63c4f0e0dd335550f48817306c1f041b", "sha256": "5983a5267932923c4d86e9b8a669d06e37277b7278c3760f28131cd8d38c9de8" }, "downloads": -1, "filename": "adapt-0.2.9.tar.gz", "has_sig": false, "md5_digest": "63c4f0e0dd335550f48817306c1f041b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50284, "upload_time": "2021-10-18T17:23:25", "upload_time_iso_8601": "2021-10-18T17:23:25.336390Z", "url": "https://files.pythonhosted.org/packages/00/72/72cdac68b0e20096bb5aafeb2c7cf9f0d8ac7c9871f9527711c324465a28/adapt-0.2.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "blake2b_256": "0e3569f9990dd9e8b83a38b2e34ffbf3d0faff4680c41905328b1ef6e67d8ea8", "md5": "f93f65c8913b27b6d0ba7c78bfcea224", "sha256": "fbb449d3c29284ea409d27b0da59309d3c90e13b32be2879ec02bfa8b3098a26" }, "downloads": -1, "filename": "adapt-0.3.0.tar.gz", "has_sig": false, "md5_digest": "f93f65c8913b27b6d0ba7c78bfcea224", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64553, "upload_time": "2022-01-31T13:58:49", "upload_time_iso_8601": "2022-01-31T13:58:49.741662Z", "url": "https://files.pythonhosted.org/packages/0e/35/69f9990dd9e8b83a38b2e34ffbf3d0faff4680c41905328b1ef6e67d8ea8/adapt-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "blake2b_256": "12b620341b8fcbcc116187941ac3ccbacb1a8d5af64d10d6f45fb1959c258f0d", "md5": "3f466b86703090ee25aa54d7b8a25e91", "sha256": "50e0b17c03e43b1f1d76a40b1787a7733e001950290037b92f9c760282449ab9" }, "downloads": -1, "filename": "adapt-0.3.1.tar.gz", "has_sig": false, "md5_digest": "3f466b86703090ee25aa54d7b8a25e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55048, "upload_time": "2022-02-21T19:20:37", "upload_time_iso_8601": "2022-02-21T19:20:37.830883Z", "url": "https://files.pythonhosted.org/packages/12/b6/20341b8fcbcc116187941ac3ccbacb1a8d5af64d10d6f45fb1959c258f0d/adapt-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "blake2b_256": "cffddde6400193367f471a30e9d0253b40d03043dc77f1d4562b4a4ae9f497c2", "md5": "62b1a7c28a591736d2887d8d0f754265", "sha256": "c8a6f0b381f2b50f2c7fa28f5f7f231cf9db1e267e3f23437b86f196736a0986" }, "downloads": -1, "filename": "adapt-0.4.0.tar.gz", "has_sig": false, "md5_digest": "62b1a7c28a591736d2887d8d0f754265", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78022, "upload_time": "2022-03-28T13:43:30", "upload_time_iso_8601": "2022-03-28T13:43:30.787564Z", "url": "https://files.pythonhosted.org/packages/cf/fd/dde6400193367f471a30e9d0253b40d03043dc77f1d4562b4a4ae9f497c2/adapt-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "blake2b_256": "9a742957f3a57b81c1ab87826de06c4084818112f6e508fde0d4b20074c9dfb2", "md5": "1872b4c73216af48fd90a7185df023f1", "sha256": "0d4e459918ba1a048de6a32c8285fcbb3889101d4a0103ed97755ca21a50384f" }, "downloads": -1, "filename": "adapt-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1872b4c73216af48fd90a7185df023f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83079, "upload_time": "2022-05-09T19:04:35", "upload_time_iso_8601": "2022-05-09T19:04:35.544223Z", "url": "https://files.pythonhosted.org/packages/9a/74/2957f3a57b81c1ab87826de06c4084818112f6e508fde0d4b20074c9dfb2/adapt-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "blake2b_256": "d545601daeb1a7af4e4d97950c7f020946052fe4785f2b671dd6174a7177c1e4", "md5": "66d287964e700d8ef906507614dffda6", "sha256": "1afb8afdaee68354c72d2ba2ad1e9ea9a193174afb8b35b18ed59876bf48e3da" }, "downloads": -1, "filename": "adapt-0.4.2.tar.gz", "has_sig": false, "md5_digest": "66d287964e700d8ef906507614dffda6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99801, "upload_time": "2022-09-17T16:48:45", "upload_time_iso_8601": "2022-09-17T16:48:45.408465Z", "url": "https://files.pythonhosted.org/packages/d5/45/601daeb1a7af4e4d97950c7f020946052fe4785f2b671dd6174a7177c1e4/adapt-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "blake2b_256": "380981c15a6fcf5d1b5e80cf6875370e039c5a7f744045b17dfa65dca511a694", "md5": "39786d2b01122e7e17e3d3445d6e20d7", "sha256": "6df7790b94bdc4e7f3a73a0932ef72d109e0264f795e2bd4e001850ef06c9d65" }, "downloads": -1, "filename": "adapt-0.4.3.tar.gz", "has_sig": false, "md5_digest": "39786d2b01122e7e17e3d3445d6e20d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109432, "upload_time": "2023-06-19T06:53:40", "upload_time_iso_8601": "2023-06-19T06:53:40.284998Z", "url": "https://files.pythonhosted.org/packages/38/09/81c15a6fcf5d1b5e80cf6875370e039c5a7f744045b17dfa65dca511a694/adapt-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "blake2b_256": "e8a46afbc13f7848544a2a9126ef86f0f95af085ec77f79a4e65430ff621ce7e", "md5": "4ad89f042f6903ab8258871ddabf3505", "sha256": "136f73ea26ecd15acadcdb4a479f05932a1f9f4c008bf8531bd5ff2ca20cf6ae" }, "downloads": -1, "filename": "adapt-0.4.4.tar.gz", "has_sig": false, "md5_digest": "4ad89f042f6903ab8258871ddabf3505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100883, "upload_time": "2023-12-13T13:40:47", "upload_time_iso_8601": "2023-12-13T13:40:47.643034Z", "url": "https://files.pythonhosted.org/packages/e8/a4/6afbc13f7848544a2a9126ef86f0f95af085ec77f79a4e65430ff621ce7e/adapt-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "e8a46afbc13f7848544a2a9126ef86f0f95af085ec77f79a4e65430ff621ce7e", "md5": "4ad89f042f6903ab8258871ddabf3505", "sha256": "136f73ea26ecd15acadcdb4a479f05932a1f9f4c008bf8531bd5ff2ca20cf6ae" }, "downloads": -1, "filename": "adapt-0.4.4.tar.gz", "has_sig": false, "md5_digest": "4ad89f042f6903ab8258871ddabf3505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100883, "upload_time": "2023-12-13T13:40:47", "upload_time_iso_8601": "2023-12-13T13:40:47.643034Z", "url": "https://files.pythonhosted.org/packages/e8/a4/6afbc13f7848544a2a9126ef86f0f95af085ec77f79a4e65430ff621ce7e/adapt-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }