The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
I am not able to read rmhdf5table file stored in my local computer using PyCharm.
Hello. I am trying to use PyCharm to interact with Rapidminer Studio. I am trying to read a rmhdf5table file that is stored in my local computer but I am failing to do so. This is how I initiate a Studio instance.
import rapidminer
rm = rapidminer.Studio("C://Program Files/RapidMiner/RapidMiner Studio")
Reading an rmhdf5table
df = rm.read_resource(rapidminer.File("C://Users/myname/Documents/RapidMiner/Repositories/rapidminer_training/data/raw/train_data.rmhdf5table"))
Error after trying to read rmhdf5table
import rapidminer
rm = rapidminer.Studio("C://Program Files/RapidMiner/RapidMiner Studio")
Reading an rmhdf5table
df = rm.read_resource(rapidminer.File("C://Users/myname/Documents/RapidMiner/Repositories/rapidminer_training/data/raw/train_data.rmhdf5table"))
Error after trying to read rmhdf5table
rapidminer.core.studio.StudioException: Error while executing studio: java.util.NoSuchElementException: No deserializer is registered for the file type rmhdf5table
Is it possible to read rmhdf5tables in PyCharm when using Rapidminer Studio?
Is it possible to read rmhdf5tables in PyCharm when using Rapidminer Studio?
0
Best Answer
-
phellinger Employee-RapidMiner, Member Posts: 103 RM EngineeringHi @xutfe3937,
Please use the Project class to read this file. It will not require Studio start at all, so it should return immediately:df = rapidminer.Project().read("C://Users/myname/Documents/RapidMiner/Repositories/rapidminer_training/data/raw/train_data.rmhdf5table")
Let me know if it works for you,
Best,
Peter1
Answers
Thank you. The documentation for Project class was helpful. The documentation for read_resource in Studio class mentioned that "...By using rapidminer.File and rapidminer.RepositoryLocation objects, you can specify explicitly whether you want to use local files or RapidMiner repository entries", so I thought it should be able to read rmhdf5tables in my local computer too. Does it not work that way?