Recent Posts

Hyper Parameter Tuning

3 minute read

Hyper Parameter Tuning One way of searching for good hyper-parameters is by hand-tuning Another way of searching for good hyper-parameters is to divide ...

jupyter notebook

less than 1 minute read

Apply custom CSS styling to your jupyter notebooks

RL reward tutorial review

less than 1 minute read

Class Agent ```python class Agent: def init(self, state_size, is_eval=False, model_name=””): self.action_size = 3 # sit, buy, sell … def _model(self): ...