Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(3) | Derive(0) | Import(0)
src/s/o/social_media_brand_disambiguator-HEAD/test_tweet_annotator.py social_media_brand_disambiguator(Download)
def setUp(self): self.annotations_table = "annotations_apple" sql_convenience.create_tables(config.db_conn, self.annotations_table, "table_not_needed_here", force_drop_table=True) def test_add_1_annotated_row(self):
src/s/o/social_media_brand_disambiguator-HEAD/ner_apis/opencalais/test_opencalais_ner.py social_media_brand_disambiguator(Download)
def setUp(self): self.source_table = "annotations_apple" self.destination_table = "api_apple" sql_convenience.create_tables(config.db_conn, self.source_table, self.destination_table, force_drop_table=True) self.api = opencalais_ner.OpenCalaisNER(self.source_table, self.destination_table)
src/s/o/social_media_brand_disambiguator-HEAD/ner_apis/test_ner_api_caller.py social_media_brand_disambiguator(Download)
def setUp(self): self.source_table = "annotations_apple" self.destination_table = "api_apple" sql_convenience.create_tables(config.db_conn, self.source_table, self.destination_table, force_drop_table=True) self.ner_api = ner_api_caller.NERAPICaller(self.source_table, self.destination_table)