예제 #1
0
def dl():
    if is_gha:
        # Get the services via a confidential log in
        services = ["search", "dlhub", fx_scope, "openid"]
        auth_res = mdf_toolbox.confidential_login(client_id=client_id,
                                                  client_secret=client_secret,
                                                  services=services,
                                                  make_clients=False)
        return DLHubClient(dlh_authorizer=auth_res["dlhub"],
                           fx_authorizer=auth_res[fx_scope],
                           openid_authorizer=auth_res['openid'],
                           search_authorizer=auth_res['search'],
                           force_login=False,
                           http_timeout=10)
    else:
        return DLHubClient(http_timeout=10)
예제 #2
0
def get_dlhub_client(force=False):
    """Get the DLHub client

    Returns:
        DLHubClient: DLHubClient with the proper credentials
    """

    return DLHubClient(force=force)
예제 #3
0
from dlhub_sdk.client import DLHubClient
from argparse import ArgumentParser
import numpy as np

# Make the client
client = DLHubClient()

# TODO (wardlt): Increase default size, make it easier to access
client._fx_client.DEFAULT_MAX_REQUEST_SIZE = 50 * 1024**3

# Parse CLI arguments
parser = ArgumentParser(description='Run the model')
parser.add_argument('--model',
                    help='Name of the DLHub servable',
                    type=str,
                    default='loganw_globusid/binary_black_hole_mergers')
parser.add_argument('--test-size',
                    help='Number of waveforms to test',
                    type=int,
                    default=1)
args = parser.parse_args()

# Make some test data
test_data = np.random.uniform(size=(args.test_size, 101300, 1))

# Run it through dlhub
result = client.run(args.model, test_data)

print(result)
예제 #4
0
 def test_future(self):
     client = DLHubClient()
     future = DLHubFuture(client, completed_task, 1)
     self.assertFalse(future.running())
     self.assertTrue(future.done())
     self.assertEquals({}, future.result())
예제 #5
0
# Add in the model-specific data

#   Model name
model.set_name(f'mpnn-solvation-energy')
model.set_title(f'MPNN Model to Predict Solvation Energy of Molecules')
logging.info(f'Defined model name: {model.name}')

#   Model provenance information
model.set_authors(authors, affil)

#  model.add_related_identifier(paper-doi, 'DOI', 'IsDescribedBy')  # Need DOI
model.add_related_identifier("https://github.com/globus-labs/solvation-energy-ml", 'URL', 'IsDescribedBy')
logging.info('Added model-specific metadata')

# If desired, print out the metadata
if args.test:
    logging.info(f'Metadata:\n{yaml.dump(model.to_dict(), indent=2)}')

    logging.info('Running function')
    local_result = evaluate_molecules(mols)
    logging.info(f'Success! Output: {local_result}')
    exit()

# Publish servable to DLHub

#   Make the client and submit task
client = DLHubClient(http_timeout=-1)
task_id = client.publish_servable(model)
logging.info(f'Started publication. Task ID: {task_id}')
예제 #6
0
 def setUp(self):
     self.dl = DLHubClient(http_timeout=10)
예제 #7
0
class TestClient(TestCase):
    def setUp(self):
        self.dl = DLHubClient(http_timeout=10)

    def test_dlhub_init(self):
        self.assertIsInstance(self.dl, DLHubClient)

    def test_get_servables(self):
        r = self.dl.get_servables()
        self.assertIsInstance(r, list)
        self.assertIn('dlhub', r[0])

        # Make sure there are no duplicates
        self.assertEqual(len(r),
                         len(set(i['dlhub']['shorthand_name'] for i in r)))

        # Get with all versions of the model
        r = self.dl.get_servables(False)
        self.assertNotEqual(len(r),
                            len(set(i['dlhub']['shorthand_name'] for i in r)))

        # Get all servable names
        r = self.dl.list_servables()
        self.assertIsInstance(r, list)
        self.assertGreater(len(r), 0)
        self.assertIn('dlhub.test_gmail/1d_norm', r)

    def test_run(self):
        user = "******"
        name = "noop"
        data = {"data": ["V", "Co", "Zr"]}

        # Test a synchronous request
        res = self.dl.run("{}/{}".format(user, name), data, timeout=60)
        self.assertEqual(res, 'Hello')

        # Test an asynchronous request
        task_id = self.dl.run("{}/{}".format(user, name),
                              data,
                              asynchronous=True)
        self.assertIsInstance(task_id, DLHubFuture)
        self.assertEqual('Hello', task_id.result(timeout=60))

    @skipUnless(
        is_tag and is_travis and is_first_build,
        'Publish test only runs on first version of tagged builds on Travis')
    def test_submit(self):
        # Make an example function
        model = PythonStaticMethodModel.create_model('numpy.linalg', 'norm')
        model.set_name('1d_norm')
        model.set_title('Norm of a 1D Array')
        model.set_inputs('ndarray', 'Array to be normed', shape=[None])
        model.set_outputs('number', 'Norm of the array')

        # Submit the model
        self.dl.publish_servable(model)

    def test_describe_model(self):
        # Find the 1d_norm function from the test user (should be there)
        description = self.dl.describe_servable('dlhub.test_gmail/1d_norm')
        self.assertEqual('dlhub.test_gmail', description['dlhub']['owner'])
        self.assertEqual('1d_norm', description['dlhub']['name'])

        # Give it a bogus name, check the error
        with self.assertRaises(AttributeError) as exc:
            self.dl.describe_servable('dlhub.test_gmail/nonexistant')
        self.assertIn('No such servable', str(exc.exception))

        # Get only the method details
        expected = dict(description['servable']['methods'])
        del expected['run']['method_details']
        methods = self.dl.describe_methods('dlhub.test_gmail/1d_norm')
        self.assertEqual(expected, methods)

        method = self.dl.describe_methods('dlhub.test_gmail/1d_norm', 'run')
        self.assertEqual(expected['run'], method)

        with self.assertRaises(ValueError) as exc:
            self.dl.describe_methods('dlhub.test_gmail/1d_norm', 'notamethod')
        self.assertIn('No such method', str(exc.exception))

    def test_search_by_servable(self):
        with self.assertRaises(ValueError) as exc:
            self.dl.search_by_servable()
        self.assertTrue(str(exc.exception).startswith("One of"))

        # Search for all models owned by "dlhub.test_gmail"
        res = self.dl.search_by_servable(owner="dlhub.test_gmail",
                                         only_latest=False)
        self.assertIsInstance(res, list)
        self.assertGreater(len(res), 1)

        # TODO: This test will break if we ever delete models after unit tests
        # Get only those that are named 1d_norm
        res = self.dl.search_by_servable(owner="dlhub.test_gmail",
                                         servable_name="1d_norm",
                                         only_latest=False)
        self.assertEqual({'1d_norm'}, set(x['dlhub']['name'] for x in res))
        # TODO: Converting to int is a hack to deal with strings in Search
        most_recent = max(int(x['dlhub']['publication_date']) for x in res)

        # Get only the latest one
        res = self.dl.search_by_servable(owner="dlhub.test_gmail",
                                         servable_name="1d_norm",
                                         only_latest=True)
        self.assertEqual(1, len(res))
        self.assertEqual(most_recent, int(res[0]['dlhub']['publication_date']))

        # Specify a version
        res = self.dl.search_by_servable(owner="dlhub.test_gmail",
                                         servable_name="1d_norm",
                                         version=most_recent)
        self.assertEqual(1, len(res))
        self.assertEqual(most_recent, int(res[0]['dlhub']['publication_date']))

        # Get the latest one, and return search information
        res, info = self.dl.search_by_servable(owner="dlhub.test_gmail",
                                               servable_name="1d_norm",
                                               only_latest=False,
                                               get_info=True)
        self.assertGreater(len(res), 0)
        self.assertIsInstance(info, dict)
        self.assertIn('dlhub', res[0])

    def test_query_authors(self):
        # Make sure we get at least one author
        res = self.dl.search_by_authors('Cherukara')
        self.assertGreater(len(res), 0)

        # Search with firstname and last name
        res = self.dl.search_by_authors('Cherukara, Mathew')
        self.assertGreater(len(res), 0)

        # Test with the middle initial
        res = self.dl.search_by_authors(['Cherukara, Mathew J'])
        self.assertGreater(len(res), 0)

        # Test searching with multiple authors, allow partial matches
        res = self.dl.search_by_authors(
            ['Cherukara, Mathew J', 'Not, Aperson'], match_all=False)
        self.assertGreater(len(res), 0)

        # Test with authors from the paper, and require all
        res = self.dl.search_by_authors(
            ['Cherukara, Mathew J', 'Not, Aperson'], match_all=True)
        self.assertEqual(len(res), 0)

        # Advanced query to do both search by author and something else
        res = self.dl.query.match_doi("10.1038/s41598-018-34525-1")\
            .match_authors('Not, Aperson').search()
        self.assertEqual(0, len(res))

        # Make sure that passing no authors is a no-op function
        res = self.dl.query.match_doi("10.1038/s41598-018-34525-1")\
            .match_authors([]).search()
        self.assertGreater(len(res), 0)

    def test_query_by_paper(self):
        res = self.dl.search_by_related_doi("10.1038/s41598-018-34525-1")
        self.assertGreater(len(res), 0)

    def test_query_domains(self):
        # Must match at last the Cherukara model
        res = self.dl.query.match_domains('materials science').search()
        self.assertGreater(len(res), 0)
        res = self.dl.query.match_domains(['materials science']).search()
        self.assertGreater(len(res), 0)

        # Match all means this will return nothing
        res = self.dl.query.match_domains(
            ['materials science', 'not a domain']).search()
        self.assertEqual(len(res), 0)

        # Not matching all should find something
        res = self.dl.query.match_domains(
            ['materials science', 'not a domain'], match_all=False).search()
        self.assertGreater(len(res), 0)

    def test_basic_search(self):
        # Should at least hit the Cherukara model
        res = self.dl.search('"coherent"')
        self.assertGreater(len(res), 0)

        res = self.dl.search(
            'servable.type:"Keras Model" AND '
            'dlhub.domains:"materials science"',
            advanced=True)
        self.assertGreater(len(res), 0)

        # Test another query from the documentation
        res = self.dl.query.match_term('servable.type', '"Keras Model"')\
            .match_domains('chemistry').search()
        self.assertIsInstance(res, list)

    @skipUnless(is_travis,
                'Namespace test is only valid with credentials used on Travis')
    def test_namespace(self):
        self.assertEqual(self.dl.get_username(), 'dlhub.test_gmail')

    @skipUnless(is_travis, 'Status')
    def test_status(self):
        future = self.dl.run('zhuozhao_uchicago/noop',
                             'test',
                             asynchronous=True)
        # Need spec for Fx status returns
        self.assertIsInstance(self.dl.get_task_status(future.task_id), dict)