OSSGAN
OSSGAN copied to clipboard
Question about C aux Classifier
I'm a little confused about your algorithm, how did you use C to differentiate between open-set and close-set data?
Thanks for your question. In the algorithm, we don't explicitly differentiate between open-set and close-set data. The discriminator implictly differentiates betweem them using their entropy.
Thanks for your question. In the algorithm, we don't explicitly differentiate between open-set and close-set data. The discriminator implictly differentiates betweem them using their entropy.
thanks for your reply, I have some questions?
- how you train the classifier C?and what is the structure of classifier C?
- can i use Minist dataset in with your data? if it is possible, what should i do ?
- The classifier shares a feature extractor with a discriminator, and the head consists of one fully-connected layer. We update the parameters of the classifier at the same time as the discriminator update.
- To integrate additional unlabeled data into the dataset, we can extend the HDF5 file of the dataset. In an HDF5 file, the lablels of unlabeled data is -1.