itresearch

Results 16 issues of itresearch

Thanks @Kostis-S-Z for your clarification, it makes sense. I still have two doubts/questions. 1. In my experiments I have noticed discrepancy between rewards and PNL. While the model was getting...

question

I am reviewing my code but I am still not able to publish yet. I have my function for pnl calculation, I am not sure if it is correct. But...

Hello, I am getting the following error compiling the example: ``` # _/root ./main.go:20:29: not enough arguments in call to oanda.GetCandles have (string) want (string, string, string) ``` and doing...

Hi, after I changed the code to: ``` package main import ( "log" "os" "github.com/awoldes/goanda" "github.com/davecgh/go-spew/spew" "github.com/joho/godotenv" ) func main() { err := godotenv.Load() if err != nil { log.Fatal("Error...

Hello, I am trying to get code from https://blogs.rstudio.com/tensorflow/posts/2018-07-30-attention-layer/ and trying to reproduce this example. The following is my code: ``` reticulate::use_condaenv("tf-gpu", required = TRUE) library(keras) use_implementation("tensorflow") library(tensorflow) tfe_enable_eager_execution() library(tfdatasets)...

Hello, I have just done the following installation: ``` git clone https://www.github.com/farizrahman4u/recurrentshop.git cd recurrentshop python setup.py install ``` but if I execute the following code: ``` # The RNN logic...