isciml: generate
Overview
The generate
subcommand in isciml is used for creating synthetic data or response files based on the models created with generate-models
. This command is essential for generating electromagnetic field data, sensor responses, or synthetic measurements that can be used as input for AI models or simulations.
Usage
Sequential
Multiple Cores
Distributed
Options
--vtk PATH
Mesh in VTK file format
-
Yes
--receiver_file PATH
Receiver locations file in CSV format
-
Yes
--receiver_file_has_header
Flag to indicate if the receiver file has a header
False
No
--perturb_receiver_z
Flag to perturb receiver z location
False
No
--input_folder PATH
Folder with files containing magnetic properties in numpy format
-
Yes
--ambient_field <FLOAT FLOAT FLOAT>...
Ambient magnetic field values (x, y, z)
820.5, 16241.7, 53380.0
No
--output_folder PATH
Folder for output files (adjoints or forward) in numpy format
-
Yes
--output_prefix TEXT
Prefix for output file names
"adjoint" or "forward"
No
--solver [adjoint, forward]
Solver mode: adjoint or forward
adjoint
No
--help
Show the help message and exit
-
No
Description
The generate
subcommand creates synthetic data based on the physical models and parameters you provide. It can operate in two modes: adjoint and forward, allowing for different types of data generation depending on your needs.
Example Usage
To generate adjoint data with default settings:
To generate forward data with custom ambient field and output prefix:
Notes
The VTK file should contain the mesh geometry created using the
generate-models
command.The receiver file should be in CSV format, containing the locations of receivers.
If
--receiver_file_has_header
is not set, the CSV is assumed to have no header.The
--perturb_receiver_z
option can be used to add some randomness to the z-coordinate of receivers, which may be useful for simulating real-world imperfections.The input folder should contain files with magnetic properties (likely generated from
generate-models
).The ambient field represents the background magnetic field in the x, y, and z directions.
Output files will be saved in the specified output folder, with names based on the input files and the chosen prefix.
The solver mode determines whether the command generates adjoint or forward data.
Related Commands
generate-models
: Used to create the physical models before generating data.train
: Used to train AI models on the generated data.inference
: Used to apply trained models to new data.
See Also
For more information on data generation techniques and parameters, refer to the isciml documentation on synthetic data creation and electromagnetic field modeling.
Last updated