Open ProjectsRebository opened 5 years ago
The parameters file contains all the hyper parameters of the model (ex: learning rate, number of layers...).
Maybe you should learn more about the basics of machine learning first, by following classes like these:
I'm newbie in Keras (I was using Caffe and DLIB), I'm searching a way for reuse your tripletloss with other network.
But, "estimator" resource of Keras is new for me, and I cant see or reuse your layers like "model" objects to allow. For example, I can't use "model.summary()" for to print layers.
May you help me, with any tip?
You can use your own model, but just the triplet loss I defined.
See #18 for a discussion on how to use the loss with Keras.
i read the post and understand that the network will be for feature extraction (is this right ?) i want to make model on my own data set
when i read the blog post i understand that the steps to generate my network is 1- prepare my data set using tensor flow for example i will use below code to prepare data set
2- then i will pass this data set to
train.py
as arg but what i can't understand is params file (i don't know what is the values inside it ) and also will the code generate model for me ?and after that i can send image to that model and the model will recognize iti am bit confused can you help me to understand and make model on my own data set thanks in advance i appreciate your help