Skip to content

Commit

Permalink
Added a function to construct features derived from PFS mutual inform…
Browse files Browse the repository at this point in the history
…ation estimation that should be expected to be linearly related to the target.
  • Loading branch information
Yves-Laurent committed Apr 25, 2022
1 parent 0fbc516 commit f9b98fb
Show file tree
Hide file tree
Showing 15 changed files with 342 additions and 146 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -149,3 +149,5 @@ local_*.py
AutogluonModels*
*-PFSPredictor
*-PCAPredictor
*-LeanMLPredictor
*-NaivePredictor
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,12 @@

# Change Log

## v.1.4.10 Changes

* Added a function to construct features derived from PFS mutual information estimation that should be expected to be linearly related to the target.
* Fixed a global name conflict in `kxy.learning.base_learners`.


## v.1.4.9 Changes

* Change the activation function used by PFS from ReLU to switch/SILU.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
@@ -1,4 +1,4 @@
VERSION = 1.4.9
VERSION = 1.4.10

# Update the s3 bucket of the docs website
deploy_docs:
Expand Down Expand Up @@ -55,7 +55,7 @@ package_release:
make pypi_release
make github_release
timeout 5
# make docker_release_github
make docker_release_github
make docker_release


Expand Down
2 changes: 1 addition & 1 deletion docker/kxy/Dockerfile
Expand Up @@ -22,7 +22,7 @@ RUN pip install boto3==1.21.27
RUN pip install tqdm==4.62.3

# Install kxy
RUN pip install kxy==1.4.9
RUN pip install kxy==1.4.10

# Copy examples into the Notebooks folder
RUN git clone https://github.com/kxytechnologies/kxy-python.git /opt/kxy-python
Expand Down
2 changes: 1 addition & 1 deletion kxy/__init__.py
Expand Up @@ -19,7 +19,7 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
__version__ = "1.4.9"
__version__ = "1.4.10"

from kxy.api import *
from kxy.pre_learning import *
Expand Down

0 comments on commit f9b98fb

Please sign in to comment.