Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from source.helper.EvalHelper import EvalHelper
from source.helper.FitHelper import FitHelper
from source.helper.PredictHelper import PredictHelper
from source.helper.TSNEHelper import TSNEHelper


def fit(params):
Expand All @@ -20,6 +21,10 @@ def eval(params):
eval_helper = EvalHelper(params)
eval_helper.perform_eval()

def tsne(params):
tsne_obj = TSNEHelper(params)
tsne_obj.perform_tsne()


def z_shot_cls(params):
raise NotImplementedError("Not yet implemented.")
Expand All @@ -37,7 +42,11 @@ def perform_tasks(params):
eval(params)
if "z-shot-cls" in params.tasks:
z_shot_cls(params)
if "tsne" in params.tasks:
tsne(params)



if __name__ == '__main__':
perform_tasks()

Binary file added resource/tsne/BERT_ACM/0.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/1.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/2.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/3.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/4.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/5.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/6.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/7.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/8.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_ACM/9.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/0.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/1.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/2.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/3.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/4.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/5.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/6.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/7.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/8.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_AISOPOS/9.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/0.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/1.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/2.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/3.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/4.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/5.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/6.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/7.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/8.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_PANGMOVIE/9.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/0.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/1.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/2.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/3.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/4.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/5.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/6.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/7.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/8.pdf
Binary file not shown.
Binary file added resource/tsne/BERT_WEBKB/9.pdf
Binary file not shown.
Loading