changed verbose to 0
This commit is contained in:
+1
-1
@@ -46,7 +46,7 @@ if os.path.exists(zip_file):
|
||||
model = PPO.load(zip_file, env=env) # weitertrainieren
|
||||
else:
|
||||
print("Starte neues Modell")
|
||||
model = PPO("MultiInputPolicy", env, verbose=2)
|
||||
model = PPO("MultiInputPolicy", env, verbose=0)
|
||||
|
||||
# Trainieren mit Autosave
|
||||
model.learn(total_timesteps=500_000, callback=TimeBasedCheckpoint(100, saved_model_name))
|
||||
|
||||
Reference in New Issue
Block a user