-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
105 additions
and
5 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 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,90 @@ | ||
import torch | ||
from EinsumNetwork import Graph, EinsumNetwork | ||
import datasets | ||
|
||
device = 'cuda' if torch.cuda.is_available() else 'cpu' | ||
|
||
demo_text = """ | ||
This demo loads one of the 20 binary datasets and quickly trains an EiNet for some epochs. | ||
There are some parameters to play with, as for example which dataset shall be used and some | ||
structural parameters. | ||
""" | ||
print(demo_text) | ||
|
||
########################################################## | ||
dataset = 'accidents' | ||
|
||
depth = 3 | ||
num_repetitions = 10 | ||
num_input_distributions = 20 | ||
num_sums = 20 | ||
|
||
max_num_epochs = 10 | ||
batch_size = 100 | ||
online_em_frequency = 1 | ||
online_em_stepsize = 0.05 | ||
|
||
########################################################## | ||
|
||
print(dataset) | ||
|
||
train_x_orig, test_x_orig, valid_x_orig = datasets.load_debd(dataset, dtype='float32') | ||
|
||
train_x = train_x_orig | ||
test_x = test_x_orig | ||
valid_x = valid_x_orig | ||
|
||
# to torch | ||
train_x = torch.from_numpy(train_x).to(torch.device(device)) | ||
valid_x = torch.from_numpy(valid_x).to(torch.device(device)) | ||
test_x = torch.from_numpy(test_x).to(torch.device(device)) | ||
|
||
train_N, num_dims = train_x.shape | ||
valid_N = valid_x.shape[0] | ||
test_N = test_x.shape[0] | ||
|
||
graph = Graph.random_binary_trees(num_var=train_x.shape[1], depth=depth, num_repetitions=num_repetitions) | ||
|
||
args = EinsumNetwork.Args( | ||
num_classes=1, | ||
num_input_distributions=num_input_distributions, | ||
exponential_family=EinsumNetwork.CategoricalArray, | ||
exponential_family_args={'K': 2}, | ||
num_sums=num_sums, | ||
num_var=train_x.shape[1], | ||
online_em_frequency=1, | ||
online_em_stepsize=0.05) | ||
|
||
einet = EinsumNetwork.EinsumNetwork(graph, args) | ||
einet.initialize() | ||
einet.to(device) | ||
print(einet) | ||
|
||
for epoch_count in range(max_num_epochs): | ||
|
||
# evaluate | ||
train_ll = EinsumNetwork.eval_loglikelihood_batched(einet, train_x) | ||
valid_ll = EinsumNetwork.eval_loglikelihood_batched(einet, valid_x) | ||
test_ll = EinsumNetwork.eval_loglikelihood_batched(einet, test_x) | ||
|
||
print("[{}] train LL {} valid LL {} test LL {}".format(epoch_count, | ||
train_ll / train_N, | ||
valid_ll / valid_N, | ||
test_ll / test_N)) | ||
|
||
# train | ||
idx_batches = torch.randperm(train_N).split(batch_size) | ||
for batch_count, idx in enumerate(idx_batches): | ||
batch_x = train_x[idx, :] | ||
outputs = einet.forward(batch_x) | ||
|
||
ll_sample = EinsumNetwork.log_likelihoods(outputs) | ||
log_likelihood = ll_sample.sum() | ||
|
||
objective = log_likelihood | ||
objective.backward() | ||
|
||
einet.em_process_batch() | ||
|
||
einet.em_update() |
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