siamese icon indicating copy to clipboard operation
siamese copied to clipboard

A simple, easy-to-use and flexible siamese neural network implementation for Keras

Results 3 siamese issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.16.4 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

I run your test_siamese.py under tests folder. `def test_siamese(): num_classes = 5 input_shape = (3,) epochs = 1000 # Generate some data x_train = np.random.rand(100, 3) y_train = np.random.randint(num_classes, size=100)...

Hi. Nice work. I have pairs of numerical features along with label. Then how to modify your code to train my dataset. If you could just guide me as I...