-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CLEAN] cleanup to have only rate and distortion
- Loading branch information
Showing
32 changed files
with
448 additions
and
323 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# @package _global_ | ||
distortion: | ||
name: gvae | ||
mode: direct | ||
kwargs: | ||
z_dim: ${encoder.z_dim} | ||
y_shape: ${data.target_aux_shape} | ||
is_classification: ${data.is_classification_aux} | ||
arch: null | ||
arch_kwargs: | ||
complexity: 2 | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: "representative" |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# @package _global_ | ||
distortion: | ||
name: gvib | ||
mode: direct | ||
kwargs: | ||
z_dim: ${encoder.z_dim} | ||
y_shape: ${data.target_aux_shape} | ||
is_classification: ${data.is_classification_aux} | ||
arch: null | ||
arch_kwargs: | ||
complexity: 2 | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: "max_inv" |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# @package _global_ | ||
distortion: | ||
name: nce | ||
mode: contrastive | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: other_representative |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# @package _global_ | ||
distortion: | ||
name: taskvib | ||
mode: direct | ||
kwargs: | ||
z_dim: ${encoder.z_dim} | ||
y_shape: ${data.target_aux_shape} | ||
is_classification: ${data.is_classification_aux} | ||
arch: null | ||
arch_kwargs: | ||
complexity: 2 | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: target |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# @package _global_ | ||
distortion: | ||
name: vae | ||
mode: direct | ||
kwargs: | ||
z_dim: ${encoder.z_dim} | ||
y_shape: ${data.target_aux_shape} | ||
is_classification: ${data.is_classification_aux} | ||
arch: null | ||
arch_kwargs: | ||
complexity: 2 | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: "input" |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# @package _global_ | ||
distortion: | ||
name: vib | ||
mode: direct | ||
kwargs: | ||
z_dim: ${encoder.z_dim} | ||
y_shape: ${data.target_aux_shape} | ||
is_classification: ${data.is_classification_aux} | ||
arch: null | ||
arch_kwargs: | ||
complexity: 2 | ||
|
||
data: | ||
kwargs: | ||
dataset_kwargs: | ||
additional_target: "idx" |
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,5 +1,5 @@ | ||
# @package _group_ | ||
name: mlp | ||
arch: flattenmlp # uses flattenmlp because giving image (3D tensor) as input | ||
arch: mlp # uses flattenmlp because giving image (3D tensor) as input | ||
arch_kwargs: | ||
complexity: 2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,5 +1,5 @@ | ||
# @package _global_ | ||
coder: | ||
rate: | ||
name: CMI_vamp | ||
kwargs: | ||
prior_fam: vamp | ||
|
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
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
File renamed without changes.
File renamed without changes.
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 .compressors import * | ||
from .coders import * | ||
from .losses import * | ||
from .rates import * | ||
from .distortions import * | ||
from .predictors import * | ||
from .architectures import * | ||
from .distributions import * |
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
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.