Skip to content

Releases: kxytechnologies/kxy-python

v1.4.10: Added a function to construct features derived from PFS mutual inform…

25 Apr 12:38
Compare
Choose a tag to compare

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.
  • Leaving it to the user to set the logging level.

v.1.4.8 Changes

  • Froze the versions of all python packages in the docker file.

v.1.4.7 Changes

Changes related to optimizing Principal Feature Selection.

  • Made it easy to change PFS' default learning parameters.
  • Changed PFS' default learning parameters (learning rate is now 0.005 and epsilon 1e-04)
  • Adding a seed parameter to PFS' fit for reproducibility.

To globally change the learning rate to 0.003, change Adam's epsilon to 1e-5, and the number of epochs to 25, do

from kxy.misc.tf import set_default_parameter
set_default_parameter('lr', 0.003)
set_default_parameter('epsilon', 1e-5)
set_default_parameter('epochs', 25)

To change the number epochs for a single iteration of PFS, use the epochs argument of the fit method of your PFS object. The fit method now also has a seed parameter you may use to make the PFS implementation deterministic.

Example:

from kxy.pfs import PFS
selector = PFS()
selector.fit(x, y, epochs=25, seed=123)

Alternatively, you may also use the kxy.misc.tf.set_seed method to make PFS deterministic.

v.1.4.6 Changes

Minor PFS improvements.

  • Adding more (robust) mutual information loss functions.
  • Exposing the learned total mutual information between principal features and target as an attribute of PFS.
  • Exposing the number of epochs as a parameter of PFS' fit.

v1.4.9

12 Apr 20:34
Compare
Choose a tag to compare

Change Log

v.1.4.9 Changes

  • Change the activation function used by PFS from ReLU to switch/SILU.
  • Leaving it to the user to set the logging level.

v.1.4.8 Changes

  • Froze the versions of all python packages in the docker file.

v.1.4.7 Changes

Changes related to optimizing Principal Feature Selection.

  • Made it easy to change PFS' default learning parameters.
  • Changed PFS' default learning parameters (learning rate is now 0.005 and epsilon 1e-04)
  • Adding a seed parameter to PFS' fit for reproducibility.

To globally change the learning rate to 0.003, change Adam's epsilon to 1e-5, and the number of epochs to 25, do

from kxy.misc.tf import set_default_parameter
set_default_parameter('lr', 0.003)
set_default_parameter('epsilon', 1e-5)
set_default_parameter('epochs', 25)

To change the number epochs for a single iteration of PFS, use the epochs argument of the fit method of your PFS object. The fit method now also has a seed parameter you may use to make the PFS implementation deterministic.

Example:

from kxy.pfs import PFS
selector = PFS()
selector.fit(x, y, epochs=25, seed=123)

Alternatively, you may also use the kxy.misc.tf.set_seed method to make PFS deterministic.

v.1.4.6 Changes

Minor PFS improvements.

  • Adding more (robust) mutual information loss functions.
  • Exposing the learned total mutual information between principal features and target as an attribute of PFS.
  • Exposing the number of epochs as a parameter of PFS' fit.

v1.4.8

11 Apr 03:25
Compare
Choose a tag to compare

Change Log

v.1.4.8 Changes

  • Froze the versions of all python packages in the docker file.

v.1.4.7 Changes

Changes related to optimizing Principal Feature Selection.

  • Made it easy to change PFS' default learning parameters.
  • Changed PFS' default learning parameters (learning rate is now 0.005 and epsilon 1e-04)
  • Adding a seed parameter to PFS' fit for reproducibility.

To globally change the learning rate to 0.003, change Adam's epsilon to 1e-5, and the number of epochs to 25, do

from kxy.misc.tf import set_default_parameter
set_default_parameter('lr', 0.003)
set_default_parameter('epsilon', 1e-5)
set_default_parameter('epochs', 25)

To change the number epochs for a single iteration of PFS, use the epochs argument of the fit method of your PFS object. The fit method now also has a seed parameter you may use to make the PFS implementation deterministic.

Example:

from kxy.pfs import PFS
selector = PFS()
selector.fit(x, y, epochs=25, seed=123)

Alternatively, you may also use the kxy.misc.tf.set_seed method to make PFS deterministic.

v.1.4.6 Changes

Minor PFS improvements.

  • Adding more (robust) mutual information loss functions.
  • Exposing the learned total mutual information between principal features and target as an attribute of PFS.
  • Exposing the number of epochs as a parameter of PFS' fit.

v1.4.7

10 Apr 18:17
Compare
Choose a tag to compare

Change Log

v.1.4.7 Changes

Changes related to optimizing Principal Feature Selection.

  • Made it easy to change PFS' default learning parameters.
  • Changed PFS' default learning parameters (learning rate is now 0.005 and epsilon 1e-04)
  • Adding a seed parameter to PFS' fit for reproducibility.

To globally change the learning rate to 0.003, change Adam's epsilon to 1e-5, and the number of epochs to 25, do

from kxy.misc.tf import set_default_parameter
set_default_parameter('lr', 0.003)
set_default_parameter('epsilon', 1e-5)
set_default_parameter('epochs', 25)

To change the number epochs for a single iteration of PFS, use the epochs argument of the fit method of your PFS object. The fit method now also has a seed parameter you may use to make the PFS implementation deterministic.

Example:

from kxy.pfs import PFS
selector = PFS()
selector.fit(x, y, epochs=25, seed=123)

Alternatively, you may also use the kxy.misc.tf.set_seed method to make PFS deterministic.

v.1.4.6 Changes

Minor PFS improvements.

  • Adding more (robust) mutual information loss functions.
  • Exposing the learned total mutual information between principal features and target as an attribute of PFS.
  • Exposing the number of epochs as a parameter of PFS' fit.

v1.4.6

10 Apr 03:23
Compare
Choose a tag to compare

Changes

  • Adding more (robust) mutual information loss functions.
  • Exposing the learned total mutual information between principal features and target as an attribute of PFS.
  • Exposing the number of epochs as a parameter of PFS' fit.

v1.4.5

09 Apr 23:55
Compare
Choose a tag to compare

Fixing some package incompatibilities.

v1.4.4

08 Apr 22:32
Compare
Choose a tag to compare

Adding Principal Feature Selection.

Adding an option to anonymize explanatory variables before uploading the data in most df.kxy.* methods.

01 Jul 04:09
Compare
Choose a tag to compare

Removing statsmodels from requirements

23 Mar 03:27
Compare
Choose a tag to compare
1.0.3

Removing statsmodels from requirements

Making the license more permissive (AGPLv3 -> GPLv3)

16 Mar 16:51
Compare
Choose a tag to compare