The data components specify different types of data to train the model with. See here for a list of supported data files. Exist three different ways to import the data to the model:
Local
Environment
Random
Allows you to specify file(s) containing data to be used by the model. PerceptiLabs' Data Component currently supports the following file formats: .csv .txt .npy (NumPy file) .npz (NumPy zipped file). The Data Component can also be configured to point to a directory of image files in the following formats: .jpg .png .jpeg .tiff .tif. The files are read by PerceptiLabs in alphabetical/numerical order.
Parameters | Preview |
| |
Note: Paths cannot contain non-ascii characters.
Specifies that data be read in from a Gym environment. Environment component is a collection of test problems — environments — that you can use to work out your reinforcement learning algorithms provided by OpenAI.
Note
This component requires installation dependencies before it can be used. See Setting up OpenAI Gym Environments for Reinforcement Learning for more information.
Parameters:
Sample: selects the environment from Gym or Unity.
_action_space: displays the number of actions that can be taken in the selected environment. Note that this value is automatically calculated.
Generates random data (e.g., random noise).
Parameters:
Distribution: specifies the random distribution function to sample the values from. PerceptiLabs currently supports Normal (aka Gaussian) and Uniform.
Mean: the mean value that the random function will use to "center" the random values around.
Stddev: the standard deviation that the random function to use. The larger the value, the more spread out the random values will be.
Shape: the dimension and amount of random values to use.