windowshopr

Results 53 comments of windowshopr

Found this thread and am curious about the same thing. I'm trying to extract the `qs.reports.metrics(test_run_trading_report_df['returns'], mode='full')` report to a CSV file, but this report is in a weird format...

Disregard my last, after doing a bit of code surfing, I noticed [this chunk](https://github.com/ranaroussi/quantstats/blob/faba38e5760ca0995d8f161eb12c81d75772bac6/quantstats/reports.py#L625) ``` if display: print(_tabulate(metrics, headers="keys", tablefmt='simple')) return None ``` So I just set `display=False` and now...

[https://github.com/heartexlabs/labelImg/issues/811#issuecomment-977605722](url)

I'm new to Go, but I'm having the same problem. `Windows 10, Go 1.19, AMD` My simple sample project structure and code looks like this: ![image](https://user-images.githubusercontent.com/40477419/183279230-b6333876-36e3-4f65-b35e-21f7185121db.png) ...which results in a...

One thing that might be worth mentioning here is that I’m running this inside a docker-compose. Maybe it doesn’t apply changes saved in a container, but only on local instances...

@Lucho00gh Did you find a solution for saving and reloading the agent? I'm trying to figure this out too. The article that @waudinio27 posted (I think) is for saving sequential...

Here's how I got @waudinio27 's solution to work. Basically, I created 2 .py scripts (using 6.evolution-strategy-agent), a train and a forward. The train is basically default, I just changed...

Thanks @Lucho00gh , maybe this will help. I've made a "train.py" and a "test.py" script using the `15.actor-critic-duel-agent`, which should work the same for any of the other TF session...

@waudinio27 thanks, and yes keep us posted with what you create. The test.py script I posted above would be what is used for “live” predictions. So you train on your...