Skip to content

Commit 8459355

Browse files
committed
remove incorrect rom file locations
Signed-off-by: Bam4d <chrisbam4d@gmail.com>
1 parent 82efeb1 commit 8459355

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rl4j-examples/src/main/java/org/deeplearning4j/examples/rl4j/A3CALE.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static void main(String[] args) throws IOException {
7373
//setup the emulation environment through ALE, you will need a ROM file
7474
ALEMDP mdp = null;
7575
try {
76-
mdp = new ALEMDP("/home/bam4d/konduit/ALE/ROMS/pong.bin");
76+
mdp = new ALEMDP("pong.bin");
7777
} catch (UnsatisfiedLinkError e) {
7878
System.out.println("To run this example, uncomment the \"ale-platform\" dependency in the pom.xml file.");
7979
}

rl4j-examples/src/main/java/org/deeplearning4j/examples/rl4j/ALE.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static void main(String[] args) throws IOException {
7676
//setup the emulation environment through ALE, you will need a ROM file
7777
ALEMDP mdp = null;
7878
try {
79-
mdp = new ALEMDP("/home/bam4d/konduit/ALE/ROMS/pong.bin");
79+
mdp = new ALEMDP("pong.bin");
8080
} catch (UnsatisfiedLinkError e) {
8181
System.out.println("To run this example, uncomment the \"ale-platform\" dependency in the pom.xml file.");
8282
}

0 commit comments

Comments
 (0)