functions
activity_pred(X)
¶
Compute activity predictions for each row in the input array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
2D array where each row is a configuration. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: 1D array of activity predictions. |
Examples:
>>> import numpy as np
>>> from spotpython.mo.functions import activity_pred
>>> # Example input data
>>> X = np.array([[1, 2, 3], [4, 5, 6]])
>>> activity_pred(X)
array([ 1.5, 10.5])
Source code in spotpython/mo/functions.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
conversion_pred(X)
¶
Compute conversion predictions for each row in the input array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
2D array where each row is a configuration. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: 1D array of conversion predictions. |
Examples:
>>> import numpy as np
>>> from spotpython.mo.functions import conversion_pred
>>> # Example input data
>>> X = np.array([[1, 2, 3], [4, 5, 6]])
>>> conversion_pred(X)
array([ 3.5, 19.5])
Source code in spotpython/mo/functions.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
fun_myer16a(X, fun_control=None)
¶
Compute both conversion and activity predictions for each row in the input array.
Notes
Implements a response surface experiment described by Myers, Montgomery, and Anderson-Cook (2016). The function computes two objectives: conversion and activity.
References
- Myers, R. H., Montgomery, D. C., and Anderson-Cook, C. M. Response surface methodology: process and product optimization using designed experiments. John Wiley & Sons, 2016.
- Kuhn, M. desirability: Function optimization and ranking via desirability functions. Tech. rep., 9 2016.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
2D array where each row is a configuration. |
required |
fun_control |
dict
|
Additional control parameters (not used here). |
None
|
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: 2D array where each row contains [conversion_pred, activity_pred]. |
Examples:
>>> import numpy as np
>>> from spotpython.mo.functions import fun_myer16a
>>> # Example input data
>>> X = np.array([[1, 2, 3], [4, 5, 6]])
>>> fun_myer16a(X)
array([[ 3.5, 1.5],
[ 19.5, 10.5]])
Source code in spotpython/mo/functions.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
|