Skip to content

Commit ab31441

Browse files
committed
Fixing issue with inp_amount and lstm
1 parent 5215418 commit ab31441

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/view/run_modal.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,12 @@ server <- function(id, data, sequence, forecast, transformations,
136136
)
137137
iterations_data <- iterations()[input$iterations_table_rows_all, ] |>
138138
mutate(
139-
inp_amount = as.numeric(inp_amount),
140-
lstm = as.numeric(lstm),
139+
inp_amount = as.numeric(as.character(inp_amount)),
140+
lstm = as.numeric(as.character(lstm)),
141+
epoch = epoch(),
141142
tests = tests()
142143
)
144+
print(iterations_data)
143145
results(
144146
process(data(), sequence(), forecast(), iterations_data)
145147
)

0 commit comments

Comments
 (0)