Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
qijun han committed May 27, 2024
1 parent f2e7d63 commit 7b93dcf
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build:

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: source/conf.py
configuration: docs/source/conf.py
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
# builder: "dirhtml"
# Fail on all warnings to avoid broken references
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Algorithms
Algorithms
==============================

## Contents

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Data Structures
Data Structures
======================

3 changes: 2 additions & 1 deletion source/Machine Learning/rl/content.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Reinforcement Learning
Reinforcement Learning
==========================

Reinforcement learning is a type of machine learning that involves training agents to make sequences of decisions. The agent learns to achieve a goal in an uncertain, potentially complex environment. The agent learns to make decisions by interacting with the environment and receiving feedback in the form of rewards or penalties. The agent's goal is to maximize the total reward it receives over time.

Expand Down
5 changes: 5 additions & 0 deletions source/conf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import os
import sys
import sphinx_rtd_theme
sys.path.insert(0, os.path.abspath('.'))
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
Expand Down Expand Up @@ -27,6 +31,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

html_theme_options = {
'canonical_url': '',
Expand Down

0 comments on commit 7b93dcf

Please sign in to comment.