PyPI package for 1) conversion cost values (less is better) to fitness values (more is better) and vice versa, 2) using fast neural networks for forward propagation
Project description
cost2fitness
PyPI package for conversion cost values (less is better) to fitness values (more is better) and vice versa
pip install cost2fitness
About
This is the package containing several methods for transformation numpy arrays depended on scales, averages and so on. But the primary way to use it is the conversion from cost values (less is better) to fitness values (more is better) and vice versa. It can be highly helpful when u r using
- evolutionary algorithms depended on numeric differences: so, it's important to set good representation of samples scores for better selection
- sampling methods with probabilities depended on samples scores
Transformers
There are several simple transformers. Each transformer is the subclass of BaseTransformer
class containing name
field and transform(array)
method which transforms input array to new representation.
Checklist:
ReverseByAverage
,AntiMax
,AntiMaxPercent(percent)
,Min2Zero
,Min2Value(value)
,ProbabilityView
(converts data to probabilities),SimplestReverse
,AlwaysOnes
(returns array of ones),NewAvgByMult(new_average)
,NewAvgByShift(new_average)
Divider(divider_number_or_array)
(divides array on number or array, useful for fixed start normalization)Argmax
(returns position of maximum element in array)Prob2Class(threshold = 0.5)
(to convert probabilities to classes 0/1)ToNumber
(converts array to one number by getting first element)
U can create your transformer using simple logic from file.
import numpy as np
from cost2fitness import Min2Zero
tf = Min2Zero()
arr_of_scores = np.array([10, 8, 7, 5, 8, 9, 20, 12, 6, 18])
tf.transform(arr_of_scores)
# array([ 5, 3, 2, 0, 3, 4, 15, 7, 1, 13])
Pipeline of transformers
U also can combine these transformers using Pl
pipeline. For example:
import numpy as np
from cost2fitness import ReverseByAverage, AntiMax, Min2Zero, Pl
pipe = Pl([
Min2Zero(),
ReverseByAverage(),
AntiMax()
])
arr_of_scores = np.array([10, 8, 7, 5, 8, 9])
# return each result of pipeline transformation (with input)
pipe.transform(arr_of_scores, return_all_steps= True)
#array([[10. , 8. , 7. , 5. , 8. ,
# 9. ],
# [ 5. , 3. , 2. , 0. , 3. ,
# 4. ],
# [ 0.66666667, 2.66666667, 3.66666667, 5.66666667, 2.66666667,
# 1.66666667],
# [ 5. , 3. , 2. , 0. , 3. ,
# 4. ]])
# return only result of transformation
pipe.transform(arr_of_scores, return_all_steps= False)
#array([5., 3., 2., 0., 3., 4.])
How to plot
There is plot_scores
function for plotting transformation process results. It has arguments:
scores
: 2D numpy array 2D numpy array with structure[start_values, first_transform(start_values), second_transform(first_transform), ...]
, where each object is 1D-array of scores (values/costs/fitnesses).names
:None
/string list, optional Names for each step for plot labels. The default isNone
.kind
: str, optional for 'beside' each new column will be beside previous; for 'under' there will be new plot under previous. The default is 'beside'.save_as
:None
/str, optional File path to save the plot. The default isNone
.
Examples with plotting
Each transformer
Pipeline
Neural net tools
I have made basic neural network tools here because it's very necessary to use simple networks with some reinforcement learning tasks, but common packages like Keras work extremely slow if u need just prediction (forward propagation) only for 1 sample but many times. So it will be faster to use simple numpy-based packages for these cases.
Layers
It was not so difficult to use this transformers logic for creating neural networks. So this package has next neural network layers as transformers:
-
Activations:
Softmax
Relu
LeakyRelu(alpha = 0.01)
Sigmoid
Tanh
ArcTan
Swish(beta = 0.25)
Softplus
Softsign
Elu(alpha)
Selu(alpha, scale)
-
Dense layers tools:
Bias(bias_len, bias_array = None)
-- to add bias with lengthbias_len
. Ifbias_array
isNone
, uses random biasMatrixDot(from_size, to_size, matrix_array = None)
NNStep(from_size, to_size, matrix_array = None, bias_array = None)
-- it'sMatrixDot
andBias
together, if u wanna create them faster
Helpers
And there are several helpers methods for using pipeline
object like neural network (only for forward propagation of course):
-
pipeline
objects methods:get_shapes()
-- to get list of shapes of needed array for NNtotal_weights()
-- get count of weights for overall NNset_weights(weights)
- set weights (as list of arrays with needed shapes) for NN
-
Alone functions:
arr_to_weigths(arr, shapes)
-- converts 1D-arrayarr
to list of arrays with shapesshapes
to put it inset_weights
method
Examples
See simplest example
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cost2fitness-2.0.7.tar.gz
.
File metadata
- Download URL: cost2fitness-2.0.7.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 712492ec0e815e18cf9e2592b5b68d42c5f59b381d2208d5728b2cbae8b21855 |
|
MD5 | e6e22b860f1fef55b82cd65dc6d735c0 |
|
BLAKE2b-256 | 03c7c1ba04217ce46dfe073d6d17cc8f5e6d54a627deb4f494d427103e4fedb1 |
File details
Details for the file cost2fitness-2.0.7-py3-none-any.whl
.
File metadata
- Download URL: cost2fitness-2.0.7-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbeaafdbd3b8b2af1bc131336c5c6b617d705d9e84d0719dcdc8c7521cf7a0ea |
|
MD5 | f8e278688a6f30753ee546d9943f9154 |
|
BLAKE2b-256 | f56669ecbf1758ff4b5f68c3d9d9778a515247c5568abc4adc71ffecee89e70a |