In [1]:
# This is the third attempt at training a NN. I am doing sequence padding
# again, but truncating to as low a value as possible to make training
# faster and avoid memory issues (I've been having crashes on the current)
# feature set
In [1]:
import numpy as np
from keras.models import Sequential
from keras.layers.core import Dropout, Dense
from keras.layers.recurrent import LSTM, GRU
from keras.layers.embeddings import Embedding
from keras.layers.wrappers import Bidirectional
from keras.preprocessing.sequence import pad_sequences
import matplotlib.pyplot as plt
%matplotlib inline
Using Theano backend.
In [2]:
np.random.seed(42)
In [3]:
malware_classes = ["Agent", "AutoRun", "FraudLoad", "FraudPack", "Hupigon", "Krap",
"Lipler", "Magania", "None", "Poison", "Swizzor", "Tdss",
"VB", "Virut", "Zbot"]
# a function for writing predictions in the required format
def write_predictions(predictions, ids, outfile):
"""
assumes len(predictions) == len(ids), and that predictions[i] is the
index of the predicted class with the malware_classes list above for
the executable corresponding to ids[i].
outfile will be overwritten
"""
with open(outfile,"w+") as f:
# write header
f.write("Id,Prediction\n")
for i, history_id in enumerate(ids):
f.write("%s,%d\n" % (history_id, predictions[i]))
def classes_to_Y(classes):
output = []
for cls in classes:
output.append(malware_classes.index(cls))
return np.array(output)
In [4]:
# load training classes
classes = np.load("../data/features/train_classes.npy")
In [5]:
# load sparse matrix of training data
full_features = np.load("../data/features/100_cutoff_alphabet_19679_word_to_intseq.npy")
# The way masking works, 0 must be maintained as a "ignore this" symbol,
# so I have to increase the index by 1 to free the zero index.
for i in xrange(len(full_features)):
full_features[i] +=1 #Add 1 to each of the arrays in the array
print full_features[0]
[ 734 566 4 5 1150 558 740 4 785 5849 11 3
1 547 12 40 804 2049 946 1 947 1 811 113
805 5 803 68 3872 808 1827 2759 807 1591 809 1174
806 654 1590 1592 478 604 5653 495 844 11 3 1
547 10 4 6 1222 13 4798 7 1983 12 40 14
11 3 2 9 680 8 10 4 6 700 13 702
7 698 12 696 14 11 3 2 9 134 8 10
4 6 309 13 310 7 308 12 303 14 11 3
2 694 709 2 678 725 5 697 723 727 10 4
6 729 13 730 7 728 12 40 14 11 3 2
9 798 8 10 4 6 818 13 817 7 792 12
802 14 11 3 2 9 216 8 10 4 6 476
13 477 7 475 12 474 14 11 3 2 9 774
8 10 4 6 779 13 780 7 778 12 775 14
11 3 2 9 776 8 10 4 6 783 13 784
7 597 12 777 14 11 3 2 9 742 8 10
4 6 747 13 746 7 743 12 744 14 11 3
2 9 543 8 10 4 6 633 13 636 7 630
12 635 14 11 3 2 9 812 8 10 4 6
815 13 816 7 814 12 813 14 11 3 2 9
751 8 10 4 6 755 13 754 7 748 12 752
14 11 3 2 9 600 8 10 4 6 692 13
693 7 691 12 684 14 11 3 2 9 515 8
10 4 6 611 13 612 7 610 12 609 14 11
3 2 9 840 8 10 4 6 842 13 843 7
828 12 841 14 11 3 2 9 834 8 10 4
6 838 13 839 7 597 12 836 1104 145 1136 14
11 3 2 9 790 8 10 4 6 800 13 801
7 799 12 791 463 29 22 24 23 30 244 883
1 547 29 22 24 23 30 244 677 42 22 24
23 30 244 677 41 935 537 133 244 1265 618 4
291 152 532 549 551 509 468 5 537 133 244 1264
618 4 291 152 532 549 551 509 468 5 537 133
244 1258 618 4 291 152 532 549 551 509 468 5
537 133 244 1237 618 4 291 152 532 549 551 509
468 5 537 133 244 1263 618 4 291 152 532 549
551 509 468 5 29 22 64 624 576 638 42 22
64 624 576 638 41 845 749 42 22 64 624 576
638 41 576 749 463 29 22 24 23 30 244 42
22 24 23 30 244 41 1266 537 133 244 1260 1273
4 291 152 532 549 551 1261 1270 4 291 152 532
468 5 758 761 1132 555 5653 759 1168 760 757 758
761 1130 555 5653 759 1167 760 757 29 22 24 23
30 2 442 45 1103 42 22 24 23 30 2 442
45 1103 41 616 32 14 11 3 2 9 566 8
10 4 6 787 13 786 7 695 12 782 463 14
11 3 2 9 821 616 10 4 6 16495 13 16495
7 5 12 895 463 14 11 3 2 9 515 8
10 4 6 611 13 612 7 610 12 609 14 11
3 2 9 821 616 10 4 6 1095 13 1094 7
716 12 895 463 583 329 16568 115 616 171 590 616
580 5 579 5 575 5 578 5 489 756 585 613
589 586 587 584 588 29 22 64 23 30 244 42
22 64 23 30 244 41 1205 478 1230 632 29 22
24 23 30 244 677 42 22 24 23 30 244 677
41 935 463 14 11 3 2 9 821 616 10 4
6 1095 13 1094 7 716 12 895 583 329 17885 115
467 171 4342 4342 4342 580 5782 579 18236 575 108 578
354 489 1131 1152 1151 585 613 1577 1064 589 586 14554
1431 1625 587 584 588 1148 14 11 3 2 9 790
8 10 4 6 800 13 801 7 799 12 791 14
11 3 2 9 751 8 10 4 6 755 13 754
7 748 12 752 499 32 452 448 486 40 484 5378
1 1 41 1 499 32 452 448 486 40 484 5378
1 1 41 1 583 329 9611 115 821 1516 171 254
580 5 579 5 575 5 578 5 489 756 585 613
589 586 587 584 588 156 115 2209 256 583 329 11878
115 539 171 17247 580 5 579 5 575 5 578 5
489 756 585 613 589 586 587 584 588 614 329 17885
1251 1389 1 685 256 614 329 17885 1251 1389 1 685
29 22 64 624 576 638 42 22 64 624 576 638
41 845 749 42 22 64 624 576 638 41 576 749
29 22 64 23 30 244 1372 29 22 24 23 30
244 1372 537 133 1069 735 1640 6224 468 5 463 495
478 558 1150]
In [ ]:
# The way masking works, 0 must be maintained as a "ignore this" symbol,
# so I have to increase the index by 1 to free the zero index.
for i in xrange(len(full_features)):
full_features[i] +=1 #Add 1 to each of the arrays in the array
print full_features[0]
In [6]:
maxlengths = [len(x) for x in full_features]
In [8]:
fig = plt.figure(figsize=[12,6])
ax = fig.add_subplot(111)
ax.hist(maxlengths, bins=1000);
ax.set_xlim(0,200000)
Out[8]:
(0, 200000)
In [6]:
# Truncateto the first 35000 words
padded = pad_sequences(full_features, maxlen=1000, truncating='post')
print padded.shape # Should be a num_samples by num_features np array
(6810, 1000)
In [7]:
# If this all looks good, save the array for later
np.save("../data/features/100_cutoff_alphabet_19679_padded_len1.npy", padded)
In [8]:
padded = 0
In [9]:
# In future, can load just with this line
full_features = np.load("../data/features/100_cutoff_alphabet_19679_padded_len1.npy")
In [10]:
# pull out training examples
X = full_features[:classes.shape[0],:]
X_test = full_features[classes.shape[0]:,:]
print X_test.shape
Y = classes_to_Y(classes)
Y_hot = np.zeros((classes.shape[0], 16))
for i, clazz in enumerate(Y):
Y_hot[i,clazz] = 1
print Y_hot
(3724, 1000)
[[ 0. 0. 0. ..., 0. 0. 0.]
[ 0. 0. 0. ..., 0. 0. 0.]
[ 0. 0. 0. ..., 1. 0. 0.]
...,
[ 0. 0. 0. ..., 0. 0. 0.]
[ 0. 0. 0. ..., 1. 0. 0.]
[ 0. 0. 0. ..., 0. 0. 0.]]
In [11]:
# Just to check that worked ok.
print classes[21]
print Y[21]
print Y_hot[21]
print len(malware_classes)
None
8
[ 0. 0. 0. 0. 0. 0. 0. 0. 1. 0. 0. 0. 0. 0. 0. 0.]
15
In [12]:
# Now randomly select 100 samples to hold out
rand_index = np.random.permutation(np.arange(classes.shape[0]))
X_train = X[rand_index[100:]]
Y_train = Y_hot[rand_index[100:]]
X_validate = X[rand_index[:100]]
Y_validate = Y_hot[rand_index[:100]]
print X_train.shape
print Y_train.shape
print X_validate.shape
print Y_validate.shape
(2986, 1000)
(2986, 16)
(100, 1000)
(100, 16)
In [13]:
# Clobbering to save memory
padding = 0
full_features = 0
classes= 0
X = 0
Y_hot = 0
Y =0
In [14]:
# The vocabulary size is 2 + the maximum integer index.
# To allow for padding (wout padding would be 1)
vocab_size = 19681
# Length of the dense embedding one for each int in the sequence
embedding_length = 256 # arbitrary
# Should be able to vary batch size with mask
batch_size = 150
model = Sequential()
# Collapse the large input dimension into a 256 dimensional
# dense embedding
model.add(
Embedding(vocab_size, embedding_length, mask_zero=True)
)
# Could add a Dropout layer next but will avoid for now
model.add(Bidirectional(
LSTM(100, return_sequences=True)
))# Arbitrary output size. TODO make this stateful
# Why not 2!
model.add(LSTM(42)) # Arbitrary again
model.add(Dense(200, activation="sigmoid"))
model.add(Dense(16, activation="softmax"))
In [15]:
model.compile(loss='categorical_crossentropy',
optimizer="adam",
metrics=["accuracy"])
In [16]:
from keras.callbacks import ProgbarLogger, History, LambdaCallback
In [17]:
import psutil
from __future__ import print_function
summarize = lambda *__: print([psutil.virtual_memory(),psutil.cpu_percent(percpu=True)])
In [18]:
callbacks = [
ProgbarLogger(),
History(),
LambdaCallback(
on_batch_begin=summarize,
on_batch_end=summarize,
on_epoch_begin=summarize
)]
model.fit(
X_train, Y_train, batch_size=batch_size,
nb_epoch=5, verbose=1, callbacks=callbacks,
validation_data=(X_validate, Y_validate)
)
Train on 2986 samples, validate on 100 samples
Epoch 1/5
[svmem(total=270846246912, available=236968771584, percent=12.5, used=24198422528, free=121542279168, active=38561837056, inactive=103220097024, buffers=454303744, cached=124651241472, shared=8814125056), [100.0, 77.1, 0.1, 0.1, 100.0, 57.1, 0.1, 0.0, 0.1, 0.1, 0.0, 0.2, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.7, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
Epoch 1/5
[svmem(total=270846246912, available=236968771584, percent=12.5, used=24198422528, free=121542279168, active=38561837056, inactive=103220097024, buffers=454303744, cached=124651241472, shared=8814125056), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 1127s - loss: 2.9292 - acc: 0.0000e+00[svmem(total=270846246912, available=237153755136, percent=12.4, used=24013438976, free=121725804544, active=38462320640, inactive=103135846400, buffers=454340608, cached=124652662784, shared=8814120960), [100.0, 0.1, 0.0, 0.1, 100.0, 99.5, 0.2, 0.1, 0.7, 0.0, 0.1, 1.1, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 1127s - loss: 2.9292 - acc: 0.0000e+00[svmem(total=270846246912, available=237153755136, percent=12.4, used=24013438976, free=121725804544, active=38462320640, inactive=103135846400, buffers=454340608, cached=124652662784, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1061s - loss: 2.8439 - acc: 0.0000e+00[svmem(total=270846246912, available=237056602112, percent=12.5, used=24110604288, free=121611636736, active=38567809024, inactive=103152939008, buffers=454340608, cached=124669665280, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1061s - loss: 2.8439 - acc: 0.0000e+00[svmem(total=270846246912, available=237056602112, percent=12.5, used=24110604288, free=121611636736, active=38567809024, inactive=103152939008, buffers=454340608, cached=124669665280, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1346s - loss: 2.7327 - acc: 0.0067 [svmem(total=270846246912, available=236932673536, percent=12.5, used=24234545152, free=121499860992, active=38686343168, inactive=103140667392, buffers=454356992, cached=124657483776, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.3, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1346s - loss: 2.7327 - acc: 0.0067 [svmem(total=270846246912, available=236932673536, percent=12.5, used=24234545152, free=121499860992, active=38686343168, inactive=103140667392, buffers=454356992, cached=124657483776, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 2359s - loss: 2.6604 - acc: 0.1350[svmem(total=270846246912, available=237240578048, percent=12.4, used=23926616064, free=121806045184, active=38383726592, inactive=103142387712, buffers=454361088, cached=124659224576, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.9, 100.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.2, 0.6, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 2359s - loss: 2.6604 - acc: 0.1350[svmem(total=270846246912, available=237240578048, percent=12.4, used=23926616064, free=121806045184, active=38383726592, inactive=103142387712, buffers=454361088, cached=124659224576, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 2885s - loss: 2.5882 - acc: 0.2053[svmem(total=270846246912, available=236929863680, percent=12.5, used=24237330432, free=121495863296, active=38693724160, inactive=103141576704, buffers=454389760, cached=124658663424, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.9, 100.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 2885s - loss: 2.5882 - acc: 0.2053[svmem(total=270846246912, available=236929863680, percent=12.5, used=24237330432, free=121495863296, active=38693724160, inactive=103141576704, buffers=454389760, cached=124658663424, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 3026s - loss: 2.5255 - acc: 0.2556[svmem(total=270846246912, available=236651622400, percent=12.6, used=24515571712, free=121221517312, active=38969929728, inactive=103137488896, buffers=454402048, cached=124654755840, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.4, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 3026s - loss: 2.5255 - acc: 0.2556[svmem(total=270846246912, available=236651622400, percent=12.6, used=24515571712, free=121221517312, active=38969929728, inactive=103137488896, buffers=454402048, cached=124654755840, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 2831s - loss: 2.4517 - acc: 0.3019[svmem(total=270846246912, available=242566868992, percent=10.4, used=18600566784, free=127112970240, active=33071824896, inactive=103161241600, buffers=454414336, cached=124678295552, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.7, 100.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.8, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 2831s - loss: 2.4517 - acc: 0.3019[svmem(total=270846246912, available=242566868992, percent=10.4, used=18599796736, free=127112970240, active=33071824896, inactive=103161241600, buffers=454414336, cached=124679065600, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 2382s - loss: 2.3818 - acc: 0.3333[svmem(total=270846246912, available=242653822976, percent=10.4, used=18515066880, free=127218577408, active=32983928832, inactive=103138684928, buffers=454422528, cached=124658180096, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.2, 0.1, 0.0, 1.7, 0.0, 0.0, 0.0, 0.1, 3.5, 0.8, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 2382s - loss: 2.3818 - acc: 0.3333[svmem(total=270846246912, available=242653822976, percent=10.4, used=18515066880, free=127218577408, active=32983928832, inactive=103138684928, buffers=454422528, cached=124658180096, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 2267s - loss: 2.3185 - acc: 0.3548[svmem(total=270846246912, available=242554224640, percent=10.4, used=18612838400, free=127115026432, active=33089671168, inactive=103139692544, buffers=454459392, cached=124663922688, shared=8814120960), [100.0, 3.6, 1.4, 0.0, 100.0, 100.0, 1.2, 0.0, 0.5, 0.3, 0.1, 1.7, 0.0, 1.8, 0.0, 0.8, 1.6, 1.9, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 10.6, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.5, 0.7, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 0.6, 0.2, 0.0, 3.2, 0.0, 0.0, 0.0, 0.0, 1.7, 0.8, 3.1, 3.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 2267s - loss: 2.3185 - acc: 0.3548[svmem(total=270846246912, available=242554224640, percent=10.4, used=18612838400, free=127115026432, active=33089671168, inactive=103139692544, buffers=454459392, cached=124663922688, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 2058s - loss: 2.2544 - acc: 0.3740[svmem(total=270846246912, available=242540376064, percent=10.5, used=18626838528, free=127106596864, active=33104506880, inactive=103134019584, buffers=454496256, cached=124658315264, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.0, 0.0, 0.2, 0.0, 0.1, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 2058s - loss: 2.2544 - acc: 0.3740[svmem(total=270846246912, available=242540376064, percent=10.5, used=18626838528, free=127106596864, active=33104506880, inactive=103134019584, buffers=454496256, cached=124658315264, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 1937s - loss: 2.1960 - acc: 0.3909[svmem(total=270846246912, available=241720639488, percent=10.8, used=19446808576, free=126276976640, active=33924493312, inactive=103143768064, buffers=454541312, cached=124667920384, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.8, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 1937s - loss: 2.1960 - acc: 0.3909[svmem(total=270846246912, available=241720639488, percent=10.8, used=19446038528, free=126276976640, active=33924493312, inactive=103143768064, buffers=454541312, cached=124668690432, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 1797s - loss: 2.1499 - acc: 0.4000[svmem(total=270846246912, available=241704558592, percent=10.8, used=19462631424, free=127240474624, active=34060607488, inactive=102168104960, buffers=454565888, cached=123688574976, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 1797s - loss: 2.1499 - acc: 0.4000[svmem(total=270846246912, available=241704558592, percent=10.8, used=19462631424, free=127240474624, active=34060607488, inactive=102168104960, buffers=454565888, cached=123688574976, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 1619s - loss: 2.1149 - acc: 0.4082[svmem(total=270846246912, available=241763131392, percent=10.7, used=19404062720, free=127300186112, active=34002849792, inactive=102167142400, buffers=454615040, cached=123687383040, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.4, 0.0, 0.0, 0.1, 0.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.0, 0.1, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.3, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.4, 0.9, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 1619s - loss: 2.1149 - acc: 0.4082[svmem(total=270846246912, available=241763131392, percent=10.7, used=19404062720, free=127300186112, active=34002849792, inactive=102167142400, buffers=454615040, cached=123687383040, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 1418s - loss: 2.0701 - acc: 0.4205[svmem(total=270846246912, available=237911396352, percent=12.2, used=23255797760, free=123447484416, active=37845573632, inactive=102168068096, buffers=454647808, cached=123688316928, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.9, 100.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.0, 1.2, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.1, 0.4, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.9, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 1418s - loss: 2.0701 - acc: 0.4205[svmem(total=270846246912, available=237911396352, percent=12.2, used=23255797760, free=123447484416, active=37845573632, inactive=102168068096, buffers=454647808, cached=123688316928, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 1177s - loss: 2.0458 - acc: 0.4213[svmem(total=270846246912, available=234240708608, percent=13.5, used=26926477312, free=119777996800, active=41511768064, inactive=102166810624, buffers=454676480, cached=123687096320, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.8, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 1177s - loss: 2.0458 - acc: 0.4213[svmem(total=270846246912, available=234240708608, percent=13.5, used=26926477312, free=119777996800, active=41511768064, inactive=102166810624, buffers=454676480, cached=123687096320, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 929s - loss: 2.0107 - acc: 0.4258 [svmem(total=270846246912, available=234249867264, percent=13.5, used=26917326848, free=119792050176, active=41502228480, inactive=102161723392, buffers=454701056, cached=123682168832, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 929s - loss: 2.0107 - acc: 0.4258 [svmem(total=270846246912, available=234249867264, percent=13.5, used=26917326848, free=119792050176, active=41502228480, inactive=102161723392, buffers=454701056, cached=123682168832, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 683s - loss: 1.9713 - acc: 0.4345[svmem(total=270846246912, available=233985699840, percent=13.6, used=27181301760, free=119511846912, active=41768206336, inactive=102177771520, buffers=454729728, cached=123698368512, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.9, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 683s - loss: 1.9713 - acc: 0.4345[svmem(total=270846246912, available=233985081344, percent=13.6, used=27181920256, free=119511228416, active=41768206336, inactive=102177771520, buffers=454729728, cached=123698368512, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 445s - loss: 1.9533 - acc: 0.4363[svmem(total=270846246912, available=233908568064, percent=13.6, used=27258626048, free=119448252416, active=41844670464, inactive=102164168704, buffers=454746112, cached=123684622336, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 99.8, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1, 0.3, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.2, 0.2, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.7, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 445s - loss: 1.9533 - acc: 0.4363[svmem(total=270846246912, available=233908568064, percent=13.6, used=27258626048, free=119448252416, active=41844670464, inactive=102164168704, buffers=454746112, cached=123684622336, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 208s - loss: 1.9162 - acc: 0.4425[svmem(total=270846246912, available=234289512448, percent=13.5, used=26878087168, free=119832797184, active=41458991104, inactive=102160039936, buffers=454766592, cached=123680595968, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 208s - loss: 1.9162 - acc: 0.4425[svmem(total=270846246912, available=234289512448, percent=13.5, used=26878087168, free=119832797184, active=41458991104, inactive=102160039936, buffers=454766592, cached=123680595968, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
[svmem(total=270846246912, available=234292789248, percent=13.5, used=26874404864, free=119828918272, active=41458987008, inactive=102167638016, buffers=454787072, cached=123688136704, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.3, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2986/2986 [==============================] - 4505s - loss: 1.8889 - acc: 0.4457 - val_loss: 1.6171 - val_acc: 0.4900
2986/2986 [==============================] - 4505s - loss: 1.8889 - acc: 0.4457 - val_loss: 1.6171 - val_acc: 0.4900
Epoch 2/5
[svmem(total=270846246912, available=234295799808, percent=13.5, used=26871398400, free=119831281664, active=41458565120, inactive=102168293376, buffers=454787072, cached=123688779776, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.5, 0.1, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
Epoch 2/5
[svmem(total=270846246912, available=234295799808, percent=13.5, used=26871398400, free=119831281664, active=41458565120, inactive=102168293376, buffers=454787072, cached=123688779776, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 2759s - loss: 1.6063 - acc: 0.4867[svmem(total=270846246912, available=234290974720, percent=13.5, used=26876223488, free=119833178112, active=41458589696, inactive=102161682432, buffers=454795264, cached=123682050048, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 2759s - loss: 1.6063 - acc: 0.4867[svmem(total=270846246912, available=234290974720, percent=13.5, used=26876223488, free=119833178112, active=41458589696, inactive=102161682432, buffers=454795264, cached=123682050048, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1980s - loss: 1.4931 - acc: 0.5333[svmem(total=270846246912, available=234294435840, percent=13.5, used=26872750080, free=119831666688, active=41459306496, inactive=102166568960, buffers=454803456, cached=123687026688, shared=8814120960), [100.0, 0.1, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1980s - loss: 1.4931 - acc: 0.5333[svmem(total=270846246912, available=234294435840, percent=13.5, used=26872750080, free=119831666688, active=41459306496, inactive=102166568960, buffers=454803456, cached=123687026688, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1593s - loss: 1.4161 - acc: 0.5800[svmem(total=270846246912, available=234291109888, percent=13.5, used=26876137472, free=119834451968, active=41459507200, inactive=102160605184, buffers=454807552, cached=123680849920, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1593s - loss: 1.4161 - acc: 0.5800[svmem(total=270846246912, available=234291109888, percent=13.5, used=26876137472, free=119834451968, active=41459507200, inactive=102160605184, buffers=454807552, cached=123680849920, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 1369s - loss: 1.3616 - acc: 0.6017[svmem(total=270846246912, available=234294546432, percent=13.5, used=26872635392, free=119834013696, active=41458843648, inactive=102164369408, buffers=454823936, cached=123684773888, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 1369s - loss: 1.3616 - acc: 0.6017[svmem(total=270846246912, available=234294546432, percent=13.5, used=26872635392, free=119834013696, active=41458843648, inactive=102164369408, buffers=454823936, cached=123684773888, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 1209s - loss: 1.3497 - acc: 0.6107[svmem(total=270846246912, available=234287247360, percent=13.5, used=26879975424, free=119822032896, active=41465049088, inactive=102168756224, buffers=454840320, cached=123689398272, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 1.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 1209s - loss: 1.3497 - acc: 0.6107[svmem(total=270846246912, available=234287247360, percent=13.5, used=26879975424, free=119822032896, active=41465049088, inactive=102168756224, buffers=454840320, cached=123689398272, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 1083s - loss: 1.3356 - acc: 0.6122[svmem(total=270846246912, available=234290040832, percent=13.5, used=26877116416, free=119818805248, active=41464299520, inactive=102175006720, buffers=454852608, cached=123695472640, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 1083s - loss: 1.3356 - acc: 0.6122[svmem(total=270846246912, available=234289405952, percent=13.5, used=26877751296, free=119818170368, active=41464299520, inactive=102175006720, buffers=454852608, cached=123695472640, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 981s - loss: 1.3279 - acc: 0.6152 [svmem(total=270846246912, available=234098737152, percent=13.6, used=27068522496, free=119624822784, active=41654509568, inactive=102177501184, buffers=454860800, cached=123698040832, shared=8814116864), [100.0, 0.1, 0.0, 0.0, 99.4, 100.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 981s - loss: 1.3279 - acc: 0.6152 [svmem(total=270846246912, available=234098737152, percent=13.6, used=27068522496, free=119624822784, active=41654509568, inactive=102177501184, buffers=454860800, cached=123698040832, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 885s - loss: 1.3283 - acc: 0.6150[svmem(total=270846246912, available=233979424768, percent=13.6, used=27187773440, free=119520899072, active=41773801472, inactive=102161788928, buffers=454881280, cached=123682693120, shared=8814116864), [100.0, 0.3, 0.2, 0.5, 99.8, 100.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.1, 0.0, 1.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.1, 0.1, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 885s - loss: 1.3283 - acc: 0.6150[svmem(total=270846246912, available=233979424768, percent=13.6, used=27187773440, free=119520899072, active=41773801472, inactive=102161788928, buffers=454881280, cached=123682693120, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 795s - loss: 1.3141 - acc: 0.6193[svmem(total=270846246912, available=233975595008, percent=13.6, used=27191668736, free=119514324992, active=41773641728, inactive=102164525056, buffers=454885376, cached=123685367808, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 0.1, 0.1, 3.2, 0.9, 0.0, 0.2, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.1, 1.2, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 795s - loss: 1.3141 - acc: 0.6193[svmem(total=270846246912, available=233975595008, percent=13.6, used=27191668736, free=119514324992, active=41773641728, inactive=102164525056, buffers=454885376, cached=123685367808, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 710s - loss: 1.3072 - acc: 0.6220[svmem(total=270846246912, available=233855598592, percent=13.7, used=27311603712, free=119392100352, active=41897484288, inactive=102166736896, buffers=454893568, cached=123687649280, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 710s - loss: 1.3072 - acc: 0.6220[svmem(total=270846246912, available=233855598592, percent=13.7, used=27311603712, free=119392100352, active=41897484288, inactive=102166736896, buffers=454893568, cached=123687649280, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 630s - loss: 1.2875 - acc: 0.6255[svmem(total=270846246912, available=233854328832, percent=13.7, used=27312873472, free=119389896704, active=41898270720, inactive=102167666688, buffers=454897664, cached=123688579072, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 630s - loss: 1.2875 - acc: 0.6255[svmem(total=270846246912, available=233854345216, percent=13.7, used=27312857088, free=119389913088, active=41898270720, inactive=102167666688, buffers=454897664, cached=123688579072, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 553s - loss: 1.2704 - acc: 0.6333[svmem(total=270846246912, available=233855901696, percent=13.7, used=27311292416, free=119396970496, active=41897803776, inactive=102162178048, buffers=454901760, cached=123683082240, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 553s - loss: 1.2704 - acc: 0.6333[svmem(total=270846246912, available=233855901696, percent=13.7, used=27311292416, free=119396970496, active=41897803776, inactive=102162178048, buffers=454901760, cached=123683082240, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 477s - loss: 1.2580 - acc: 0.6369[svmem(total=270846246912, available=234152816640, percent=13.5, used=27014295552, free=119692152832, active=41747476480, inactive=102010798080, buffers=454901760, cached=123684896768, shared=8814116864), [100.0, 0.0, 0.1, 0.0, 78.6, 100.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.3, 0.1, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 15.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 477s - loss: 1.2580 - acc: 0.6369[svmem(total=270846246912, available=234152816640, percent=13.5, used=27014295552, free=119692152832, active=41747476480, inactive=102010798080, buffers=454901760, cached=123684896768, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 399s - loss: 1.2725 - acc: 0.6338[svmem(total=270846246912, available=234045173760, percent=13.6, used=27122024448, free=119584641024, active=41868414976, inactive=102010892288, buffers=454934528, cached=123684646912, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.7, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.7, 0.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 399s - loss: 1.2725 - acc: 0.6338[svmem(total=270846246912, available=234045173760, percent=13.6, used=27122024448, free=119584641024, active=41868414976, inactive=102010892288, buffers=454934528, cached=123684646912, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 326s - loss: 1.2708 - acc: 0.6342[svmem(total=270846246912, available=234042941440, percent=13.6, used=27124326400, free=119582363648, active=41868169216, inactive=102010957824, buffers=454934528, cached=123684622336, shared=8814116864), [100.0, 0.1, 0.0, 0.0, 0.0, 100.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.3, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 326s - loss: 1.2708 - acc: 0.6342[svmem(total=270846246912, available=234042941440, percent=13.6, used=27124326400, free=119582363648, active=41868169216, inactive=102010957824, buffers=454934528, cached=123684622336, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 255s - loss: 1.2598 - acc: 0.6367[svmem(total=270846246912, available=234241683456, percent=13.5, used=26925514752, free=119781167104, active=41675345920, inactive=102010884096, buffers=454934528, cached=123684630528, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.3, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 255s - loss: 1.2598 - acc: 0.6367[svmem(total=270846246912, available=234241683456, percent=13.5, used=26925514752, free=119781167104, active=41675345920, inactive=102010884096, buffers=454934528, cached=123684630528, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 187s - loss: 1.2584 - acc: 0.6384[svmem(total=270846246912, available=234210136064, percent=13.5, used=26957058048, free=119749541888, active=41702756352, inactive=102010892288, buffers=454934528, cached=123684712448, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.6, 0.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 187s - loss: 1.2584 - acc: 0.6384[svmem(total=270846246912, available=234210136064, percent=13.5, used=26957058048, free=119749541888, active=41702756352, inactive=102010892288, buffers=454934528, cached=123684712448, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 121s - loss: 1.2562 - acc: 0.6400[svmem(total=270846246912, available=234215157760, percent=13.5, used=26952044544, free=119754608640, active=41702268928, inactive=102010892288, buffers=454934528, cached=123684659200, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.3, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 1.9, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 121s - loss: 1.2562 - acc: 0.6400[svmem(total=270846246912, available=234215157760, percent=13.5, used=26952044544, free=119754608640, active=41702268928, inactive=102010892288, buffers=454934528, cached=123684659200, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 57s - loss: 1.2515 - acc: 0.6396 [svmem(total=270846246912, available=234214780928, percent=13.5, used=26952417280, free=119754240000, active=41702268928, inactive=102010892288, buffers=454938624, cached=123684651008, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 57s - loss: 1.2515 - acc: 0.6396 [svmem(total=270846246912, available=234214780928, percent=13.5, used=26952417280, free=119754240000, active=41702268928, inactive=102010892288, buffers=454938624, cached=123684651008, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
[svmem(total=270846246912, available=234216554496, percent=13.5, used=26950725632, free=119755948032, active=41702346752, inactive=102010974208, buffers=454942720, cached=123684630528, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 1.6, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2986/2986 [==============================] - 1250s - loss: 1.2487 - acc: 0.6407 - val_loss: 1.4776 - val_acc: 0.5900
2986/2986 [==============================] - 1250s - loss: 1.2487 - acc: 0.6407 - val_loss: 1.4776 - val_acc: 0.5900
Epoch 3/5
[svmem(total=270846246912, available=234217304064, percent=13.5, used=26949976064, free=119756701696, active=41702346752, inactive=102010970112, buffers=454942720, cached=123684626432, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
Epoch 3/5
[svmem(total=270846246912, available=234217304064, percent=13.5, used=26949976064, free=119756701696, active=41702346752, inactive=102010970112, buffers=454942720, cached=123684626432, shared=8814116864), [0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 1107s - loss: 1.0322 - acc: 0.6400[svmem(total=270846246912, available=234214760448, percent=13.5, used=26952441856, free=119754231808, active=41702612992, inactive=102010892288, buffers=454942720, cached=123684630528, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 1107s - loss: 1.0322 - acc: 0.6400[svmem(total=270846246912, available=234214760448, percent=13.5, used=26952441856, free=119754231808, active=41702612992, inactive=102010892288, buffers=454942720, cached=123684630528, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1121s - loss: 1.0369 - acc: 0.6600[svmem(total=270846246912, available=234216665088, percent=13.5, used=26950537216, free=119756120064, active=41702440960, inactive=102010888192, buffers=454942720, cached=123684646912, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.8, 0.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 1121s - loss: 1.0369 - acc: 0.6600[svmem(total=270846246912, available=234216665088, percent=13.5, used=26950537216, free=119756120064, active=41702440960, inactive=102010888192, buffers=454942720, cached=123684646912, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1045s - loss: 1.0083 - acc: 0.6978[svmem(total=270846246912, available=234021433344, percent=13.6, used=27145768960, free=119560892416, active=41895751680, inactive=102010875904, buffers=454942720, cached=123684642816, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 1045s - loss: 1.0083 - acc: 0.6978[svmem(total=270846246912, available=234021433344, percent=13.6, used=27145768960, free=119560892416, active=41895751680, inactive=102010875904, buffers=454942720, cached=123684642816, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 1008s - loss: 0.9841 - acc: 0.7250[svmem(total=270846246912, available=233898573824, percent=13.6, used=27268624384, free=119438028800, active=42019381248, inactive=102010867712, buffers=454950912, cached=123684642816, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 1008s - loss: 0.9841 - acc: 0.7250[svmem(total=270846246912, available=233898573824, percent=13.6, used=27268624384, free=119438028800, active=42019381248, inactive=102010867712, buffers=454950912, cached=123684642816, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 1168s - loss: 0.9728 - acc: 0.7360[svmem(total=270846246912, available=233773948928, percent=13.7, used=27393249280, free=119313362944, active=42142777344, inactive=102010863616, buffers=454967296, cached=123684667392, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 1168s - loss: 0.9728 - acc: 0.7360[svmem(total=270846246912, available=233773948928, percent=13.7, used=27393249280, free=119313362944, active=42142777344, inactive=102010863616, buffers=454967296, cached=123684667392, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 1349s - loss: 0.9896 - acc: 0.7422[svmem(total=270846246912, available=241856552960, percent=10.7, used=19310649344, free=127395905536, active=34077245440, inactive=102010880000, buffers=454979584, cached=123684712448, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 1349s - loss: 0.9896 - acc: 0.7422[svmem(total=270846246912, available=241855918080, percent=10.7, used=19311284224, free=127395270656, active=34077245440, inactive=102010880000, buffers=454979584, cached=123684712448, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 1375s - loss: 1.0225 - acc: 0.7448[svmem(total=270846246912, available=238688575488, percent=11.9, used=22478622720, free=124227878912, active=37235363840, inactive=102010851328, buffers=455000064, cached=123684745216, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.3, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 1375s - loss: 1.0225 - acc: 0.7448[svmem(total=270846246912, available=238688575488, percent=11.9, used=22478622720, free=124227878912, active=37235363840, inactive=102010851328, buffers=455000064, cached=123684745216, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 1306s - loss: 1.0337 - acc: 0.7483[svmem(total=270846246912, available=236562534400, percent=12.7, used=24604663808, free=122101829632, active=39358808064, inactive=102010863616, buffers=455012352, cached=123684741120, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 1306s - loss: 1.0337 - acc: 0.7483[svmem(total=270846246912, available=236562534400, percent=12.7, used=24604663808, free=122101829632, active=39358808064, inactive=102010863616, buffers=455012352, cached=123684741120, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 1176s - loss: 1.0491 - acc: 0.7459[svmem(total=270846246912, available=235751948288, percent=13.0, used=25415213056, free=121291284480, active=40168607744, inactive=102010834944, buffers=455016448, cached=123684732928, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 1176s - loss: 1.0491 - acc: 0.7459[svmem(total=270846246912, available=235751948288, percent=13.0, used=25415213056, free=121291284480, active=40168607744, inactive=102010834944, buffers=455016448, cached=123684732928, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 1019s - loss: 1.0313 - acc: 0.7533[svmem(total=270846246912, available=235758747648, percent=13.0, used=25408450560, free=121298051072, active=40161677312, inactive=102010863616, buffers=455016448, cached=123684728832, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 1019s - loss: 1.0313 - acc: 0.7533[svmem(total=270846246912, available=235758747648, percent=13.0, used=25408450560, free=121298051072, active=40161677312, inactive=102010863616, buffers=455016448, cached=123684728832, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 884s - loss: 1.0383 - acc: 0.7545 [svmem(total=270846246912, available=235755827200, percent=13.0, used=25411366912, free=121295060992, active=40154832896, inactive=102010859520, buffers=455020544, cached=123684798464, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.3, 0.1, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.3, 0.2, 0.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3, 0.1, 7.0, 0.0, 0.5, 0.0, 0.0, 2.2, 0.7, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.3, 0.2, 0.0, 5.2, 0.0, 0.0, 0.1, 0.0, 0.3, 0.6, 0.0, 5.2, 0.0, 0.0, 0.0, 0.0, 0.3, 0.1, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 884s - loss: 1.0383 - acc: 0.7545 [svmem(total=270846246912, available=235755827200, percent=13.0, used=25411366912, free=121295060992, active=40154832896, inactive=102010859520, buffers=455020544, cached=123684798464, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 760s - loss: 1.0539 - acc: 0.7528[svmem(total=270846246912, available=235708489728, percent=13.0, used=25458708480, free=121247744000, active=40213676032, inactive=102010851328, buffers=455020544, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 760s - loss: 1.0539 - acc: 0.7528[svmem(total=270846246912, available=235708489728, percent=13.0, used=25458708480, free=121247744000, active=40213676032, inactive=102010851328, buffers=455020544, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 641s - loss: 1.0576 - acc: 0.7518[svmem(total=270846246912, available=235625635840, percent=13.0, used=25541656576, free=121164816384, active=40296833024, inactive=102010937344, buffers=455020544, cached=123684753408, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 641s - loss: 1.0576 - acc: 0.7518[svmem(total=270846246912, available=235625635840, percent=13.0, used=25541656576, free=121164816384, active=40296833024, inactive=102010937344, buffers=455020544, cached=123684753408, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 530s - loss: 1.0467 - acc: 0.7552[svmem(total=270846246912, available=235542368256, percent=13.0, used=25624817664, free=121081638912, active=40379375616, inactive=102010839040, buffers=455032832, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 530s - loss: 1.0467 - acc: 0.7552[svmem(total=270846246912, available=235542368256, percent=13.0, used=25624817664, free=121081638912, active=40379375616, inactive=102010839040, buffers=455032832, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 428s - loss: 1.0505 - acc: 0.7547[svmem(total=270846246912, available=235528175616, percent=13.0, used=25639071744, free=121067372544, active=40393003008, inactive=102010904576, buffers=455032832, cached=123684769792, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 428s - loss: 1.0505 - acc: 0.7547[svmem(total=270846246912, available=235528175616, percent=13.0, used=25639071744, free=121067372544, active=40393003008, inactive=102010904576, buffers=455032832, cached=123684769792, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 336s - loss: 1.0381 - acc: 0.7587[svmem(total=270846246912, available=235460300800, percent=13.1, used=25706897408, free=120999522304, active=40458559488, inactive=102010855424, buffers=455041024, cached=123684786176, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.2, 0.0, 0.0, 0.0, 0.0, 3.3, 0.8, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.1, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.9, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 336s - loss: 1.0381 - acc: 0.7587[svmem(total=270846246912, available=235460300800, percent=13.1, used=25706897408, free=120999522304, active=40458559488, inactive=102010855424, buffers=455041024, cached=123684786176, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 247s - loss: 1.0330 - acc: 0.7612[svmem(total=270846246912, available=235462451200, percent=13.1, used=25704747008, free=121001680896, active=40458665984, inactive=102010851328, buffers=455049216, cached=123684769792, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 247s - loss: 1.0330 - acc: 0.7612[svmem(total=270846246912, available=235462451200, percent=13.1, used=25704747008, free=121001680896, active=40458665984, inactive=102010851328, buffers=455049216, cached=123684769792, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 158s - loss: 1.0359 - acc: 0.7604[svmem(total=270846246912, available=235461906432, percent=13.1, used=25705287680, free=121001123840, active=40458407936, inactive=102010847232, buffers=455053312, cached=123684782080, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 158s - loss: 1.0359 - acc: 0.7604[svmem(total=270846246912, available=235461906432, percent=13.1, used=25705287680, free=121001123840, active=40458407936, inactive=102010847232, buffers=455053312, cached=123684782080, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 74s - loss: 1.0410 - acc: 0.7593 [svmem(total=270846246912, available=235292041216, percent=13.1, used=25875259392, free=120831152128, active=40628310016, inactive=102010933248, buffers=455053312, cached=123684782080, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 74s - loss: 1.0410 - acc: 0.7593 [svmem(total=270846246912, available=235292041216, percent=13.1, used=25875259392, free=120831152128, active=40628310016, inactive=102010933248, buffers=455053312, cached=123684782080, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
[svmem(total=270846246912, available=235225579520, percent=13.2, used=25941614592, free=120764772352, active=40693587968, inactive=102010826752, buffers=455057408, cached=123684802560, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2986/2986 [==============================] - 1612s - loss: 1.0370 - acc: 0.7612 - val_loss: 1.2682 - val_acc: 0.7100
2986/2986 [==============================] - 1612s - loss: 1.0370 - acc: 0.7612 - val_loss: 1.2682 - val_acc: 0.7100
Epoch 4/5
[svmem(total=270846246912, available=235226222592, percent=13.2, used=25940975616, free=120765423616, active=40693592064, inactive=102010826752, buffers=455057408, cached=123684790272, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
Epoch 4/5
[svmem(total=270846246912, available=235226222592, percent=13.2, used=25940975616, free=120765423616, active=40693592064, inactive=102010826752, buffers=455057408, cached=123684790272, shared=8814116864), [0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 970s - loss: 0.8563 - acc: 0.8000[svmem(total=270846246912, available=235211759616, percent=13.2, used=25955393536, free=120750931968, active=40707854336, inactive=102010880000, buffers=455057408, cached=123684864000, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 971s - loss: 0.8563 - acc: 0.8000[svmem(total=270846246912, available=235211759616, percent=13.2, used=25955393536, free=120750931968, active=40707854336, inactive=102010880000, buffers=455057408, cached=123684864000, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 932s - loss: 0.7459 - acc: 0.8333[svmem(total=270846246912, available=235794190336, percent=12.9, used=25373011968, free=121333420032, active=40127664128, inactive=102010826752, buffers=455061504, cached=123684753408, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 932s - loss: 0.7459 - acc: 0.8333[svmem(total=270846246912, available=235794190336, percent=12.9, used=25373011968, free=121333420032, active=40127664128, inactive=102010826752, buffers=455061504, cached=123684753408, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 918s - loss: 0.7730 - acc: 0.8222[svmem(total=270846246912, available=235794186240, percent=12.9, used=25373016064, free=121333428224, active=40127418368, inactive=102010818560, buffers=455061504, cached=123684741120, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 918s - loss: 0.7730 - acc: 0.8222[svmem(total=270846246912, available=235794186240, percent=12.9, used=25373016064, free=121333428224, active=40127418368, inactive=102010818560, buffers=455061504, cached=123684741120, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 915s - loss: 0.7924 - acc: 0.8167[svmem(total=270846246912, available=235792805888, percent=12.9, used=25374396416, free=121332031488, active=40127815680, inactive=102010793984, buffers=455061504, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 915s - loss: 0.7924 - acc: 0.8167[svmem(total=270846246912, available=235792805888, percent=12.9, used=25374396416, free=121332031488, active=40127815680, inactive=102010793984, buffers=455061504, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 852s - loss: 0.8083 - acc: 0.8120[svmem(total=270846246912, available=235794448384, percent=12.9, used=25372753920, free=121333673984, active=40127578112, inactive=102010769408, buffers=455061504, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 852s - loss: 0.8083 - acc: 0.8120[svmem(total=270846246912, available=235794448384, percent=12.9, used=25372753920, free=121333673984, active=40127578112, inactive=102010769408, buffers=455061504, cached=123684757504, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 781s - loss: 0.8693 - acc: 0.7978[svmem(total=270846246912, available=235792777216, percent=12.9, used=25374420992, free=121331970048, active=40128499712, inactive=102010773504, buffers=455061504, cached=123684794368, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 781s - loss: 0.8693 - acc: 0.7978[svmem(total=270846246912, available=235792777216, percent=12.9, used=25374420992, free=121331970048, active=40128499712, inactive=102010773504, buffers=455061504, cached=123684794368, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 723s - loss: 0.8399 - acc: 0.8067[svmem(total=270846246912, available=235792228352, percent=12.9, used=25374973952, free=121331417088, active=40127979520, inactive=102010777600, buffers=455069696, cached=123684786176, shared=8814116864), [100.0, 0.0, 0.1, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 1.4, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 723s - loss: 0.8399 - acc: 0.8067[svmem(total=270846246912, available=235792228352, percent=12.9, used=25374973952, free=121331417088, active=40127979520, inactive=102010777600, buffers=455069696, cached=123684786176, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 659s - loss: 0.8304 - acc: 0.8100[svmem(total=270846246912, available=235793326080, percent=12.9, used=25373876224, free=121332535296, active=40128049152, inactive=102010777600, buffers=455069696, cached=123684765696, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 659s - loss: 0.8304 - acc: 0.8100[svmem(total=270846246912, available=235793326080, percent=12.9, used=25373876224, free=121332535296, active=40128049152, inactive=102010777600, buffers=455069696, cached=123684765696, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 600s - loss: 0.8528 - acc: 0.8030[svmem(total=270846246912, available=235794575360, percent=12.9, used=25372622848, free=121333780480, active=40128057344, inactive=102010769408, buffers=455069696, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 600s - loss: 0.8528 - acc: 0.8030[svmem(total=270846246912, available=235794575360, percent=12.9, used=25372622848, free=121333780480, active=40128057344, inactive=102010769408, buffers=455069696, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 542s - loss: 0.8606 - acc: 0.8007[svmem(total=270846246912, available=235795120128, percent=12.9, used=25372192768, free=121334206464, active=40127946752, inactive=102010863616, buffers=455073792, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 542s - loss: 0.8606 - acc: 0.8007[svmem(total=270846246912, available=235795120128, percent=12.9, used=25372192768, free=121334206464, active=40127946752, inactive=102010863616, buffers=455073792, cached=123684773888, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 485s - loss: 0.8762 - acc: 0.7952[svmem(total=270846246912, available=235628191744, percent=13.0, used=25539006464, free=121167380480, active=40293814272, inactive=102010744832, buffers=455081984, cached=123684777984, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 485s - loss: 0.8762 - acc: 0.7952[svmem(total=270846246912, available=235628191744, percent=13.0, used=25539006464, free=121167380480, active=40293814272, inactive=102010744832, buffers=455081984, cached=123684777984, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 428s - loss: 0.8865 - acc: 0.7911[svmem(total=270846246912, available=235520315392, percent=13.0, used=25646882816, free=121059459072, active=40400400384, inactive=102010744832, buffers=455086080, cached=123684818944, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 428s - loss: 0.8865 - acc: 0.7911[svmem(total=270846246912, available=235520884736, percent=13.0, used=25646313472, free=121059909632, active=40400175104, inactive=102010863616, buffers=455086080, cached=123684937728, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 371s - loss: 0.8786 - acc: 0.7933[svmem(total=270846246912, available=235522879488, percent=13.0, used=25644318720, free=121062031360, active=40399859712, inactive=102010748928, buffers=455094272, cached=123684802560, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.7, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 371s - loss: 0.8786 - acc: 0.7933[svmem(total=270846246912, available=235522879488, percent=13.0, used=25644318720, free=121062031360, active=40399859712, inactive=102010748928, buffers=455094272, cached=123684802560, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 316s - loss: 0.8743 - acc: 0.7938[svmem(total=270846246912, available=235407282176, percent=13.1, used=25759911936, free=120946409472, active=40506933248, inactive=102010744832, buffers=455106560, cached=123684818944, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 3.5, 0.4, 0.0, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 2.0, 0.0, 0.0, 1.1, 2.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 316s - loss: 0.8743 - acc: 0.7938[svmem(total=270846246912, available=235407282176, percent=13.1, used=25759911936, free=120946409472, active=40506933248, inactive=102010744832, buffers=455106560, cached=123684818944, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 261s - loss: 0.8735 - acc: 0.7938[svmem(total=270846246912, available=235417448448, percent=13.1, used=25749868544, free=120956456960, active=40505987072, inactive=102010880000, buffers=455114752, cached=123684806656, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
2250/2986 [=====================>........] - ETA: 261s - loss: 0.8735 - acc: 0.7938[svmem(total=270846246912, available=235417448448, percent=13.1, used=25749868544, free=120956456960, active=40505987072, inactive=102010880000, buffers=455114752, cached=123684806656, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 207s - loss: 0.8623 - acc: 0.7975[svmem(total=270846246912, available=235417030656, percent=13.1, used=25750167552, free=120956149760, active=40505729024, inactive=102010761216, buffers=455122944, cached=123684806656, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
2400/2986 [=======================>......] - ETA: 207s - loss: 0.8623 - acc: 0.7975[svmem(total=270846246912, available=235417030656, percent=13.1, used=25750167552, free=120956149760, active=40505729024, inactive=102010761216, buffers=455122944, cached=123684806656, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 153s - loss: 0.8645 - acc: 0.7973[svmem(total=270846246912, available=235416641536, percent=13.1, used=25750683648, free=120955576320, active=40506060800, inactive=102010949632, buffers=455122944, cached=123684864000, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
2550/2986 [========================>.....] - ETA: 153s - loss: 0.8645 - acc: 0.7973[svmem(total=270846246912, available=235416641536, percent=13.1, used=25750683648, free=120955576320, active=40506060800, inactive=102010949632, buffers=455122944, cached=123684864000, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 100s - loss: 0.8757 - acc: 0.7922[svmem(total=270846246912, available=235310501888, percent=13.1, used=25856696320, free=120849547264, active=40612352000, inactive=102010814464, buffers=455122944, cached=123684880384, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 100s - loss: 0.8757 - acc: 0.7922[svmem(total=270846246912, available=235310501888, percent=13.1, used=25856696320, free=120849547264, active=40612352000, inactive=102010814464, buffers=455122944, cached=123684880384, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 48s - loss: 0.8768 - acc: 0.7905 [svmem(total=270846246912, available=235447959552, percent=13.1, used=25719214080, free=121114157056, active=40374128640, inactive=101983293440, buffers=455135232, cached=123557740544, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.2, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.1, 0.2, 0.3, 0.1, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.1]]
2850/2986 [===========================>..] - ETA: 48s - loss: 0.8768 - acc: 0.7905 [svmem(total=270846246912, available=235447959552, percent=13.1, used=25719214080, free=121114157056, active=40374128640, inactive=101983293440, buffers=455135232, cached=123557740544, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
[svmem(total=270846246912, available=235451559936, percent=13.1, used=25715638272, free=121117995008, active=40373866496, inactive=101983186944, buffers=455135232, cached=123557478400, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1]]
2986/2986 [==============================] - 1065s - loss: 0.8742 - acc: 0.7904 - val_loss: 1.1842 - val_acc: 0.6800
2986/2986 [==============================] - 1065s - loss: 0.8742 - acc: 0.7904 - val_loss: 1.1842 - val_acc: 0.6800
Epoch 5/5
[svmem(total=270846246912, available=235453652992, percent=13.1, used=25713541120, free=121120088064, active=40373866496, inactive=101983186944, buffers=455139328, cached=123557478400, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1]]
Epoch 5/5
[svmem(total=270846246912, available=235453652992, percent=13.1, used=25713541120, free=121120088064, active=40373866496, inactive=101983186944, buffers=455139328, cached=123557478400, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
150/2986 [>.............................] - ETA: 949s - loss: 0.8727 - acc: 0.7867[svmem(total=270846246912, available=235453829120, percent=13.1, used=25713369088, free=121120272384, active=40374145024, inactive=101983182848, buffers=455139328, cached=123557466112, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1]]
150/2986 [>.............................] - ETA: 949s - loss: 0.8727 - acc: 0.7867[svmem(total=270846246912, available=235453829120, percent=13.1, used=25713369088, free=121120272384, active=40374145024, inactive=101983182848, buffers=455139328, cached=123557466112, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
300/2986 [==>...........................] - ETA: 901s - loss: 0.7879 - acc: 0.8133[svmem(total=270846246912, available=235452264448, percent=13.1, used=25714933760, free=121118699520, active=40374898688, inactive=101983174656, buffers=455139328, cached=123557474304, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
300/2986 [==>...........................] - ETA: 901s - loss: 0.7879 - acc: 0.8133[svmem(total=270846246912, available=235452264448, percent=13.1, used=25714933760, free=121118699520, active=40374898688, inactive=101983174656, buffers=455139328, cached=123557474304, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
450/2986 [===>..........................] - ETA: 851s - loss: 0.7965 - acc: 0.8022[svmem(total=270846246912, available=235451949056, percent=13.1, used=25715245056, free=121118384128, active=40374390784, inactive=101983166464, buffers=455143424, cached=123557474304, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
450/2986 [===>..........................] - ETA: 851s - loss: 0.7965 - acc: 0.8022[svmem(total=270846246912, available=235451949056, percent=13.1, used=25715245056, free=121118384128, active=40374390784, inactive=101983166464, buffers=455143424, cached=123557474304, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
600/2986 [=====>........................] - ETA: 802s - loss: 0.8386 - acc: 0.7867[svmem(total=270846246912, available=235451654144, percent=13.1, used=25715675136, free=121117913088, active=40375132160, inactive=101983297536, buffers=455143424, cached=123557515264, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.8, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0]]
600/2986 [=====>........................] - ETA: 802s - loss: 0.8386 - acc: 0.7867[svmem(total=270846246912, available=235451654144, percent=13.1, used=25715675136, free=121117913088, active=40375132160, inactive=101983297536, buffers=455143424, cached=123557515264, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 751s - loss: 0.8357 - acc: 0.7853[svmem(total=270846246912, available=235450499072, percent=13.1, used=25716695040, free=121116844032, active=40376061952, inactive=101983150080, buffers=455143424, cached=123557564416, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.1, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
750/2986 [======>.......................] - ETA: 751s - loss: 0.8357 - acc: 0.7853[svmem(total=270846246912, available=235450499072, percent=13.1, used=25716695040, free=121116844032, active=40376061952, inactive=101983150080, buffers=455143424, cached=123557564416, shared=8814116864), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 705s - loss: 0.7899 - acc: 0.8000[svmem(total=270846246912, available=235240611840, percent=13.1, used=25926541312, free=120901971968, active=40581001216, inactive=101986746368, buffers=455155712, cached=123562577920, shared=8814120960), [100.0, 62.6, 0.1, 0.0, 0.0, 100.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1, 0.3, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
900/2986 [========>.....................] - ETA: 705s - loss: 0.7899 - acc: 0.8000[svmem(total=270846246912, available=235240611840, percent=13.1, used=25926541312, free=120901971968, active=40581001216, inactive=101986746368, buffers=455155712, cached=123562577920, shared=8814120960), [100.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 654s - loss: 0.7704 - acc: 0.8048[svmem(total=270846246912, available=235013242880, percent=13.2, used=26153943040, free=120664416256, active=40807600128, inactive=101995810816, buffers=455176192, cached=123572711424, shared=8814120960), [100.0, 99.8, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1050/2986 [=========>....................] - ETA: 654s - loss: 0.7704 - acc: 0.8048[svmem(total=270846246912, available=235013242880, percent=13.2, used=26153943040, free=120664416256, active=40807600128, inactive=101995810816, buffers=455176192, cached=123572711424, shared=8814120960), [100.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 605s - loss: 0.7671 - acc: 0.8042[svmem(total=270846246912, available=234766131200, percent=13.3, used=26401054720, free=120409931776, active=41056690176, inactive=101999194112, buffers=455196672, cached=123580063744, shared=8814120960), [100.0, 59.7, 0.0, 0.0, 0.1, 100.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1200/2986 [===========>..................] - ETA: 605s - loss: 0.7671 - acc: 0.8042[svmem(total=270846246912, available=234766131200, percent=13.3, used=26401054720, free=120409931776, active=41056690176, inactive=101999194112, buffers=455196672, cached=123580063744, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 554s - loss: 0.7748 - acc: 0.8007[svmem(total=270846246912, available=234554884096, percent=13.4, used=26612301824, free=120198643712, active=41259085824, inactive=101998600192, buffers=455200768, cached=123580100608, shared=8814120960), [100.0, 0.7, 0.1, 0.0, 0.1, 100.0, 4.0, 0.0, 0.5, 0.2, 0.0, 6.2, 0.1, 0.1, 0.0, 0.2, 1.0, 0.7, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.4, 0.8, 0.0, 6.9, 0.0, 1.3, 0.0, 0.0, 0.4, 2.5, 0.0, 1.8, 0.1, 0.0, 0.0, 0.0, 1.3, 0.1, 0.0, 6.7, 0.0, 0.0, 0.0, 0.0, 0.4, 0.2, 0.0, 13.6, 0.0, 0.0, 0.0, 0.0, 0.4, 0.2, 0.0, 7.1, 0.0, 0.0, 0.0, 0.0]]
1350/2986 [============>.................] - ETA: 554s - loss: 0.7748 - acc: 0.8007[svmem(total=270846246912, available=234554884096, percent=13.4, used=26612301824, free=120198643712, active=41259085824, inactive=101998600192, buffers=455200768, cached=123580100608, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 503s - loss: 0.7859 - acc: 0.7980[svmem(total=270846246912, available=234497462272, percent=13.4, used=26669723648, free=120140967936, active=41317056512, inactive=101998587904, buffers=455204864, cached=123580350464, shared=8814120960), [100.0, 6.8, 0.3, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.3, 0.1, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.4, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 12.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1500/2986 [==============>...............] - ETA: 503s - loss: 0.7859 - acc: 0.7980[svmem(total=270846246912, available=234497462272, percent=13.4, used=26669723648, free=120140967936, active=41317056512, inactive=101998587904, buffers=455204864, cached=123580350464, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 455s - loss: 0.8074 - acc: 0.7909[svmem(total=270846246912, available=234378321920, percent=13.5, used=26788872192, free=120021962752, active=41430306816, inactive=101998575616, buffers=455221248, cached=123580190720, shared=8814120960), [100.0, 18.2, 1.2, 0.0, 0.9, 100.0, 2.3, 0.0, 1.4, 0.1, 0.0, 1.5, 0.1, 4.7, 0.0, 0.6, 0.1, 5.9, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 1.6, 1.1, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 1.1, 2.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.0, 60.2, 0.8, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0]]
1650/2986 [===============>..............] - ETA: 455s - loss: 0.8074 - acc: 0.7909[svmem(total=270846246912, available=234378321920, percent=13.5, used=26788872192, free=120021962752, active=41430306816, inactive=101998575616, buffers=455221248, cached=123580190720, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 407s - loss: 0.7976 - acc: 0.7928[svmem(total=270846246912, available=234511769600, percent=13.4, used=26655428608, free=120142929920, active=41283309568, inactive=102012035072, buffers=455237632, cached=123592650752, shared=8814120960), [100.0, 20.9, 2.5, 0.0, 0.4, 100.0, 1.0, 0.0, 1.8, 0.6, 0.0, 4.0, 0.1, 6.9, 0.1, 1.6, 1.1, 1.9, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 5.2, 0.3, 0.2, 2.0, 0.0, 0.0, 0.0, 0.0, 6.4, 3.5, 2.1, 1.7, 0.1, 0.0, 0.3, 0.0, 1.9, 0.6, 0.0, 14.4, 0.0, 0.0, 0.0, 0.0, 1.8, 0.5, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 4.2, 0.5, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0]]
1800/2986 [=================>............] - ETA: 407s - loss: 0.7976 - acc: 0.7928[svmem(total=270846246912, available=234511769600, percent=13.4, used=26655428608, free=120142929920, active=41283309568, inactive=102012035072, buffers=455237632, cached=123592650752, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 356s - loss: 0.8045 - acc: 0.7913[svmem(total=270846246912, available=234536054784, percent=13.4, used=26631241728, free=120167178240, active=41284665344, inactive=102012170240, buffers=455249920, cached=123592577024, shared=8814120960), [100.0, 11.8, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.0, 0.4, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
1950/2986 [==================>...........] - ETA: 356s - loss: 0.8045 - acc: 0.7913[svmem(total=270846246912, available=234536054784, percent=13.4, used=26631241728, free=120167178240, active=41284665344, inactive=102012170240, buffers=455249920, cached=123592577024, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 306s - loss: 0.7938 - acc: 0.7933[svmem(total=270846246912, available=233903943680, percent=13.6, used=27263250432, free=119310966784, active=42042593280, inactive=102082011136, buffers=455258112, cached=123816771584, shared=8814120960), [100.0, 29.4, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2100/2986 [====================>.........] - ETA: 306s - loss: 0.7938 - acc: 0.7933[svmem(total=270846246912, available=233903943680, percent=13.6, used=27263250432, free=119310966784, active=42042593280, inactive=102082011136, buffers=455258112, cached=123816771584, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 253s - loss: 0.7841 - acc: 0.7956[svmem(total=270846246912, available=233797500928, percent=13.7, used=27369689088, free=119204483072, active=42148966400, inactive=102082019328, buffers=455258112, cached=123816816640, shared=8814120960), [100.0, 3.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2250/2986 [=====================>........] - ETA: 253s - loss: 0.7841 - acc: 0.7956[svmem(total=270846246912, available=233797500928, percent=13.7, used=27369689088, free=119204483072, active=42148966400, inactive=102082019328, buffers=455258112, cached=123816816640, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 201s - loss: 0.7799 - acc: 0.7962[svmem(total=270846246912, available=233962459136, percent=13.6, used=27204730880, free=119369453568, active=41982992384, inactive=102082027520, buffers=455270400, cached=123816792064, shared=8814120960), [100.0, 3.9, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.1, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2400/2986 [=======================>......] - ETA: 201s - loss: 0.7799 - acc: 0.7962[svmem(total=270846246912, available=233962459136, percent=13.6, used=27204730880, free=119369453568, active=41982992384, inactive=102082027520, buffers=455270400, cached=123816792064, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 150s - loss: 0.7746 - acc: 0.7965[svmem(total=270846246912, available=233963536384, percent=13.6, used=27203665920, free=119370518528, active=41983320064, inactive=102082035712, buffers=455278592, cached=123816783872, shared=8814120960), [100.0, 3.6, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 4.1, 0.0, 0.3, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 3.9, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.4, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0]]
2550/2986 [========================>.....] - ETA: 150s - loss: 0.7746 - acc: 0.7965[svmem(total=270846246912, available=233963663360, percent=13.6, used=27203538944, free=119370645504, active=41983320064, inactive=102082035712, buffers=455278592, cached=123816783872, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 98s - loss: 0.7786 - acc: 0.7956 [svmem(total=270846246912, available=241407639552, percent=10.9, used=19759710208, free=126814449664, active=34556141568, inactive=102082203648, buffers=455290880, cached=123816796160, shared=8814120960), [100.0, 2.9, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2700/2986 [==========================>...] - ETA: 98s - loss: 0.7786 - acc: 0.7956 [svmem(total=270846246912, available=241407639552, percent=10.9, used=19759710208, free=126814449664, active=34556141568, inactive=102082203648, buffers=455290880, cached=123816796160, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 46s - loss: 0.7750 - acc: 0.7958[svmem(total=270846246912, available=240421679104, percent=11.2, used=20745543680, free=125828612096, active=35540307968, inactive=102082068480, buffers=455303168, cached=123816787968, shared=8814120960), [100.0, 3.2, 0.1, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2850/2986 [===========================>..] - ETA: 46s - loss: 0.7750 - acc: 0.7958[svmem(total=270846246912, available=240421679104, percent=11.2, used=20745543680, free=125828612096, active=35540307968, inactive=102082068480, buffers=455303168, cached=123816787968, shared=8814120960), [100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
[svmem(total=270846246912, available=239550222336, percent=11.6, used=21616930816, free=124957048832, active=36408840192, inactive=102082154496, buffers=455307264, cached=123816960000, shared=8814120960), [100.0, 28.7, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
2986/2986 [==============================] - 1034s - loss: 0.7712 - acc: 0.7967 - val_loss: 1.1330 - val_acc: 0.6600
2986/2986 [==============================] - 1034s - loss: 0.7712 - acc: 0.7967 - val_loss: 1.1330 - val_acc: 0.6600
Out[18]:
<keras.callbacks.History at 0x2b4314b044d0>
In [ ]:
print "ok"
In [19]:
predictions = model.predict(X_test)
np.save("../predictions/tiny_seq_LSTM1.npy", predictions)
class_preds = model.predict_classes(X_test)
class_prob = model.predict_proba(X_test)
np.save("../predictions/tiny_seq_class_LSTM1.npy", class_preds)
np.save("../predictions/tiny_seq_class_proba_LSTM1.npy", class_proba)
3724/3724 [==============================] - 365s
3724/3724 [==============================] - 363s
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-19-c695db1986db> in <module>()
4 class_prob = model.predict_proba(X_test)
5 np.save("../predictions/tiny_seq_class_LSTM1.npy", class_preds)
----> 6 np.save("../predictions/tiny_seq_class_proba_LSTM1.npy", class_proba)
NameError: name 'class_proba' is not defined
In [ ]:
Content source: sandias42/mlware
Similar notebooks: