Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src/agent_mgr/signal_aggregator.erl has "The are many other", should do "There are many other" #2

Open
ETERNALBLUEbullrun opened this issue Feb 16, 2024 · 0 comments

Comments

@ETERNALBLUEbullrun
Copy link

https://github.com/Rober-t/apxr_run/blob/master/src/agent_mgr/signal_aggregator.erl
0001-The-are-many-other-There-are-many-other.patch
Above Git patch, or below diff fix

diff --git a/src/agent_mgr/signal_aggregator.erl b/src/agent_mgr/signal_aggregator.erl
index c903663..2e73abc 100644
--- a/src/agent_mgr/signal_aggregator.erl
+++ b/src/agent_mgr/signal_aggregator.erl
@@ -34,9 +34,9 @@
 %%%      composes the scalar value by aggregating the input vectors, and then
 %%%      calculating the dot product of the input vectors and the synaptic
 %%%      weights. Another way to calculate a scalar value from the input and
-%%%      weight vectors is by multiplying the corresponding input signals by
+%o%%      weight vectors is by multiplying the corresponding input signals by
 %%%      their weights, but instead of adding the resulting multiplied values,
-%%%      we multiply them. The are many other types of aggregation functions
+%%%      we multiply them. There are many other types of aggregation functions
 %%%      that could be created. We can also add normalizer functions, which
 %%%      could normalize the input signals. The normalizers could be
 %%%      implemented as part of the aggregator functions, although it
@@ -145,4 +145,4 @@ mult_product([], [], Acc) ->
 mult([I | Input], [{W, _LPs} | WeightsP], Acc) ->
   mult(Input, WeightsP, I * W * Acc);
 mult([], [], Acc) ->
-  Acc.
\ No newline at end of file
+  Acc.
@ETERNALBLUEbullrun ETERNALBLUEbullrun changed the title src/agent_mgr/signal_aggregator.erl "The are many other" should "src/agent_mgr/signal_aggregator.erl "There are many other" src/agent_mgr/signal_aggregator.erl has "The are many other", should do "There are many other" Feb 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant