This repo contains the reference source code in PyTorch for STELLAR.
We implemented STELLAR model in a self-contained class. To make an instance and train STELLAR:
stellar = STELLAR(args, labeled_X, labeled_y, unlabeled_X, labeled_pos, unlabeled_pos)
stellar.train()
_, results = stellar.pred()