Tasos Vafeiadis

Results 8 comments of Tasos Vafeiadis

Hello Tomas, I have also tried to play with the train across buildings. Here is how I tried to "debug" the function ``` if self.mmax == None: print(mainchunks) for m...

To be more specific, here is what you get when you calculate inside the for loop `m.max()` ![error_2](https://user-images.githubusercontent.com/23378874/46938145-abf77700-d06b-11e8-9a2a-2a6e8e0699f4.png)

Hello guys, I managed to fix the error by simply removing the train and test.set_window. I assume that the toolkit can identify the common dates within all the buildings. I...

I managed to fix it by changing the for loop inside the train_across_buildings_chunk as follows: ``` # Create a batch out of data from all buildings for i in range(num_meters):...

> > I managed to fix the error by simply removing the train and test.set_window. I assume that the toolkit can identify the common dates within all the buildings. I...

Comment out: i) from keras.utils import plot_model and ii) line 366 where it plots the model

Hello. I have the latest commit of the code (where the string of the video URL is addressed), I do not get any warnings like @JSmithOner. However, my music_data/ folder...

it looks like you are using one of the latest versions of tensorflow/keras 3+, based on the error. Try installing tf-keras. Then: ``` import tf_keras as keras import os os.environ["TF_USE_LEGACY_KERAS"]="1"...