Skip to content

Commit

Permalink
Fixing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementRomac committed Aug 5, 2024
1 parent a2f9ce5 commit 8770933
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion experiments/agents/bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from tqdm import tqdm
import numpy as np

from experiments.agents.base_agent import BaseAgent
from agents.base_agent import BaseAgent

class BotAgent(BaseAgent):
def __init__(self, envs, subgoals):
Expand Down
2 changes: 1 addition & 1 deletion experiments/agents/drrn/drrn.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import babyai.rl

from experiments.agents.base_agent import BaseAgent
from agents.base_agent import BaseAgent

# Accelerate
from accelerate import Accelerator
Expand Down
2 changes: 1 addition & 1 deletion experiments/agents/ppo/base_ppo_agent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from experiments.agents.base_agent import BaseAgent
from agents.base_agent import BaseAgent

from babyai.rl.utils.supervised_losses import ExtraInfoCollector

Expand Down
2 changes: 1 addition & 1 deletion experiments/agents/random_agent/random_agent.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
from tqdm import tqdm

from experiments.agents.base_agent import BaseAgent
from agents.base_agent import BaseAgent

class Random_agent(BaseAgent):
def __init__(self, envs, subgoals):
Expand Down
2 changes: 1 addition & 1 deletion experiments/train_symbolic_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# from subtask_prediction import SubtaskPrediction, SubtaskDataset
from colorama import Fore, Back, Style

from experiments.agents.ppo.symbolic_ppo_agent import SymbolicPPOAgent
from agents.ppo.symbolic_ppo_agent import SymbolicPPOAgent

if __name__ == "__main__":

Expand Down

0 comments on commit 8770933

Please sign in to comment.