|
24 | 24 | from systemds.scuro.dataloader.text_loader import TextLoader |
25 | 25 | from systemds.scuro.dataloader.json_loader import JSONLoader |
26 | 26 | from systemds.scuro.representations.representation import Representation |
| 27 | +from systemds.scuro.representations.aggregate import Aggregation |
| 28 | +from systemds.scuro.representations.aggregated_representation import ( |
| 29 | + AggregatedRepresentation, |
| 30 | +) |
27 | 31 | from systemds.scuro.representations.average import Average |
| 32 | +from systemds.scuro.representations.bert import Bert |
| 33 | +from systemds.scuro.representations.bow import BoW |
28 | 34 | from systemds.scuro.representations.concatenation import Concatenation |
29 | | -from systemds.scuro.representations.sum import Sum |
| 35 | +from systemds.scuro.representations.context import Context |
| 36 | +from systemds.scuro.representations.fusion import Fusion |
| 37 | +from systemds.scuro.representations.glove import GloVe |
| 38 | +from systemds.scuro.representations.lstm import LSTM |
30 | 39 | from systemds.scuro.representations.max import RowMax |
31 | | -from systemds.scuro.representations.multiplication import Multiplication |
32 | 40 | from systemds.scuro.representations.mel_spectrogram import MelSpectrogram |
| 41 | +from systemds.scuro.representations.mfcc import MFCC |
| 42 | +from systemds.scuro.representations.multiplication import Multiplication |
| 43 | +from systemds.scuro.representations.optical_flow import OpticalFlow |
| 44 | +from systemds.scuro.representations.representation import Representation |
| 45 | +from systemds.scuro.representations.representation_dataloader import NPY |
| 46 | +from systemds.scuro.representations.representation_dataloader import JSON |
| 47 | +from systemds.scuro.representations.representation_dataloader import Pickle |
33 | 48 | from systemds.scuro.representations.resnet import ResNet |
34 | | -from systemds.scuro.representations.bert import Bert |
35 | | -from systemds.scuro.representations.lstm import LSTM |
36 | | -from systemds.scuro.representations.bow import BoW |
37 | | -from systemds.scuro.representations.glove import GloVe |
| 49 | +from systemds.scuro.representations.spectrogram import Spectrogram |
| 50 | +from systemds.scuro.representations.sum import Sum |
| 51 | +from systemds.scuro.representations.swin_video_transformer import SwinVideoTransformer |
38 | 52 | from systemds.scuro.representations.tfidf import TfIdf |
| 53 | +from systemds.scuro.representations.unimodal import UnimodalRepresentation |
| 54 | +from systemds.scuro.representations.wav2vec import Wav2Vec |
| 55 | +from systemds.scuro.representations.window import WindowAggregation |
39 | 56 | from systemds.scuro.representations.word2vec import W2V |
| 57 | +from systemds.scuro.representations.x3d import X3D |
40 | 58 | from systemds.scuro.models.model import Model |
41 | 59 | from systemds.scuro.models.discrete_model import DiscreteModel |
| 60 | +from systemds.scuro.modality.joined import JoinedModality |
| 61 | +from systemds.scuro.modality.joined_transformed import JoinedTransformedModality |
42 | 62 | from systemds.scuro.modality.modality import Modality |
43 | | -from systemds.scuro.modality.unimodal_modality import UnimodalModality |
| 63 | +from systemds.scuro.modality.modality_identifier import ModalityIdentifier |
44 | 64 | from systemds.scuro.modality.transformed import TransformedModality |
45 | 65 | from systemds.scuro.modality.type import ModalityType |
46 | | -from systemds.scuro.aligner.dr_search import DRSearch |
47 | | -from systemds.scuro.aligner.task import Task |
| 66 | +from systemds.scuro.modality.unimodal_modality import UnimodalModality |
| 67 | +from systemds.scuro.drsearch.dr_search import DRSearch |
| 68 | +from systemds.scuro.drsearch.task import Task |
| 69 | +from systemds.scuro.drsearch.fusion_optimizer import FusionOptimizer |
| 70 | +from systemds.scuro.drsearch.operator_registry import Registry |
| 71 | +from systemds.scuro.drsearch.optimization_data import OptimizationData |
| 72 | +from systemds.scuro.drsearch.representation_cache import RepresentationCache |
| 73 | +from systemds.scuro.drsearch.unimodal_representation_optimizer import ( |
| 74 | + UnimodalRepresentationOptimizer, |
| 75 | +) |
48 | 76 |
|
49 | 77 |
|
50 | 78 | __all__ = [ |
|
53 | 81 | "VideoLoader", |
54 | 82 | "TextLoader", |
55 | 83 | "Representation", |
| 84 | + "Aggregation", |
| 85 | + "AggregatedRepresentation", |
56 | 86 | "Average", |
| 87 | + "Bert", |
| 88 | + "BoW", |
57 | 89 | "Concatenation", |
58 | | - "Sum", |
| 90 | + "Context", |
| 91 | + "Fusion", |
| 92 | + "GloVe", |
| 93 | + "LSTM", |
59 | 94 | "RowMax", |
60 | | - "Multiplication", |
61 | 95 | "MelSpectrogram", |
| 96 | + "MFCC", |
| 97 | + "Multiplication", |
| 98 | + "OpticalFlow", |
| 99 | + "Representation", |
| 100 | + "NPY", |
| 101 | + "JSON", |
| 102 | + "Pickle", |
62 | 103 | "ResNet", |
63 | | - "Bert", |
64 | | - "LSTM", |
| 104 | + "Spectrogram", |
| 105 | + "Sum", |
65 | 106 | "BoW", |
66 | | - "GloVe", |
| 107 | + "SwinVideoTransformer", |
67 | 108 | "TfIdf", |
| 109 | + "UnimodalRepresentation", |
| 110 | + "Wav2Vec", |
| 111 | + "WindowAggregation", |
68 | 112 | "W2V", |
| 113 | + "X3D", |
69 | 114 | "Model", |
70 | 115 | "DiscreteModel", |
| 116 | + "JoinedModality", |
| 117 | + "JoinedTransformedModality", |
71 | 118 | "Modality", |
72 | | - "UnimodalModality", |
| 119 | + "ModalityIdentifier", |
73 | 120 | "TransformedModality", |
74 | 121 | "ModalityType", |
| 122 | + "UnimodalModality", |
75 | 123 | "DRSearch", |
76 | 124 | "Task", |
| 125 | + "FusionOptimizer", |
| 126 | + "Registry", |
| 127 | + "OptimizationData", |
| 128 | + "RepresentationCache", |
| 129 | + "UnimodalRepresentationOptimizer", |
77 | 130 | ] |
0 commit comments