make the normalize node have n inputs and n outputs.
At first we were exited to find the normalize 2024 node, but then we saw it is just a vector normalize (3 inputs). We already had quad normalize and vector product (normalize checkbox), so this node brings nothing new to the table. We need a node for large amounts of inputs like weights or more complex situations (ie. rigging).
Please expand or make a new node (ie. n-normalize) having many in- and outputs map to each other. This should be across the board for all math nodes dimensionality should not be a limiting factor for basic math nodes.
please include a switch for various types like i.e. :
Min-Max Normalization (Rescaling):
normalized_value = (value - min_value) / (max_value - min_value)
Goal: Rescale the values within a specific range, typically between 0 and 1.
Explanation: This formula linearly transforms the values based on the minimum and maximum values in the dataset. It ensures that the minimum value is mapped to 0 and the maximum value is mapped to 1, with other values scaled proportionally in between.
Z-Score Normalization (Standardization):
normalized_value = (value - mean) / standard_deviation
Goal: Standardize the values to have a mean of 0 and a standard deviation of 1.
Explanation: This formula standardizes the values by subtracting the mean and dividing by the standard deviation. It helps in comparing values across different distributions and identifies how many standard deviations a value is away from the mean.
Decimal Scaling Normalization:
normalized_value = value / 10^d (where d is the number of decimal places to shift)
Goal: Shift the decimal places of the values to achieve normalization.
Explanation: This formula divides the values by a power of 10, shifting the decimal places. The number of decimal places to shift depends on the maximum value in the dataset. It simplifies calculations and maintains the relative order of values.
Log Transformation:
normalized_value = log(value)
Goal: Transform the values using logarithmic scaling.
Explanation: This formula applies a logarithmic function to the values. It compresses the range of large values, emphasizing smaller differences. It is useful when dealing with skewed data or when the ratio between values matters more than the absolute difference.
Sigmoidal Transformation:
normalized_value = 1 / (1 + exp(-value))
Goal: Map the values to a bounded range between 0 and 1 using a sigmoid function.
Explanation: This formula uses the sigmoid function to map values to the interval (0, 1). It compresses extreme values towards the upper and lower bounds while preserving the order of values. It is commonly used in machine learning for classification tasks.
Softmax Transformation:
normalized_value = exp(value) / sum(exp(all_values))
Goal: Normalize a set of values into a probability distribution.
Explanation: This formula exponentiates each value and divides it by the sum of exponentiated values across the dataset. It ensures that the resulting values sum up to 1, making them interpretable as probabilities. It is commonly used in multi-class classification problems.
Unit Vector Normalization (Vector Normalization or Euclidean Normalization):
normalized_value = value / sqrt(sum(value^2))
Goal: Scale vectors to have a length (magnitude) of 1.
Explanation: This formula divides each value by the Euclidean norm (magnitude) of the vector. It normalizes the vector to have a constant length, making it independent of the scale. It is useful in machine learning algorithms that rely on distance calculations.
Pareto Scaling (Square Root Transformation or Square Root Scaling):
normalized_value = sqrt(value)
Goal: Normalize values by taking the square root.
Explanation: This formula applies the square root function to the values. It reduces the impact of large values while preserving the relative order of values. It is useful when dealing with data that has a wide range of magnitudes.
Median-MAD Normalization (Median Absolute Deviation):
normalized_value = (value - median) / median_absolute_deviation
Goal: Normalize values by using the median and median absolute deviation.
Explanation: This formula subtracts the median from each value and divides it by the median absolute deviation (MAD). It provides robust normalization by considering the central tendency and spread of the data. It is helpful when dealing with outliers or non-normally distributed data.
Thank you.
- Tristan