Major GUI rendering problems
I am currently using RapidMiner 9.9 and have encountered GUI problems. During my work in program I get something like this.
I have currently tried a couple of thing, but to no avail. What have a I tried:
- reinstalling Java
- reinstalling GPU drivers
- changing Bat file content such as this https://community.rapidminer.com/discussion/comment/47635
- setting GPU to Max performance
- reinstalling RapidMiner
- installed DX9
- disabled the D3D harware acceleration
My PC setup is:
AMD 5950x
64GB ram
Nvidia RTX 3090
I thank you for any new ideas.
Best Answers
-
Hi Andy,
just to be sure, did you run the RapidMiner-Studio.bat file after adding -Dsun.java2d.d3d=false
or the regular Desktop Icon / RapidMiner.exe file?
Greetings,
Jonas0 -
I run both. Neither was successful at the time. But RapidMiner started working fine on its own three days ago. Not sure if it was a GPU driver update or some Java updates.
P.S. I am sorry that I did not look at you answer earlier. Suggested solution that jwpfau wrote could likely help someone else at some point.-1
Answers
-
Hi Andy,
just to be sure, did you run the RapidMiner-Studio.bat file after adding -Dsun.java2d.d3d=false
or the regular Desktop Icon / RapidMiner.exe file?
Greetings,
Jonas0 -
I run both. Neither was successful at the time. But RapidMiner started working fine on its own three days ago. Not sure if it was a GPU driver update or some Java updates.
P.S. I am sorry that I did not look at you answer earlier. Suggested solution that jwpfau wrote could likely help someone else at some point.-1 -
Hello,
I had the same problem. So, it is very difficult to work with Rapidminer
My PC setup is:
Windows 10 (system and drivers up to date, including JAVA)
AMD 3990
64GB ram
Nvidia RTX 3080
I add -Dsun.java2d.d3d=false. It seems to work fine now ! Thanks a lot !
Greetings,
Nordine
0 -
I wanted to share the resolution I found after chasing this gremlin for weeks during the No Code AI ML data science certification from MIT.
My desktop system is:
AMD Ryzen 9 5950X 16-Core Processor 3.40 GHz
32.0 GB RAM
Windows 11 64-bit
Nvidia RTX 3080
1TB Memory (552gb used)
Java 8
java version "1.8.0_431"
Java(TM) SE Runtime Environment (build 1.8.0_431-b10)
Java HotSpot(TM) 64-Bit Server VM (build 25.431-b10, mixed mode)
I was able to run this sustainably after inserting -Dsun.java2d.d3d=false in the RapidMiner .bat file after JVM options. If its set anywhere else in the Launch line it will not work. Below is the string that worked effectively in the .bat file::launch
echo Launching RapidMiner Studio GUI now...
"%JAVA%" %JVM_OPTIONS% -Dsun.java2d.d3d=false -cp "%RAPIDMINER_HOME%\lib*" com.rapidminer.launcher.GUILauncher %CMD_LINE_ARGS%
goto startEndIf anyone has this issue in the future and they're using an RTX 30 series graphics card, this is likely the resolution.
0