We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable three schemas in DerivaML:
To initiate DerivaML:
class DerivaML: def __init__(self, hostname: str, catalog_id: str, domain_schema: str, ml_schema: str, vocab_schema: str, data_dir: str):
In Catalog ML, hard coded the three schemas for the catalog. E.g. EyeAI project
class EyeAI(DerivaML): def __init__(self, hostname: str = 'www.eye-ai.org', data_dir: str = './'): super().__init__(hostname, 'eye-ai, 'eye-ai', 'eye-ai', data_dir)
FaceBase ML project
class FaceBaseML(DerivaML): def __init__(self, hostname: str = 'ml.facebase.org', data_dir: str = './'): super().__init__(hostname, 'isa', 'ml', 'vocab', data_dir)
The text was updated successfully, but these errors were encountered:
Changes: Initiate the Deriva-ML with the ML catalog schema name. For all the rest of the tables, search for the schema it belongs to.
Sorry, something went wrong.
When branches are created from issues, their pull requests are automatically linked.
Enable three schemas in DerivaML:
To initiate DerivaML:
In Catalog ML, hard coded the three schemas for the catalog.
E.g. EyeAI project
FaceBase ML project
The text was updated successfully, but these errors were encountered: