Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions howso/react.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(null

;Run reacts in a batch, output a an assoc of list of outputs from each individual react.
;{long_running (true) statistically_idempotent (true)}
;{long_running (true) statistically_idempotent (true) read_only (true)}
#react
(declare
;returns {ref "ReactResponse"}
Expand Down Expand Up @@ -550,7 +550,7 @@
; Details example: { 'action_values': [2, "a", .75384], 'action_features' : ['width','name','height'], 'residual_conviction': 1.3,
; 'influential_cases' : etc... }
; See API docs for documentation of all output properties
;{long_running (true) statistically_idempotent (true)}
;{long_running (true) statistically_idempotent (true) read_only (true)}
#single_react
(declare
(assoc
Expand Down Expand Up @@ -1351,7 +1351,6 @@
;update the appropriate hyperparameter set
(assign_to_entities (assoc !hyperparameterMetadataMap (set !hyperparameterMetadataMap (get hyperparam_map "paramPath") hyperparam_map)) )
)
(accum_to_entities (assoc !revision 1))
)
)

Expand Down
4 changes: 2 additions & 2 deletions howso/react_series.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;React in a series until a series_stop_map condition is met. Aggregates rows of data corresponding to the specified context, action,
;derived_context and derived_action features, utilizing previous rows to derive values as necessary. Outputs an assoc of "action_features" and
;corresponding "series" where "series" is the completed 'matrix' for the corresponding action_features and derived_action_features.
;{long_running (true) statistically_idempotent (true)}
;{long_running (true) statistically_idempotent (true) read_only (true)}
#single_react_series
(declare
(assoc
Expand Down Expand Up @@ -310,7 +310,7 @@
;React in a series until a series_stop_map condition is met. Aggregates rows of data corresponding to the specified context, action,
;derived_context and derived_action features, utilizing previous rows to derive values as necessary. Outputs an assoc of "action_features" and
;corresponding "series" where "series" is the completed 'matrix' for the corresponding action_features and derived_action_features.
;{long_running (true) statistically_idempotent (true)}
;{long_running (true) statistically_idempotent (true) read_only (true)}
#react_series
(declare
;returns {ref "ReactSeriesResponse"}
Expand Down