Building the environment
Before we define the states, actions, and rewards, we need to set up the server and explain how it operates. We'll do that in several steps:
- First, we'll list all the environment parameters and variables by which the server is controlled.
- After that we'll set the essential assumptions of the problem, on which your AI will rely to provide a solution.
- Then we'll specify how you'll simulate the whole process.
- Finally, we'll explain the overall functioning of the server, and how the AI plays its role.
Parameters and variables of the server environment
Here is a list of all the parameters, which keep their values fixed, of the server environment:
- The average atmospheric temperature for each month.
- The optimal temperature range of the server, which we'll set as .
- The minimum temperature, below which the server fails to operate, which we'll set as .
- The maximum temperature...