Marcos Martins Marchetti

Results 31 comments of Marcos Martins Marchetti

Is the algorithm running for 2731 seconds including data import, preprocessing, and training, or just the training time?

> > Is the algorithm running for 2731 seconds including data import, preprocessing, and training, or just the training time? > > Both times are the time it takes to...

The ElegantRL updated the library which has resulted in changes to its structure, specifically the removal of the init_agent function. Could you provide the full error traceback? This would give...

Hello @BrotherZhu, It seems like you're facing a common issue that arises due to the difference between running scripts directly within a project directory versus using them as part of...

As of pandas 2.0, append (previously deprecated) [was removed](https://pandas.pydata.org/docs/whatsnew/v2.0.0.html#removal-of-prior-version-deprecations-changes). You need to use [concat](https://pandas.pydata.org/docs/reference/api/pandas.concat.html) instead (for most applications): `df_account_value = pd.concat([df_account_value, temp], ignore_index=True)`

👋 Hi @mpythonreal, I've reviewed the code you provided and made the necessary changes to address the `append` method removal in the latest pandas versions. Here's the updated code: ```python...

> Can you provide more details about sources of randomness for this notebook? And any strategies to fix them? As @notBradPitt pointed out, the initial state of the model can...

@AjinkyaBankar You raise an important point. Setting a seed value does indeed make the results reproducible, but it can also limit the randomness, which in turn can affect the exploration...

Yes, one way is instead of using "pip install", clone the repository and make desired changes.

When portfolio optimization models produce nearly identical weights for all assets, it could be due to several reasons. Model Initialization: Some optimization algorithms might start with an equal weight distribution...