-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Clean models * Move to models * Remove tmp modules * Move shared to modules * Fix modules module * Extract a base class from DirectPred class
- Loading branch information
Showing
11 changed files
with
1,380 additions
and
1,158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,14 +50,11 @@ | |
Bora Uyar, [email protected] | ||
""" | ||
|
||
from .models_shared import * | ||
from .modules import * | ||
from .data import * | ||
from .main import * | ||
from .model_DirectPred import * | ||
from .model_SVAE import * | ||
from .model_TripletEncoder import * | ||
from .models import * | ||
from .feature_selection import * | ||
from .data_augmentation import * | ||
from .utils import * | ||
from .config import * | ||
from . import models |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .direct_pred import DirectPred | ||
from .direct_pred_cnn import DirectPredCNN | ||
from .supervised_vae import SupervisedVAE | ||
from .supervised_vae import supervised_vae | ||
from .triplet_encoder import MultiTripletNetwork | ||
|
||
__all__ = ["DirectPred", "DirectPredCNN", "SupervisedVAE", "MultiTripletNetwork"] | ||
__all__ = ["DirectPred", "DirectPredCNN", "supervised_vae", "MultiTripletNetwork"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.