Variables | |
file = Path(__file__).resolve() | |
parent | |
root | |
str | dir_path = "../datasets/tables/megallen/amazon-google-structured" |
str | path_tableA = "/".join([dir_path, "table_a.csv"]) |
str | path_tableB = "/".join([dir_path, "table_b.csv"]) |
str | path_gold = "/".join([dir_path, "gold.csv"]) |
gold_graph = nx.Graph() | |
tableA = read_csv_table(path_tableA) | |
tableB = read_csv_table(path_tableB) | |
gold = read_csv_golds(path_gold, gold_graph) | |
list | numeric_attr = ["price", "year"] |
schemas = list(tableA)[1:] | |
str test_feature.dir_path = "../datasets/tables/megallen/amazon-google-structured" |
test_feature.file = Path(__file__).resolve() |
test_feature.gold = read_csv_golds(path_gold, gold_graph) |
test_feature.gold_graph = nx.Graph() |
list test_feature.numeric_attr = ["price", "year"] |
test_feature.parent |
str test_feature.path_gold = "/".join([dir_path, "gold.csv"]) |
str test_feature.path_tableA = "/".join([dir_path, "table_a.csv"]) |
str test_feature.path_tableB = "/".join([dir_path, "table_b.csv"]) |
test_feature.root |
list test_feature.schemas = list(tableA)[1:] |
test_feature.tableA = read_csv_table(path_tableA) |
test_feature.tableB = read_csv_table(path_tableB) |