Section 1. Chapitre 4
single
Challenge: Modify Exploration Rate
Glissez pour afficher le menu
Tâche
Glissez pour commencer à coder
Modify the Q-learning implementation to use the exploration_rate parameter for controlling action selection during training. This challenge builds on your previous work with Q-learning by introducing the concept of exploration versus exploitation.
- Use the
exploration_rateargument to determine whether to select a random action or the best-known action at each step. - When a random value is less than
exploration_rate, select a random action. - Otherwise, select the action with the highest value from the Q-table for the current state.
- Ensure the rest of the Q-learning algorithm remains unchanged.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 4
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion