seismometer.configuration.model.OtherInfo¶
- pydantic model seismometer.configuration.model.OtherInfo¶
Locations of configuration and data files.
Show Entity Relationship Diagram
Show JSON schema
{ "title": "OtherInfo", "description": "Locations of configuration and data files.", "type": "object", "properties": { "template": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Template" }, "info_dir": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Info Dir" }, "event_definition": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Event Definition" }, "prediction_definition": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Prediction Definition" }, "usage_config": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Usage Config" }, "data_dir": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Data Dir" }, "prediction_path": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" } ], "default": "scores.parquet", "title": "Prediction Path" }, "event_path": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" } ], "default": "events.parquet", "title": "Event Path" }, "metadata_path": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" } ], "default": "metadata.json", "title": "Metadata Path" } } }
- Fields:
- field data_dir: str | Path | None = None¶
The parent location of data files; primarily used during run.
- field event_definition: str | Path | None = None¶
The location of the event dictionary.
- field event_path: str | Path = 'events.parquet'¶
The location of the event data within data_dir.
- field info_dir: str | Path | None = None¶
Writable directors for output; used during run.
- field metadata_path: str | Path = 'metadata.json'¶
The location of the metadata file within data_dir.
- field prediction_definition: str | Path | None = None¶
The location of the prediction dictionary.
- field prediction_path: str | Path = 'scores.parquet'¶
The location of the prediction data within data_dir.
- field template: str | None = None¶
Descriptor of the template; not used.
- field usage_config: str | Path | None = None¶
The location of the usage configuration; used during run.