Corrected typo
This commit is contained in:
		
							parent
							
								
									be637664e7
								
							
						
					
					
						commit
						fe97a9b78d
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -9,5 +9,5 @@ class EpsilonGreedySelector(ArgMaxSelector):
 | 
			
		|||
    # best_act is already implemented in ArgMaxSelector
 | 
			
		||||
    def act(self, state):
 | 
			
		||||
        eps = next(self.epsilon) if isinstance(self.epsilon, collections.Iterable) else self.epsilon
 | 
			
		||||
        action = self.random_act() if np.random.rand() < epsilon else self.best_act(state)
 | 
			
		||||
        action = self.random_act() if np.random.rand() < eps else self.best_act(state)
 | 
			
		||||
        return action
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue