This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install.packages(c("abind", "data.table")) | |
library(keras) | |
df<- data.frame(id=rep(LETTERS[1:10], each=5), static=rep(1:10, each=5), time=rep(1:5, times=5)) | |
df.cat<- data.frame(id=LETTERS[1:10], cat1=rep(LETTERS[1:5], times=2), cat2=letters[1:10]) | |
df<- merge(df, df.cat) | |
df$x1<- df$time * df$static | |
df$x2<- rnorm(nrow(df), mean=df$time * df$static + 10, sd=5) | |
df$x3<- rnorm(nrow(df), mean=df$time * df$static * 3, sd=2) | |
df$y<- rnorm(nrow(df), mean=(df$x1 + df$x2) / df$x3, sd=2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Application: nextcloud (nextcloud), signal: Segmentation fault | |
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". | |
[Current thread is 1 (Thread 0x7fa0a3823b80 (LWP 3193))] | |
Thread 11 (Thread 0x7fa050ff9700 (LWP 4051)): | |
#0 0x00007fa0965230b4 in __GI___libc_read (fd=71, buf=0x7fa050ff8810, nbytes=16) at ../sysdeps/unix/sysv/linux/read.c:27 | |
#1 0x00007fa093fcbcd0 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 | |
#2 0x00007fa093f87027 in g_main_context_check () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 | |
#3 0x00007fa093f874e0 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 | |
#4 0x00007fa093f8764c in g_main_context_iteration () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 |