Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi Jed. It's my first time using this...So here's a list of changes:
For example,
a regression problem has an output of one value, [regression_result],
a full adder problem has an output of two values, [carry_over_bit, sum_bit].
For example, in the Iris Classification problem, the species
Iris-setosa is encoded to be [1.0, 0.0, 0.0],
Iris-versicolor is encoded to be [0.0, 1.0, 0.0],
Iris-virginica is encoded to be [0.0, 0.0, 1.0].
Extended translation: Now all the operations included in the API can be translated into runnable C, and the user has full control over how a custom operation should be translated into C.
Added operations: An Xor bitwise operator and an Identity operator (for moving data) are now included in the API.
Fixes: Logical fixes in IslandMigration evolutionary algorithm, Or bitwise operator, etc.
I also removed the example folders to make compiling the changes easier, if you want the examples back, please let me know.
Thank you.