AND OR XOR
Simple binary operations truth table.
@kaggle.ancientaxe_and_or_xor
Simple binary operations truth table.
@kaggle.ancientaxe_and_or_xor
Added 3 dataset for each binary operation (AND, OR, XOR). This will assist in creation of simple neural networks.
The data in all 3 csv files just consists of 3 columns. Column 1 and 2 are inputs while column 3 is the desired output.
No headings are added to the csv files.
All the computers around the world.
Simplest possible dataset.
CREATE TABLE and (
"n_0" BIGINT -- 0,
"n_0_1" BIGINT -- 0.1,
"n_0_2" BIGINT -- 0.2
);CREATE TABLE or (
"n_0" BIGINT -- 0,
"n_0_1" BIGINT -- 0.1,
"n_0_2" BIGINT -- 0.2
);CREATE TABLE xor (
"n_0" BIGINT -- 0,
"n_0_1" BIGINT -- 0.1,
"n_0_2" BIGINT -- 0.2
);Anyone who has the link will be able to view this.