ScHh0625 commited on
Commit
1dcfabf
1 Parent(s): 507298f

Upload 6 files

Browse files
Files changed (6) hide show
  1. relHeter.py +98 -0
  2. tableA.csv +534 -0
  3. tableB.csv +332 -0
  4. test.csv +189 -0
  5. train.csv +567 -0
  6. valid.csv +190 -0
relHeter.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import datasets
3
+ import pandas as pd
4
+
5
+
6
+ class relHeterConfig(datasets.BuilderConfig):
7
+ def __init__(self, features, data_url, **kwargs):
8
+ super(relHeterConfigConfig, self).__init__(**kwargs)
9
+ self.features = features
10
+ self.data_url = data_url
11
+
12
+
13
+ class relHeterConfig(datasets.GeneratorBasedBuilder):
14
+ BUILDER_CONFIGS = [
15
+ relHeterConfig(
16
+ name="pairs",
17
+ features={
18
+ "ltable_id": datasets.Value("string"),
19
+ "rtable_id": datasets.Value("string"),
20
+ "label": datasets.Value("string"),
21
+ },
22
+ data_url="https://huggingface.co/datasets/matchbench/rel-heter/resolve/main/",
23
+ ),
24
+ relHeterConfig(
25
+ name="source",
26
+ features={
27
+ "id": datasets.Value("string"),
28
+ "title": datasets.Value("string"),
29
+ "address": datasets.Value("string"),
30
+ "phone": datasets.Value("string"),
31
+ "category": datasets.Value("string"),
32
+ },
33
+ data_url="https://huggingface.co/datasets/matchbench/rel-heter/resolve/main/tableA.csv",
34
+ ),
35
+ relHeterConfig(
36
+ name="target",
37
+ features={
38
+ "id": datasets.Value("string"),
39
+ "add": datasets.Value("string"),
40
+ "city": datasets.Value("string"),
41
+ "phone": datasets.Value("string"),
42
+ "type": datasets.Value("string"),
43
+ "class": datasets.Value("string"),
44
+ },
45
+ data_url="https://huggingface.co/datasets/matchbench/rel-heter/resolve/main/tableB.csv",
46
+ ),
47
+ ]
48
+
49
+ def _info(self):
50
+ return datasets.DatasetInfo(
51
+ features=datasets.Features(self.config.features)
52
+ )
53
+
54
+ def _split_generators(self, dl_manager):
55
+ if self.config.name == "pairs":
56
+ return [
57
+ datasets.SplitGenerator(
58
+ name=split,
59
+ gen_kwargs={
60
+ "path_file": dl_manager.download_and_extract(
61
+ os.path.join(self.config.data_url, f"{split}.csv")),
62
+ "split": split,
63
+ }
64
+ )
65
+ for split in ["train", "valid", "test"]
66
+ ]
67
+ if self.config.name == "source":
68
+ return [datasets.SplitGenerator(name="source", gen_kwargs={
69
+ "path_file": dl_manager.download_and_extract(self.config.data_url), "split": "source", })]
70
+ if self.config.name == "target":
71
+ return [datasets.SplitGenerator(name="target", gen_kwargs={
72
+ "path_file": dl_manager.download_and_extract(self.config.data_url), "split": "target", })]
73
+
74
+ def _generate_examples(self, path_file, split):
75
+ file = pd.read_csv(path_file)
76
+ for i, row in file.iterrows():
77
+ if split not in ['source', 'target']:
78
+ yield i, {
79
+ "ltable_id": row["ltable_id"],
80
+ "rtable_id": row["rtable_id"],
81
+ "label": row["label"],
82
+ }
83
+ elif split in ['source']:
84
+ yield i, {
85
+ "id": row["id"],
86
+ "title": row["title"],
87
+ "address": row["address"],
88
+ "phone": row["phone"],
89
+ "category": row["category"]},
90
+ else:
91
+ yield i, {
92
+ "id": row["id"],
93
+ "addr": row["addr"],
94
+ "city": row["city"],
95
+ "phone": row["phone"],
96
+ "type": row["type"],
97
+ "class": row["class"],
98
+ }
tableA.csv ADDED
@@ -0,0 +1,534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,title,address,phone,category
2
+ 0,arnie morton \ s of chicago,435 s. la cienega blv . los angeles,310/246 -1501,american 0
3
+ 1,art \ s delicatessen,12224 ventura blvd. studio city,818/762 -1221,american 1
4
+ 2,hotel bel-air,701 stone canyon rd. bel air,310/472 -1211,californian 2
5
+ 3,cafe bizou,14016 ventura blvd. sherman oaks,818/788 -3536,french 3
6
+ 4,campanile,624 s. la brea ave. los angeles,213/938 -1447,american 4
7
+ 5,chinois on main,2709 main st. santa monica,310/392 -9025,french 5
8
+ 6,citrus,6703 melrose ave. los angeles,213/857 -0034,californian 6
9
+ 7,fenix,8358 sunset blvd. west hollywood,213/848 -6677,american 7
10
+ 8,granita,23725 w. malibu rd. malibu,310/456 -0488,californian 8
11
+ 9,grill on the alley,9560 dayton way los angeles,310/276 -0615,american 9
12
+ 10,restaurant katsu,1972 n. hillhurst ave. los angeles,213/665 -1891,asian 10
13
+ 11,l \ orangerie,903 n. la cienega blvd. los angeles,310/652 -9770,french 11
14
+ 12,le chardonnay,8284 melrose ave. los angeles,213/655 -8880,french 12
15
+ 13,locanda veneta,3rd st. los angeles,310/274 -1893,italian 13
16
+ 14,matsuhisa,129 n. la cienega blvd. beverly hills,310/659 -9639,asian 14
17
+ 15,the palm,9001 santa monica blvd. los angeles,310/550 -8811,american 15
18
+ 16,patina,5955 melrose ave. los angeles,213/467 -1108,californian 16
19
+ 17,philippe \ s the original,1001 n. alameda st. los angeles,213/628 -3781,american 17
20
+ 18,pinot bistro,12969 ventura blvd. los angeles,818/990 -0500,french 18
21
+ 19,rex il ristorante,617 s. olive st. los angeles,213/627 -2300,italian 19
22
+ 20,spago,1114 horn ave. los angeles,310/652 -4025,californian 20
23
+ 21,valentino,3115 pico blvd. santa monica,310/829 -4313,italian 21
24
+ 22,yujean kang \ s gourmet chinese cuisine,67 n. raymond ave. los angeles,818/585 -0855,asian 22
25
+ 23,21 club,21 w. 52nd st. new york,212/582 -7200,american 23
26
+ 24,aquavit,13 w. 54th st. new york,212/307 -7311,continental 24
27
+ 25,aureole,34 e. 61st st. new york,' 212 / 319-1660 ',american 25
28
+ 26,cafe lalo,201 w. 83rd st. new york,212/496 -6031,` coffee bar ' 26
29
+ 27,cafe des artistes,1 w. 67th st. new york,212/877 -3500,continental 27
30
+ 28,carmine \ s,2450 broadway between 90th and 91st sts . new york,212/362 -2200,italian 28
31
+ 29,carnegie deli,854 7th ave. between 54th and 55th sts . new york,212/757 -2245,delicatessen 29
32
+ 30,chanterelle,2 harrison st. near hudson st. new york,212/966 -6960,american 30
33
+ 31,daniel,20 e. 76th st. new york,212/288 -0033,french 31
34
+ 32,dawat,210 e. 58th st. new york,212/355 -7555,asian 32
35
+ 33,felidia,243 e. 58th st. new york,212/758 -1479,italian 33
36
+ 34,four seasons grill room,99 e. 52nd st. new york,212/754 -9494,american 34
37
+ 35,gotham bar & grill,12 e. 12th st. new york,212/620 -4020,american 35
38
+ 36,gramercy tavern,42 e. 20th st. between park ave. s and broadway new york,212/477 -0777,american 36
39
+ 37,island spice,402 w. 44th st. new york,212/765 -1737,` tel caribbean ' 37
40
+ 38,jo jo,160 e. 64th st. new york,212/223 -5656,american 38
41
+ 39,la caravelle,33 w. 55th st. new york,212/586 -4252,french 39
42
+ 40,la cote basque,60 w. 55th st. between 5th and 6th ave. new york,212/688 -6525,french 40
43
+ 41,le bernardin,155 w. 51st st. new york,212/489 -1515,french 41
44
+ 42,les celebrites,160 central park s new york,212/484 -5113,french 42
45
+ 43,lespinasse,2 e. 55th st. new york,212/339 -6719,american 43
46
+ 44,lutece,249 e. 50th st. new york,212/752 -2225,french 44
47
+ 45,manhattan ocean club,57 w. 58th st. new york,' 212 / 371-7777 ',seafood 45
48
+ 46,march,405 e. 58th st. new york,212/754 -6272,american 46
49
+ 47,mesa grill,102 5th ave. between 15th and 16th sts . new york,212/807 -7400,american 47
50
+ 48,mi cocina,57 jane st. off hudson st. new york,212/627 -8273,mexican 48
51
+ 49,montrachet,239 w. broadway between walker and white sts . new york,' 212 / 219-2777 ',french 49
52
+ 50,oceana,55 e. 54th st. new york,212/759 -5941,seafood 50
53
+ 51,park avenue cafe,100 e. 63rd st. new york,212/644 -1900,american 51
54
+ 52,petrossian,182 w. 58th st. new york,212/245 -2214,french 52
55
+ 53,picholine,35 w. 64th st. new york,212/724 -8585,mediterranean 53
56
+ 54,pisces,95 ave. a at 6th st. new york,212/260 -6660,seafood 54
57
+ 55,rainbow room,30 rockefeller plaza new york,212/632 -5000,` or 212/632 -5100 american ' 55
58
+ 56,river cafe,1 water st. at the east river brooklyn,718/522 -5200,american 56
59
+ 57,san domenico,240 central park s new york,212/265 -5959,italian 57
60
+ 58,second avenue deli,156 2nd ave. at 10th st. new york,212/677 -0606,delicatessen 58
61
+ 59,seryna,11 e. 53rd st. new york,212/980 -9393,asian 59
62
+ 60,shun lee west,43 w. 65th st. new york,212/371 -8844,asian 60
63
+ 61,sign of the dove,1110 3rd ave. at 65th st. new york,212/861 -8080,american 61
64
+ 62,smith & wollensky,201 e. 49th st. new york,212/753 -1530,american 62
65
+ 63,tavern on the green,in central park at 67th st. new york,212/873 -3200,american 63
66
+ 64,uncle nick \ s,747 9th ave. between 50th and 51st sts . new york,212/315 -1726,mediterranean 64
67
+ 65,union square cafe,21 e. 16th st. new york,212/243 -4020,american 65
68
+ 66,virgil \ s,152 w. 44th st. new york,' 212 / 921-9494 ',american 66
69
+ 67,chin \ s,3200 las vegas blvd. s las vegas,702/733 -8899,asian 67
70
+ 68,coyote cafe,3799 las vegas blvd. s las vegas,702/891 -7349,southwestern 68
71
+ 69,le montrachet,3000 w. paradise rd. las vegas,702/732 -5111,continental 69
72
+ 70,palace court,3570 las vegas blvd. s las vegas,702/731 -7547,continental 70
73
+ 71,second street grille,200 e. fremont st. las vegas,702/385 -3232,seafood 71
74
+ 72,steak house,2880 las vegas blvd. s las vegas,702/734 -0410,` steak houses ' 72
75
+ 73,tillerman,2245 e. flamingo rd. las vegas,702/731 -4036,seafood 73
76
+ 74,abruzzi,2355 peachtree rd. . peachtree battle shopping center atlanta,404/261 -8186,italian 74
77
+ 75,bacchanalia,3125 piedmont rd. . near peachtree rd. atlanta,404/365 -0410,international 75
78
+ 76,bone \ s,3130 piedmont road atlanta,404/237 -2663,american 76
79
+ 77,brasserie le coze,3393 peachtree rd. . lenox square mall near neiman marcus atlanta,404/266 -1440,french 77
80
+ 78,buckhead diner,3073 piedmont road atlanta,404/262 -3336,american 78
81
+ 79,ciboulette,1529 piedmont ave. atlanta,404/874 -7600,french 79
82
+ 80,delectables,1 margaret mitchell sq. atlanta,404/681 -2909,american 80
83
+ 81,georgia grille,2290 peachtree rd. . peachtree square shopping center atlanta,404/352 -3517,american 81
84
+ 82,hedgerose heights inn,490 e. paces ferry rd. atlanta,404/233 -7673,international 82
85
+ 83,heera of india,595 piedmont ave. rio shopping mall atlanta,404/876 -4408,asian 83
86
+ 84,indigo coastal grill,1397 n. highland ave. atlanta,404/876 -0676,caribbean 84
87
+ 85,la grotta,2637 peachtree rd. . peachtree house condominium atlanta,404/231 -1368,italian 85
88
+ 86,mary mac \ s tea room,224 ponce de leon ave. atlanta,404/876 -1800,southern 86
89
+ 87,nikolai \ s roof,255 courtland st. at harris st. atlanta,404/221 -6362,continental 87
90
+ 88,pano \ s and paul \ s,1232 w. paces ferry rd. atlanta,404/261 -3662,international 88
91
+ 89,cafe ritz-carlton buckhead,3434 peachtree rd. atlanta,404/237 -2700,` ext 6108 international ' 89
92
+ 90,dining room ritz-carlton buckhead,3434 peachtree rd. atlanta,404/237 -2700,international 90
93
+ 91,restaurant ritz-carlton atlanta,181 peachtree st. atlanta,404/659 -0400,continental 91
94
+ 92,toulouse,b peachtree rd. atlanta,404/351 -9533,french 92
95
+ 93,veni vidi vici,41 14th st. atlanta,404/875 -8424,italian 93
96
+ 94,alain rondelli,126 clement st. san francisco,415/387 -0408,french 94
97
+ 95,aqua,252 california st. san francisco,415/956 -9662,seafood 95
98
+ 96,boulevard,1 mission st. san francisco,415/543 -6084,american 96
99
+ 97,cafe claude,7 claude la . san francisco,415/392 -3505,french 97
100
+ 98,campton place,340 stockton st. san francisco,415/955 -5555,american 98
101
+ 99,chez michel,804 northpoint san francisco,415/775 -7036,french 99
102
+ 100,fleur de lys,777 sutter st. san francisco,415/673 -7779,french 100
103
+ 101,fringale,570 4th st. san francisco,415/543 -0573,french 101
104
+ 102,hawthorne lane,22 hawthorne st. san francisco,415/777 -9779,american 102
105
+ 103,khan toke thai house,5937 geary blvd. san francisco,415/668 -6654,asian 103
106
+ 104,la folie,2316 polk st. san francisco,415/776 -5577,french 104
107
+ 105,lulu,816 folsom st. san francisco,415/495 -5775,mediterranean 105
108
+ 106,masa \ s,648 bush st. san francisco,415/989 -7154,french 106
109
+ 107,mifune japan center kintetsu building,1737 post st. san francisco,415/922 -0337,asian 107
110
+ 108,plumpjack cafe,3201 fillmore st. san francisco,415/563 -4755,mediterranean 108
111
+ 109,postrio,545 post st. san francisco,415/776 -7825,american 109
112
+ 110,ritz-carlton restaurant and dining room,600 stockton st. san francisco,415/296 -7465,american 110
113
+ 111,rose pistola,532 columbus ave. san francisco,415/399 -0499,italian 111
114
+ 112,bolo,23 e. 22nd st. new york,212/228 -2200,mediterranean 191
115
+ 113,il nido,251 e. 53rd st. new york,212/753 -8450,italian 267
116
+ 114,remi,145 w. 53rd st. new york,212/581 -4242,italian 334
117
+ 115,adriano \ s ristorante,2930 beverly glen circle los angeles,310/475 -9807,italian 112
118
+ 116,barney greengrass,9570 wilshire blvd. beverly hills,310/777 -5877,american 113
119
+ 117,beaurivage,26025 pacific coast hwy . malibu,310/456 -5733,french 114
120
+ 118,bistro garden,176 n. canon dr. los angeles,310/550 -3900,californian 115
121
+ 119,border grill,4th st. los angeles,310/451 -1655,mexican 116
122
+ 120,broadway deli,3rd st. promenade santa monica,310/451 -0616,american 117
123
+ 121,ca \ brea,346 s. la brea ave. los angeles,213/938 -2863,italian 118
124
+ 122,ca \ del sol,4100 cahuenga blvd. los angeles,818/985 -4669,italian 119
125
+ 123,cafe pinot,700 w. fifth st. los angeles,213/239 -6500,californian 120
126
+ 124,california pizza kitchen,207 s. beverly dr. los angeles,310/275 -1101,californian 121
127
+ 125,canter \ s,419 n. fairfax ave. los angeles,213/651 -2030 .,american 122
128
+ 126,cava,3rd st. los angeles,213/658 -8898,mediterranean 123
129
+ 127,cha cha cha,656 n. virgil ave. los angeles,213/664 -7723,caribbean 124
130
+ 128,chan dara,310 n. larchmont blvd. los angeles,213/467 -1052,asian 125
131
+ 129,clearwater cafe,168 w. colorado blvd. los angeles,818/356 -0959,` health food ' 126
132
+ 130,dining room,9500 wilshire blvd. los angeles,310/275 -5200,californian 127
133
+ 131,dive !,10250 santa monica blvd. los angeles,310/788 -,` dive american ' 128
134
+ 132,drago,2628 wilshire blvd. santa monica,310/828 -1585,italian 129
135
+ 133,drai \ s,730 n. la cienega blvd. los angeles,310/358 -8585,french 130
136
+ 134,dynasty room,930 hilgard ave. los angeles,310/208 -8765,continental 131
137
+ 135,eclipse,8800 melrose ave. los angeles,310/724 -5959,californian 132
138
+ 136,ed debevic \ s,134 n. la cienega los angeles,310/659 -1952,american 133
139
+ 137,el cholo,1121 s. western ave. los angeles,213/734 -2773,mexican 134
140
+ 138,gilliland \ s,2424 main st. santa monica,310/392 -3901,american 135
141
+ 139,gladstone \ s,4 fish 17300 pacific coast hwy . at sunset blvd. pacific palisades,310/454 -3474,american 136
142
+ 140,hard rock cafe,8600 beverly blvd. los angeles,310/276 -7605,american 137
143
+ 141,harry \ s bar & american grill,2020 ave. of the stars los angeles,310/277 -2333,italian 138
144
+ 142,il fornaio cucina italiana,301 n. beverly dr. los angeles,310/550 -8330,italian 139
145
+ 143,jack sprat \ s grill,10668 w. pico blvd. los angeles,310/837 -6662,` health food ' 140
146
+ 144,jackson \ s farm,439 n. beverly drive los angeles,310/273 -5578,californian 141
147
+ 145,jimmy \ s,201 moreno dr. los angeles,310/552 -2394,continental 142
148
+ 146,joss,9255 sunset blvd. los angeles,310/276 -1886,asian 143
149
+ 147,le colonial,8783 beverly blvd. los angeles,310/289 -0660,asian 144
150
+ 148,le dome,8720 sunset blvd. los angeles,310/659 -6919,french 145
151
+ 149,louise \ s trattoria,4500 los feliz blvd. los angeles,213/667 -0777,italian 146
152
+ 150,mon kee seafood restaurant,679 n. spring st. los angeles,213/628 -6717,asian 147
153
+ 151,morton \ s,8764 melrose ave. los angeles,310/276 -5205,american 148
154
+ 152,nate \ n \ al \ s,414 n. beverly dr. los angeles,310/274 -0101,american 149
155
+ 153,nicola,601 s. figueroa st. los angeles,213/485 -0927,american 150
156
+ 154,ocean avenue,1401 ocean ave. santa monica,310/394 -5669,american 151
157
+ 155,orleans,11705 national blvd. los angeles,310/479 -4187,cajun 152
158
+ 156,pacific dining car,6th st. los angeles,213/483 -6000,american 153
159
+ 157,paty \ s,10001 riverside dr. toluca lake,818/761 -9126,american 154
160
+ 158,pinot hollywood,1448 n. gower st. los angeles,213/461 -8800,californian 155
161
+ 159,posto,14928 ventura blvd. sherman oaks,818/784 -4400,italian 156
162
+ 160,prego,362 n. camden dr. los angeles,310/277 -7346,italian 157
163
+ 161,rj \ s the rib joint,252 n. beverly dr. los angeles,310/274 -7427,american 158
164
+ 162,remi,3rd st. promenade santa monica,310/393 -6545,italian 159
165
+ 163,restaurant horikawa,111 s. san pedro st. los angeles,213/680 -9355,asian 160
166
+ 164,roscoe \ s house of chicken \ n \ waffles,1514 n. gower st. los angeles,213/466 -9329,american 161
167
+ 165,schatzi on main,3110 main st. los angeles,310/399 -4800,continental 162
168
+ 166,sofi,3rd st. los angeles,213/651 -0346,mediterranean 163
169
+ 167,swingers,8020 beverly blvd. los angeles,213/653 -5858,american 164
170
+ 168,tavola calda,7371 melrose ave. los angeles,213/658 -6340,italian 165
171
+ 169,the mandarin,430 n. camden dr. los angeles,310/859 -0926,asian 166
172
+ 170,tommy tang \ s,7313 melrose ave. los angeles,213/937 -5733,asian 167
173
+ 171,tra di noi,3835 cross creek rd. los angeles,310/456 -0169,italian 168
174
+ 172,trader vic \ s,9876 wilshire blvd. los angeles,310/276 -6345,asian 169
175
+ 173,vida,1930 north hillhurst ave. los feliz,213/660 -4446,american 170
176
+ 174,west beach cafe,60 n. venice blvd. los angeles,310/823 -5396,american 171
177
+ 175,20 mott,20 mott st. between bowery and pell st. new york,212/964 -0380,asian 172
178
+ 176,9 jones street,9 jones st. new york,212/989 -1220,american 173
179
+ 177,adrienne,700 5th ave. at 55th st. new york,212/903 -3918,french 174
180
+ 178,agrotikon,322 e. 14 st. between 1st and 2nd aves . new york,212/473 -2602,mediterranean 175
181
+ 179,aja,937 broadway at 22nd st. new york,212/473 -8388,american 176
182
+ 180,alamo,304 e. 48th st. new york,' 212 / 759-0590 ',mexican 177
183
+ 181,alley \ s end,311 w. 17th st. new york,212/627 -8899,american 178
184
+ 182,ambassador grill,1 united nations plaza at 44th st. new york,212/702 -5014,american 179
185
+ 183,american place,2 park ave. at 32nd st. new york,212/684 -2122,american 180
186
+ 184,anche vivolo,222 e. 58th st. between 2nd and 3rd aves . new york,212/308 -0112,italian 181
187
+ 185,arizona,206 206 e. 60th st. new york,212/838 -0440,american 182
188
+ 186,arturo \ s,106 w. houston st. off thompson st. new york,212/677 -3820,italian 183
189
+ 187,au mandarin,200-250 vesey st. world financial center new york,212/385 -0313,asian 184
190
+ 188,bar anise,1022 3rd ave. between 60th and 61st sts . new york,212/355 -1112,mediterranean 185
191
+ 189,barbetta,321 w. 46th st. new york,212/246 -9171,italian 186
192
+ 190,ben benson \ s,123 w. 52nd st. new york,212/581 -8888,american 187
193
+ 191,big cup,228 8th ave. between 21st and 22nd sts . new york,212/206 -0059,` coffee bar ' 188
194
+ 192,billy \ s,948 1st ave. between 52nd and 53rd sts . new york,212/753 -1870,american 189
195
+ 193,boca chica,13 1st ave. near 1st st. new york,212/473 -0108,` latin american ' 190
196
+ 194,boonthai,1393a 2nd ave. between 72nd and 73rd sts . new york,212/249 -8484,asian 192
197
+ 195,bouterin,420 e. 59th st. off 1st ave. new york,212/758 -0323,french 193
198
+ 196,brothers bar-b-q,225 varick st. at clarkston st. new york,212/727 -2775,american 194
199
+ 197,bruno,240 e. 58th st. new york,212/688 -4190,italian 195
200
+ 198,bryant park grill roof restaurant and bp cafe,25 w. 40th st. between 5th and 6th aves . new york,212/840 -6500,american 196
201
+ 199,c3,103 waverly pl . near washington sq. new york,212/254 -1200,american 197
202
+ 200,ct,111 e. 22nd st. between park ave. s and lexington ave. new york,212/995 -8500,french 198
203
+ 201,cafe bianco,1486 2nd ave. between 77th and 78th sts . new york,212/988 -2655,` coffee bar ' 199
204
+ 202,cafe botanica,160 central park s new york,212/484 -5120,french 200
205
+ 203,cafe la fortuna,69 w. 71st st. new york,212/724 -5846,` coffee bar ' 201
206
+ 204,cafe luxembourg,200 w. 70th st. new york,212/873 -7411,french 202
207
+ 205,cafe pierre,2 e. 61st st. new york,212/940 -8185,french 203
208
+ 206,cafe centro,200 park ave. between 45th st. and vanderbilt ave. new york,212/818 -1222,french 204
209
+ 207,cafe fes,246 w. 4th st. at charles st. new york,212/924 -7653,mediterranean 205
210
+ 208,caffe dante,81 macdougal st. between houston and bleeker sts . new york,212/982 -5275,` coffee bar ' 206
211
+ 209,caffe dell \ artista,46 greenwich ave. new york,212/645 -4431,` coffee bar ' 207
212
+ 210,caffe lure,169 sullivan st. between houston and bleecker sts . new york,212/473 -2642,french 208
213
+ 211,caffe reggio,119 macdougal st. between 3rd and bleecker sts . new york,212/475 -9557,` coffee bar ' 209
214
+ 212,caffe roma,385 broome st. at mulberry new york,212/226 -8413,` coffee bar ' 210
215
+ 213,caffe vivaldi,32 jones st. at bleecker st. new york,212/691 -7538,` coffee bar ' 211
216
+ 214,caffe bondi ristorante,7 w. 20th st. new york,212/691 -8136,italian 212
217
+ 215,capsouto freres,451 washington st. near watts st. new york,212/966 -4900,french 213
218
+ 216,captain \ s table,860 2nd ave. at 46th st. new york,212/697 -9538,seafood 214
219
+ 217,casa la femme,150 wooster st. between houston and prince sts . new york,212/505 -0005,` middle eastern ' 215
220
+ 218,cendrillon asian grill & marimba bar,45 mercer st. between broome and grand sts . new york,212/343 -9012,asian 216
221
+ 219,chez jacqueline,72 macdougal st. between w. houston and bleecker sts . new york,212/505 -0727,french 217
222
+ 220,chiam,160 e. 48th st. new york,212/371 -2323,asian 218
223
+ 221,china grill,60 w. 53rd st. new york,212/333 -7788,american 219
224
+ 222,cite,120 w. 51st st. new york,212/956 -7100,french 220
225
+ 223,coco pazzo,23 e. 74th st. new york,212/794 -0205,italian 221
226
+ 224,columbus bakery,53rd sts . new york,212/421 -0334,` coffee bar ' 222
227
+ 225,corrado cafe,1013 3rd ave. between 60th and 61st sts . new york,212/753 -5100,` coffee bar ' 223
228
+ 226,cupcake cafe,522 9th ave. at 39th st. new york,212/465 -1530,` coffee bar ' 224
229
+ 227,da nico,164 mulberry st. between grand and broome sts . new york,212/343 -1212,italian 225
230
+ 228,dean & deluca,121 prince st. new york,212/254 -8776,` coffee bar ' 226
231
+ 229,diva,341 w. broadway near grand st. new york,212/941 -9024,italian 227
232
+ 230,dix et sept,181 w. 10th st. new york,212/645 -8023,french 228
233
+ 231,docks,633 3rd ave. at 40th st. new york,' 212 / 986-8080 ',seafood 229
234
+ 232,duane park cafe,157 duane st. between w. broadway and hudson st. new york,212/732 -5555,american 230
235
+ 233,el teddy \ s,219 w. broadway between franklin and white sts . new york,212/941 -7070,mexican 231
236
+ 234,em ily \ s,1325 5th ave. at 111th st. new york,212/996 -1212,american 232
237
+ 235,em pire korea,6 e. 32nd st. new york,212/725 -1333,asian 233
238
+ 236,ernie \ s,2150 broadway between 75th and 76th sts . new york,212/496 -1588,american 234
239
+ 237,evergreen cafe,1288 1st ave. at 69th st. new york,212/744 -3266,asian 235
240
+ 238,f. ille ponte ristorante,39 desbrosses st. near west st. new york,212/226 -4621,italian 236
241
+ 239,felix,340 w. broadway at grand st. new york,212/431 -0021,french 237
242
+ 240,ferrier,29 e. 65th st. new york,212/772 -9000,french 238
243
+ 241,fifty seven fifty seven,57 e. 57th st. new york,212/758 -5757,american 239
244
+ 242,film center cafe,635 9th ave. between 44th and 45th sts . new york,' 212 / 262-2525 ',american 240
245
+ 243,fiorello \ s roman cafe,1900 broadway between 63rd and 64th sts . new york,212/595 -5330,italian 241
246
+ 244,firehouse,522 columbus ave. between 85th and 86th sts . new york,212/595 -3139,american 242
247
+ 245,first,87 1st ave. between 5th and 6th sts . new york,212/674 -3823,american 243
248
+ 246,fishin eddie,73 w. 71st st. new york,212/874 -3474,seafood 244
249
+ 247,fleur de jour,348 e. 62nd st. new york,212/355 -2020,` coffee bar ' 245
250
+ 248,flowers,21 west 17th st. between 5th and 6th aves . new york,212/691 -8888,american 246
251
+ 249,follonico,6 w. 24th st. new york,212/691 -6359,italian 247
252
+ 250,fraunces tavern,54 pearl st. at broad st. new york,212/269 -0144,american 248
253
+ 251,french roast,458 6th ave. at 11th st. new york,212/533 -2233,french 249
254
+ 252,french roast cafe,2340 broadway at 85th st. new york,212/799 -1533,` coffee bar ' 250
255
+ 253,frico bar,402 w. 43rd st. off 9th ave. new york,212/564 -7272,italian 251
256
+ 254,fujiyama mama,467 columbus ave. between 82nd and 83rd sts . new york,212/769 -1144,asian 252
257
+ 255,gabriela \ s,685 amsterdam ave. at 93rd st. new york,212/961 -0574,mexican 253
258
+ 256,gallagher \ s,228 w. 52nd st. new york,212/245 -5336,american 254
259
+ 257,gianni \ s,15 fulton st. new york,212/608 -7300,seafood 255
260
+ 258,girafe,208 e. 58th st. between 2nd and 3rd aves . new york,212/752 -3054,italian 256
261
+ 259,global,33 93 2nd ave. between 5th and 6th sts . new york,212/477 -8427,american 257
262
+ 260,golden unicorn,18 e. broadway at catherine st. new york,' 212 / 941-0911 ',asian 258
263
+ 261,grand ticino,228 thompson st. between w. 3rd and bleecker sts . new york,212/777 -5922,italian 259
264
+ 262,halcyon,151 w. 54th st. in the rihga royal hotel new york,212/468 -8888,american 260
265
+ 263,hard rock cafe,221 w. 57th st. new york,212/489 -6565,american 261
266
+ 264,hi-life restaurant and lounge,1340 1st ave. at 72nd st. new york,212/249 -3600,american 262
267
+ 265,home,20 cornelia st. between bleecker and w. 4th st. new york,212/243 -9579,american 263
268
+ 266,hudson river club,4 world financial center new york,212/786 -1500,american 264
269
+ 267,i trulli,122 e. 27th st. between lexington and park aves . new york,212/481 -7372,italian 265
270
+ 268,il cortile,125 mulberry st. between canal and hester sts . new york,212/226 -6060,italian 266
271
+ 269,inca grill,492 broome st. near w. broadway new york,212/966 -3371,` latin american ' 268
272
+ 270,indochine,430 lafayette st. between 4th st. and astor pl . new york,212/505 -5111,asian 269
273
+ 271,internet cafe,82 e. 3rd st. between 1st and 2nd aves . new york,' 212 / 614-0747 ',` coffee bar ' 270
274
+ 272,ipanema,13 w. 46th st. new york,212/730 -5848,` latin american ' 271
275
+ 273,jean lafitte,68 w. 58th st. new york,212/751 -2323,french 272
276
+ 274,jewel of india,15 w. 44th st. new york,212/869 -5544,asian 273
277
+ 275,jimmy sung \ s,219 e. 44th st. between 2nd and 3rd aves . new york,212/682 -5678,asian 274
278
+ 276,joe allen,326 w. 46th st. new york,212/581 -6464,american 275
279
+ 277,judson grill,152 w. 52nd st. new york,212/582 -5252,american 276
280
+ 278,l \ absinthe,227 e. 67th st. new york,212/794 -4950,french 277
281
+ 279,l \ auberge,1191 1st ave. between 64th and 65th sts . new york,212/288 -8791,` middle eastern ' 278
282
+ 280,l \ auberge du midi,310 w. 4th st. between w. 12th and bank sts . new york,212/242 -4705,french 279
283
+ 281,l \ udo,432 lafayette st. near astor pl . new york,212/388 -0978,french 280
284
+ 282,la reserve,4 w. 49th st. new york,212/247 -2993,french 281
285
+ 283,lanza restaurant,168 1st ave. between 10th and 11th sts . new york,212/674 -7014,italian 282
286
+ 284,lattanzi ristorante,361 w. 46th st. new york,212/315 -0980,italian 283
287
+ 285,layla,211 w. broadway at franklin st. new york,212/431 -0700,` middle eastern ' 284
288
+ 286,le chantilly,106 e. 57th st. new york,212/751 -2931,french 285
289
+ 287,le colonial,149 e. 57th st. new york,' 212 / 752-0808 ',asian 286
290
+ 288,le gamin,50 macdougal st. between houston and prince sts . new york,212/254 -4678,` coffee bar ' 287
291
+ 289,le jardin,25 cleveland pl . near spring st. new york,212/343 -9599,french 288
292
+ 290,le madri,168 w. 18th st. new york,212/727 -8022,italian 289
293
+ 291,le marais,150 w. 46th st. new york,212/869 -0900,american 290
294
+ 292,le perigord,405 e. 52nd st. new york,212/755 -6244,french 291
295
+ 293,le select,507 columbus ave. between 84th and 85th sts . new york,212/875 -1993,american 292
296
+ 294,les halles,411 park ave. s between 28th and 29th sts . new york,212/679 -4111,french 293
297
+ 295,lincoln tavern,51 w. 64th st. new york,212/721 -8271,american 294
298
+ 296,lola,30 west 22nd st. between 5th and 6th ave. new york,212/675 -6700,american 295
299
+ 297,lucky strike,59 grand st. between wooster st. and w. broadway new york,212/941 -0479,` or 212/941 -0772 american ' 296
300
+ 298,mad fish,2182 broadway between 77th and 78th sts . new york,212/787 -0202,seafood 297
301
+ 299,main street,446 columbus ave. between 81st and 82nd sts . new york,212/873 -5025,american 298
302
+ 300,mangia e bevi,800 9th ave. at 53rd st. new york,212/956 -3976,italian 299
303
+ 301,manhattan cafe,1161 1st ave. between 63rd and 64th sts . new york,212/888 -6556,american 300
304
+ 302,manila garden,325 e. 14th st. between 1st and 2nd aves . new york,212/777 -6314,asian 301
305
+ 303,marichu,342 e. 46th st. between 1st and 2nd aves . new york,212/370 -1866,french 302
306
+ 304,marquet patisserie,15 e. 12th st. between 5th ave. and university pl . new york,212/229 -9313,` coffee bar ' 303
307
+ 305,match,160 mercer st. between houston and prince sts . new york,212/906 -9173,american 304
308
+ 306,matthew \ s,1030 3rd ave. at 61st st. new york,212/838 -4343,american 305
309
+ 307,mavalli palace,46 e. 29th st. new york,212/679 -5535,asian 306
310
+ 308,milan cafe and coffee bar,120 w. 23rd st. new york,212/807 -1801,` coffee bar ' 307
311
+ 309,monkey bar,60 e. 54th st. new york,212/838 -2600,american 308
312
+ 310,montien,1134 1st ave. between 62nd and 63rd sts . new york,212/421 -4433,asian 309
313
+ 311,morton \ s,551 5th ave. at 45th st. new york,212/972 -3315,american 310
314
+ 312,motown cafe,104 w. 57th st. near 6th ave. new york,212/581 -8030,american 311
315
+ 313,new york kom tang soot bul house,32 w. 32nd st. new york,' 212 / 947-8482 ',asian 312
316
+ 314,new york noodletown,28 1/2 bowery at bayard st. new york,212/349 -0923,asian 313
317
+ 315,newsbar,2 w. 19th st. new york,212/255 -3996,` coffee bar ' 314
318
+ 316,odeon,145 w. broadway at thomas st. new york,212/233 -0507,american 315
319
+ 317,orso,322 w. 46th st. new york,212/489 -7212,italian 316
320
+ 318,osteria al droge,142 w. 44th st. new york,212/944 -3643,italian 317
321
+ 319,otabe,68 e. 56th st. new york,212/223 -7575,asian 318
322
+ 320,pacifica,138 lafayette st. between canal and howard sts . new york,212/941 -4168,asian 319
323
+ 321,palio,151 w. 51st . st. new york,212/245 -4850,italian 320
324
+ 322,pamir,1065 1st ave. at 58th st. new york,212/644 -9258,` middle eastern ' 321
325
+ 323,parioli romanissimo,24 e. 81st st. new york,212/288 -2391,italian 322
326
+ 324,patria,250 park ave. s at 20th st. new york,212/777 -6211,` latin american ' 323
327
+ 325,peacock alley,301 park ave. between 49th and 50th sts . new york,212/872 -4895,french 324
328
+ 326,pen & pencil,205 e. 45th st. new york,212/682 -8660,american 325
329
+ 327,penang soho,109 spring st. between greene and mercer sts . new york,212/274 -8883,asian 326
330
+ 328,persepolis,1423 2nd ave. between 74th and 75th sts . new york,212/535 -1100,` middle eastern ' 327
331
+ 329,planet hollywood,140 w. 57th st. new york,212/333 -7827,american 328
332
+ 330,pomaire,371 w. 46th st. off 9th ave. new york,' 212 / 956-3055 ',` latin american ' 329
333
+ 331,popover cafe,551 amsterdam ave. between 86th and 87th sts . new york,212/595 -8555,american 330
334
+ 332,post house,28 e. 63rd st. new york,212/935 -2888,american 331
335
+ 333,rain,100 w. 82nd st. new york,212/501 -0776,asian 332
336
+ 334,red tulip,439 e. 75th st. new york,212/734 -4893,` eastern european ' 333
337
+ 335,republic,37a union sq. w between 16th and 17th sts . new york,212/627 -7172,asian 335
338
+ 336,roettelle a. g,126 e. 7th st. between 1st ave. and ave. a new york,212/674 -4140,continental 336
339
+ 337,rosa mexicano,1063 1st ave. at 58th st. new york,212/753 -7407,mexican 337
340
+ 338,ruth \ s chris,148 w. 51st st. new york,212/245 -9600,american 338
341
+ 339,s.p.q.r,133 mulberry st. between hester and grand sts . new york,212/925 -3120,italian 339
342
+ 340,sal anthony \ s,55 irving pl . new york,212/982 -9030,italian 340
343
+ 341,sammy \ s roumanian steak house,157 chrystie st. at delancey st. new york,212/673 -0330,` east european ' 341
344
+ 342,san pietro,18 e. 54th st. new york,212/753 -9015,italian 342
345
+ 343,sant ambroeus,1000 madison ave. between 77th and 78th sts . new york,212/570 -2211,` coffee bar ' 343
346
+ 344,sarabeth \ s kitchen,423 amsterdam ave. between 80th and 81st sts . new york,212/496 -6280,american 344
347
+ 345,sea grill,19 w. 49th st. new york,212/332 -7610,seafood 345
348
+ 346,serendipity,3 225 e. 60th st. new york,212/838 -3531,american 346
349
+ 347,seventh regiment mess and bar,643 park ave. at 66th st. new york,212/744 -4107,american 347
350
+ 348,sfuzzi,58 w. 65th st. new york,212/873 -3700,american 348
351
+ 349,shaan,57 w. 48th st. new york,' 212 / 977-8400 ',asian 349
352
+ 350,sofia fabulous pizza,1022 madison ave. near 79th st. new york,212/734 -2676,italian 350
353
+ 351,spring street natural restaurant & bar,62 spring st. at lafayette st. new york,212/966 -0290,american 351
354
+ 352,stage deli,834 7th ave. between 53rd and 54th sts . new york,212/245 -7850,delicatessen 352
355
+ 353,stingray,428 amsterdam ave. between 80th and 81st sts . new york,212/501 -7515,seafood 353
356
+ 354,sweet \ n \ tart cafe,76 mott st. at canal st. new york,212/334 -8088,asian 354
357
+ 355,t salon,143 mercer st. at prince st. new york,212/925 -3700,` coffee bar ' 355
358
+ 356,tang pavillion,65 w. 55th st. new york,212/956 -6888,asian 356
359
+ 357,tapika,950 8th ave. at 56th st. new york,' 212 / 397-3737 ',american 357
360
+ 358,teresa \ s,103 1st ave. between 6th and 7th sts . new york,212/228 -0604,` east european ' 358
361
+ 359,terrace,400 w. 119th st. between amsterdam and morningside aves . new york,212/666 -9490,continental 359
362
+ 360,the coffee pot,350 9th ave. at 49th st. new york,212/265 -3566,` coffee bar ' 360
363
+ 361,the savannah club,2420 broadway at 89th st. new york,212/496 -1066,american 361
364
+ 362,trattoria dell \ arte,900 7th ave. between 56th and 57th sts . new york,212/245 -9800,italian 362
365
+ 363,triangolo,345 e. 83rd st. new york,212/472 -4488,italian 363
366
+ 364,tribeca grill,375 greenwich st. near franklin st. new york,212/941 -3900,american 364
367
+ 365,trois jean,154 e. 79th st. between lexington and 3rd aves . new york,212/988 -4858,` coffee bar ' 365
368
+ 366,tse yang,34 e. 51st st. new york,212/688 -5447,asian 366
369
+ 367,turkish kitchen,386 3rd ave. between 27th and 28th sts . new york,212/679 -1810,` middle eastern ' 367
370
+ 368,two two two,222 w. 79th st. new york,212/799 -0400,american 368
371
+ 369,veniero \ s pasticceria,342 e. 11th st. near 1st ave. new york,212/674 -7264,` coffee bar ' 369
372
+ 370,verbena,54 irving pl . at 17th st. new york,212/260 -5454,american 370
373
+ 371,victor \ s cafe,52 236 w. 52nd st. new york,212/586 -7714,` latin american ' 371
374
+ 372,vince & eddie \ s,70 w. 68th st. new york,212/721 -0068,american 372
375
+ 373,vong,200 e. 54th st. new york,212/486 -9592,american 373
376
+ 374,water club,500 e. 30th st. new york,212/683 -3333,american 374
377
+ 375,west,63rd street steakhouse 44 w. 63rd st. new york,212/246 -6363,american 375
378
+ 376,xunta,174 1st ave. between 10th and 11th sts . new york,212/614 -0620,mediterranean 376
379
+ 377,zen palate,34 union sq. e at 16th st. new york,212/614 -9291,` and 212/614 -9345 asian ' 377
380
+ 378,zoe,90 prince st. between broadway and mercer st. new york,212/966 -6722,american 378
381
+ 379,abbey,163 ponce de leon ave. atlanta,404/876 -8532,international 379
382
+ 380,aleck \ s barbecue heaven,783 martin luther king jr. dr. atlanta,404/525 -2062,barbecue 380
383
+ 381,annie \ s thai castle,3195 roswell rd. atlanta,404/264 -9546,asian 381
384
+ 382,anthonys,3109 piedmont rd. . just south of peachtree rd. atlanta,404/262 -7379,american 382
385
+ 383,atlanta fish market,265 pharr rd. atlanta,404/262 -3165,american 383
386
+ 384,beesley \ s of buckhead,260 e. paces ferry road atlanta,404/264 -1334,continental 384
387
+ 385,bertolini \ s,3500 peachtree rd. . phipps plaza atlanta,404/233 -2333,italian 385
388
+ 386,bistango,1100 peachtree st. atlanta,404/724 -0901,mediterranean 386
389
+ 387,cafe renaissance,7050 jimmy carter blvd. . norcross atlanta,770/441 -- 0291,american 387
390
+ 388,camille \ s,1186 n. highland ave. atlanta,404/872 -7203,italian 388
391
+ 389,cassis,3300 peachtree rd. . grand hyatt atlanta,404/365 -8100,mediterranean 389
392
+ 390,city grill,50 hurt plaza atlanta,404/524 -2489,international 390
393
+ 391,coco loco,40 buckhead crossing mall on the sidney marcus blvd. atlanta,404/364 -0212,caribbean 391
394
+ 392,colonnade restaurant,1879 cheshire bridge rd. atlanta,404/874 -5642,southern 392
395
+ 393,dante \ s down the hatch buckhead,3380 peachtree rd. atlanta,404/266 -1600,continental 393
396
+ 394,dante \ s down the hatch,underground underground mall underground atlanta atlanta,404/577 -1800,continental 394
397
+ 395,fat matt \ s rib shack,1811 piedmont ave. near cheshire bridge rd. atlanta,404/607 -1622,barbecue 395
398
+ 396,french quarter food shop,923 peachtree st. at 8th st. atlanta,404/875 -2489,southern 396
399
+ 397,holt bros. bar-b-q,6359 jimmy carter blvd. . at buford hwy . norcross atlanta,770/242 -3984,barbecue 397
400
+ 398,horseradish grill,4320 powers ferry rd. atlanta,404/255 -7277,southern 398
401
+ 399,hsu \ s gourmet,192 peachtree center ave. at international blvd. atlanta,404/659 -2788,asian 399
402
+ 400,imperial fez,2285 peachtree rd. . peachtree battle condominium atlanta,404/351 -0870,mediterranean 400
403
+ 401,kamogawa,3300 peachtree rd. . grand hyatt atlanta,404/841 -0314,asian 401
404
+ 402,la grotta at ravinia dunwoody rd.,holiday inn/crowne plaza at ravinia dunwoody atlanta,770/395 -9925,italian 402
405
+ 403,little szechuan,c buford hwy . northwoods plaza doraville atlanta,770/451 -0192,asian 403
406
+ 404,lowcountry barbecue,6301 roswell rd. . sandy springs plaza sandy springs atlanta,404/255 -5160,barbecue 404
407
+ 405,luna si,1931 peachtree rd. atlanta,404/355 -5993,continental 405
408
+ 406,mambo restaurante cubano,1402 n. highland ave. atlanta,404/874 -2626,caribbean 406
409
+ 407,mckinnon \ s louisiane,3209 maple dr. atlanta,404/237 -1313,southern 407
410
+ 408,mi spia dunwoody rd.,park place across from perimeter mall dunwoody atlanta,770/393 -1333,italian 408
411
+ 409,nickiemoto \ s : a sushi bar,247 buckhead ave. east village sq. atlanta,404/842 -0334,fusion 409
412
+ 410,palisades,1829 peachtree rd. atlanta,404/350 -6755,continental 410
413
+ 411,pleasant peasant,555 peachtree st. at linden ave. atlanta,404/874 -3223,american 411
414
+ 412,pricci,500 pharr rd. atlanta,404/237 -2941,italian 412
415
+ 413,r.j. \ s uptown kitchen & wine bar,870 n. highland ave. atlanta,404/875 -7775,american 413
416
+ 414,rib ranch,25 irby ave. atlanta,404/233 -7644,barbecue 414
417
+ 415,sa tsu ki,3043 buford hwy . atlanta,404/325 -5285,asian 415
418
+ 416,sato sushi and thai,6050 peachtree pkwy . norcross atlanta,770/449 -0033,asian 416
419
+ 417,south city kitchen,1144 crescent ave. atlanta,404/873 -7358,southern 417
420
+ 418,south of france,2345 cheshire bridge rd. atlanta,404/325 -6963,french 418
421
+ 419,stringer \ s fish camp and oyster bar,3384 shallowford rd. . chamblee atlanta,770/458 -7145,southern 419
422
+ 420,sundown cafe,2165 cheshire bridge rd. atlanta,404/321 -1118,american 420
423
+ 421,taste of new orleans,889 w. peachtree st. atlanta,404/874 -5535,southern 421
424
+ 422,tomtom,3393 peachtree rd. atlanta,404/264 -1163,continental 422
425
+ 423,antonio \ s,3700 w. flamingo las vegas,702/252 -7737,italian 423
426
+ 424,bally \ s big kitchen,3645 las vegas blvd. s las vegas,702/739 -4111,buffets 424
427
+ 425,bamboo garden,4850 flamingo rd. las vegas,702/871 -3262,asian 425
428
+ 426,battista \ s hole in the wall,4041 audrie st. at flamingo rd. las vegas,702/732 -1424,italian 426
429
+ 427,bertolini \ s,3570 las vegas blvd. s las vegas,702/735 -4663,italian 427
430
+ 428,binion \ s coffee shop,128 fremont st. las vegas,702/382 -1600,` coffee shops/diners ' 428
431
+ 429,bistro,3400 las vegas blvd. s las vegas,702/791 -7111,continental 429
432
+ 430,broiler,4111 boulder hwy . las vegas,702/432 -7777,american 430
433
+ 431,bugsy \ s diner,3555 las vegas blvd. s las vegas,702/733 -3111,` coffee shops/diners ' 431
434
+ 432,cafe michelle,1350 e. flamingo rd. las vegas,702/735 -8686,american 432
435
+ 433,cafe roma,3570 las vegas blvd. s las vegas,702/731 -7547,` coffee shops/diners ' 433
436
+ 434,capozzoli \ s,3333 s. maryland pkwy . las vegas,702/731 -5311,italian 434
437
+ 435,carnival world,3700 w. flamingo rd. las vegas,702/252 -7777,buffets 435
438
+ 436,center stage plaza hotel,1 main st. las vegas,702/386 -2512,american 436
439
+ 437,circus circus,2880 las vegas blvd. s las vegas,702/734 -0410,buffets 437
440
+ 438,em press court,3570 las vegas blvd. s las vegas,702/731 -7888,asian 438
441
+ 439,feast,2411 w. sahara ave. las vegas,702/367 -2411,buffets 439
442
+ 440,golden nugget hotel,129 e. fremont st. las vegas,702/385 -7111,buffets 440
443
+ 441,golden steer,308 w. sahara ave. las vegas,702/384 -4470,` steak houses ' 441
444
+ 442,lillie langtry \ s,129 e. fremont st. las vegas,702/385 -7111,asian 442
445
+ 443,mandarin court,1510 e. flamingo rd. las vegas,702/737 -1234,asian 443
446
+ 444,margarita \ s mexican cantina,3120 las vegas blvd. s las vegas,702/794 -8200,mexican 444
447
+ 445,mary \ s diner,5111 w. boulder hwy . las vegas,702/454 -8073,` coffee shops/diners ' 445
448
+ 446,mikado,3400 las vegas blvd. s las vegas,702/791 -7111,asian 446
449
+ 447,pamplemousse,400 e. sahara ave. las vegas,702/733 -2066,continental 447
450
+ 448,ralph \ s diner,3000 las vegas blvd. s las vegas,702/732 -6330,` coffee shops/diners ' 448
451
+ 449,the bacchanal,3570 las vegas blvd. s las vegas,702/731 -7525,` only in las vegas ' 449
452
+ 450,venetian,3713 w. sahara ave. las vegas,702/876 -4190,italian 450
453
+ 451,viva mercado \ s,6182 w. flamingo rd. las vegas,702/871 -8826,mexican 451
454
+ 452,yolie \ s,3900 paradise rd. las vegas,702/794 -0700,` steak houses ' 452
455
+ 453,2223,2223 market st. san francisco,415/431 -0692,american 453
456
+ 454,acquarello,1722 sacramento st. san francisco,415/567 -5432,italian 454
457
+ 455,bardelli \ s,243 o \ farrell st. san francisco,415/982 -0243,` old san francisco ' 455
458
+ 456,betelnut,2030 union st. san francisco,415/929 -8855,asian 456
459
+ 457,bistro roti,155 steuart st. san francisco,415/495 -6500,french 457
460
+ 458,bix,56 gold st. san francisco,415/433 -6300,american 458
461
+ 459,bizou,598 fourth st. san francisco,415/543 -2222,french 459
462
+ 460,buca giovanni,800 greenwich st. san francisco,415/776 -7766,italian 460
463
+ 461,cafe adriano,3347 fillmore st. san francisco,415/474 -4180,italian 461
464
+ 462,cafe marimba,2317 chestnut st. san francisco,415/776 -1506,` mexican/latin american/spanish ' 462
465
+ 463,california culinary academy,625 polk st. san francisco,415/771 -3500,french 463
466
+ 464,capp \ s corner,1600 powell st. san francisco,415/989 -2589,italian 464
467
+ 465,carta,1772 market st. san francisco,415/863 -3516,american 465
468
+ 466,chevys,4th and howard sts . san francisco,415/543 -8060,` mexican/latin american/spanish ' 466
469
+ 467,cypress club,500 jackson st. san francisco,415/296 -8555,american 467
470
+ 468,des alpes,732 broadway san francisco,415/788 -9900,french 468
471
+ 469,faz,161 sutter st. san francisco,415/362 -0404,` greek and middle eastern ' 469
472
+ 470,fog city diner,1300 battery st. san francisco,415/982 -2000,american 470
473
+ 471,garden court,market and new montgomery sts . san francisco,415/546 -5011,` old san francisco ' 471
474
+ 472,gaylord \ s,ghirardelli sq. san francisco,415/771 -8822,asian 472
475
+ 473,grand cafe hotel monaco,501 geary st. san francisco,415/292 -0101,american 473
476
+ 474,greens,bldg. a fort mason san francisco,415/771 -6222,vegetarian 474
477
+ 475,harbor village,4 embarcadero center san francisco,415/781 -8833,asian 475
478
+ 476,harris \,2100 van ness ave. san francisco,415/673 -1888,` steak houses ' 476
479
+ 477,harry denton \ s,161 steuart st. san francisco,415/882 -1333,american 477
480
+ 478,hayes street grill,320 hayes st. san francisco,415/863 -5545,seafood 478
481
+ 479,helmand,430 broadway san francisco,415/362 -0641,` greek and middle eastern ' 479
482
+ 480,hong kong flower lounge,5322 geary blvd. san francisco,415/668 -8998,asian 480
483
+ 481,hong kong villa,2332 clement st. san francisco,415/752 -8833,asian 481
484
+ 482,hyde street bistro,1521 hyde st. san francisco,415/441 -7778,italian 482
485
+ 483,il fornaio levi \ s plaza,1265 battery st. san francisco,415/986 -0100,italian 483
486
+ 484,izzy \ s steak & chop house,3345 steiner st. san francisco,415/563 -0487,` steak houses ' 484
487
+ 485,jack \ s,615 sacramento st. san francisco,415/986 -9854,` old san francisco ' 485
488
+ 486,kabuto sushi,5116 geary blvd. san francisco,415/752 -5652,asian 486
489
+ 487,katia \ s,600 5th ave. san francisco,415/668 -9292,'' 487
490
+ 488,kuleto \ s,221 powell st. san francisco,415/397 -7720,italian 488
491
+ 489,kyo-ya . sheraton palace hotel,2 new montgomery st. at market st. san francisco,415/546 -5000,asian 489
492
+ 490,l \ osteria del forno,519 columbus ave. san francisco,415/982 -1124,italian 490
493
+ 491,le central,453 bush st. san francisco,415/391 -2233,french 491
494
+ 492,le soleil,133 clement st. san francisco,415/668 -4848,asian 492
495
+ 493,macarthur park,607 front st. san francisco,415/398 -5700,american 493
496
+ 494,manora,3226 mission st. san francisco,415/861 -6224,asian 494
497
+ 495,maykadeh,470 green st. san francisco,415/362 -8286,` greek and middle eastern ' 495
498
+ 496,mccormick & kuleto \ s,ghirardelli sq. san francisco,415/929 -1730,seafood 496
499
+ 497,millennium,246 mcallister st. san francisco,415/487 -9800,vegetarian 497
500
+ 498,moose \ s,1652 stockton st. san francisco,415/989 -7800,mediterranean 498
501
+ 499,north india,3131 webster st. san francisco,415/931 -1556,asian 499
502
+ 500,one market,1 market st. san francisco,415/777 -5577,american 500
503
+ 501,oritalia,1915 fillmore st. san francisco,415/346 -1333,italian 501
504
+ 502,pacific pan pacific hotel,500 post st. san francisco,415/929 -2087,french 502
505
+ 503,palio d \ asti,640 sacramento st. san francisco,415/395 -9800,italian 503
506
+ 504,pane e vino,3011 steiner st. san francisco,415/346 -2111,italian 504
507
+ 505,pastis,1015 battery st. san francisco,415/391 -2555,french 505
508
+ 506,perry \ s,1944 union st. san francisco,415/922 -9022,american 506
509
+ 507,r & g lounge,631 b kearny st. san francisco,415/982 -7877,` or 415/982 -3811 asian ' 507
510
+ 508,rubicon,558 sacramento st. san francisco,415/434 -4100,american 508
511
+ 509,rumpus,1 tillman pl . san francisco,415/421 -2300,american 509
512
+ 510,sanppo,1702 post st. san francisco,415/346 -3486,asian 510
513
+ 511,scala \ s bistro,432 powell st. san francisco,415/395 -8555,italian 511
514
+ 512,south park cafe,108 south park san francisco,415/495 -7275,french 512
515
+ 513,splendido embarcadero,4 san francisco,415/986 -3222,mediterranean 513
516
+ 514,stars,150 redwood alley san francisco,415/861 -7827,american 514
517
+ 515,stars cafe,500 van ness ave. san francisco,415/861 -4344,american 515
518
+ 516,stoyanof \ s cafe,1240 9th ave. san francisco,415/664 -3664,` greek and middle eastern ' 516
519
+ 517,straits cafe,3300 geary blvd. san francisco,415/668 -1783,asian 517
520
+ 518,suppenkuche,601 hayes st. san francisco,415/252 -9289,russian/german 518
521
+ 519,tadich grill,240 california st. san francisco,415/391 -2373,seafood 519
522
+ 520,the heights,3235 sacramento st. san francisco,415/474 -8890,french 520
523
+ 521,thepin,298 gough st. san francisco,415/863 -9335,asian 521
524
+ 522,ton kiang,3148 geary blvd. san francisco,415/752 -4440,asian 522
525
+ 523,vertigo,600 montgomery st. san francisco,415/433 -7250,mediterranean 523
526
+ 524,vivande porta via,2125 fillmore st. san francisco,415/346 -4430,italian 524
527
+ 525,vivande ristorante,670 golden gate ave. san francisco,415/673 -9245,italian 525
528
+ 526,world wrapps,2257 chestnut st. san francisco,415/563 -9727,american 526
529
+ 527,wu kong,101 spear st. san francisco,415/957 -9300,asian 527
530
+ 528,yank sing,427 battery st. san francisco,415/541 -4949,asian 528
531
+ 529,yaya cuisine,1220 9th ave. san francisco,415/566 -6966,` greek and middle eastern ' 529
532
+ 530,yoyo tsumami bistro,1611 post st. san francisco,415/922 -7788,french 530
533
+ 531,zarzuela,2000 hyde st. san francisco,415/346 -0800,` mexican/latin american/spanish ' 531
534
+ 532,zuni cafe & grill,1658 market st. san francisco,415/552 -2522,mediterranean 532
tableB.csv ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,addr,city,phone,type,class
2
+ 0,10801 w. pico blvd.,west la,310-475-3585,american,534
3
+ 1,2027 sawtelle blvd.,west la,310-479-2231,` noodle shops ',535
4
+ 2,3345 kimber dr.,westlake village,805-498-4049,mexican,536
5
+ 3,9882 little santa monica blvd.,beverly hills,310-788-2306,` pacific new wave ',537
6
+ 4,1433 third st. promenade,santa monica,310-458-2889,` fast food ',538
7
+ 5,515 s. olive st.,los angeles,213-612-1580,continental,539
8
+ 6,45 s. mentor ave.,pasadena,818-795-2478,californian,540
9
+ 7,19565 parthenia ave.,northridge,818-886-5679,delis,541
10
+ 8,9600 brighton way,beverly hills,310-276-7732,` coffee shops ',542
11
+ 9,1570 rosecrans ave. s.,pasadena,310-643-5229,californian,543
12
+ 10,3838 centinela ave.,mar vista,310-397-5703,italian,544
13
+ 11,838 lincoln blvd.,venice,310-399-1955,american,545
14
+ 12,9777 little santa monica blvd.,beverly hills,310-888-0108,` pacific new wave ',546
15
+ 13,3266 w. sixth st.,la,213-480-8668,hamburgers,547
16
+ 14,1716 pch,redondo beach,310-540-1222,eclectic,548
17
+ 15,1020 n. san vicente blvd.,w. hollywood,310-854-1111,russian,549
18
+ 16,1136 westwood blvd.,westwood,310-209-1422,italian,550
19
+ 17,8909 sunset blvd.,w. hollywood,310-652-3100,` coffee shops ',551
20
+ 18,1059 broxton ave.,westwood,310-208-4444,` middle eastern ',552
21
+ 19,1949 westwood blvd.,west la,310-475-0400,chinese,553
22
+ 20,6333 w. third st.,la,213-933-0358,cajun/creole,554
23
+ 21,6145 franklin ave.,hollywood,213-467-7678,` coffee shops ',555
24
+ 22,10428 1/2 national blvd.,la,310-815-1290,indonesian,556
25
+ 23,8424 beverly blvd.,la,213-651-2866,` coffee shops ',557
26
+ 24,502 santa monica blvd,santa monica,310-917-6671,californian,558
27
+ 25,2011 ocean front walk,venice,310-306-1995,` hot dogs ',559
28
+ 26,1023 abbot kinney blvd.,venice,310-399-5811,` american ( new ) ',560
29
+ 27,10516 w. pico blvd.,west la,310-204-0692,` coffee shops ',561
30
+ 28,4017 s. sepulveda blvd.,culver city,310-397-6654,delis,562
31
+ 29,4663 long beach blvd.,long beach,310-423-7327,southern/soul,563
32
+ 30,7507 melrose ave.,la,213-651-3361,american,564
33
+ 31,4000 colfax ave.,studio city,818-508-1570,seafood,565
34
+ 32,6333 w. third st.,la,213-933-0773,american,566
35
+ 33,8393 w. beverly blvd.,la,213-655-9045,chicken,567
36
+ 34,10506 little santa monica blvd.,century city,310-470-4992,` french ( new ) ',568
37
+ 35,22800 pch,malibu,310-456-6299,mexican,569
38
+ 36,1842 e. first,st. boyle hts .,213-265-2887,mexican/tex-mex,570
39
+ 37,704 s. alvarado st.,la,213-483-8050,delis,571
40
+ 38,30869 thousand oaks blvd.,westlake village,818-706-7706,` health food ',572
41
+ 39,10509 w. pico blvd.,rancho park,310-475-7564,american,573
42
+ 40,519 s. fairfax ave.,la,213-938-8800,desserts,574
43
+ 41,22nd street grill 25 22nd,st. hermosa beach,310-376-7786,american,575
44
+ 42,13329 washington blvd.,marina del rey,310-306-7829,american,576
45
+ 43,1147 third st.,santa monica,310-451-0843,californian,577
46
+ 44,8474 w. third st.,la,213-782-0181,` noodle shops ',578
47
+ 45,7261 melrose ave.,la,213-935-5280,hamburgers,579
48
+ 46,17040 ventura blvd.,encino,818-906-8881,pizza,580
49
+ 47,3117 ocean park blvd.,santa monica,310-452-5728,american,581
50
+ 48,145 n. atlantic blvd.,monterey park,818-308-2128,seafood,582
51
+ 49,875 s. figueroa st. downtown,la,213-627-6879,diners,583
52
+ 50,510 s. arroyo pkwy .,pasadena,818-795-1001,californian,584
53
+ 51,642 broadway,chinatown,213-626-5530,vietnamese,585
54
+ 52,709 n. la brea ave.,la,213-931-4223,` hot dogs ',586
55
+ 53,2635 w. olive ave.,burbank,818-563-2252,mexican,587
56
+ 54,923 e. third st.,los angeles,213-687-7178,japanese,588
57
+ 55,2901 pico blvd.,santa monica,310-828-7937,diners,589
58
+ 56,15322 ventura blvd.,encino,818-905-6515,` hot dogs ',590
59
+ 57,45 s. fair oaks ave.,pasadena,818-796-7829,diners,591
60
+ 58,1198 pch,seal beach,310-596-9556,hamburgers,592
61
+ 59,224 s. beverly dr.,beverly hills,310-859-8744,steakhouses,593
62
+ 60,1505 mission st. s.,pasadena,818-799-4774,` pacific new wave ',594
63
+ 61,11288 ventura blvd.,studio city,818-508-7017,japanese,595
64
+ 62,8360 melrose ave.,la,213-653-7145,desserts,596
65
+ 63,11677 san vicente blvd.,brentwood,310-207-7782,` noodle shops ',597
66
+ 64,2575 beverly blvd.,la,213-389-9060,hamburgers,598
67
+ 65,1305 highland ave.,manhattan beach,310-545-5177,diners,599
68
+ 66,544 s. grand ave.,los angeles,213-891-0900,seafood,600
69
+ 67,1415 e. colorado st.,glendale,818-244-1937,` middle eastern ',601
70
+ 68,764 ninth ave.,new york city,212-307-1612,afghan,602
71
+ 69,21 e. 62nd st.,new york city,212-223-2900,` american ( new ) ',603
72
+ 70,93 ave. a,new york city,212-254-2054,mexican,604
73
+ 71,424 amsterdam ave.,new york city,212-595-7000,cuban,605
74
+ 72,331 w. fourth st.,new york city,212-242-9502,hamburgers,606
75
+ 73,368 bleecker st.,new york city,212-242-0636,italian,607
76
+ 74,87 e. fourth st.,new york city,212-260-6800,seafood,608
77
+ 75,44 w. 56th st.,new york city,212-432-7227,indian,609
78
+ 76,432 sixth ave.,new york city,212-473-5555,diners,610
79
+ 77,228 w. 47th st.,new york city,212-840-5000,diners,611
80
+ 78,24-02 31st st.,queens,718-932-1510,greek,612
81
+ 79,483 amsterdam ave.,new york city,212-496-0163,american,613
82
+ 80,2090 broadway,new york city,212-799-0243,` hot dogs ',614
83
+ 81,86 w. third st.,new york city,212-673-3783,italian,615
84
+ 82,37-03 74th st.,queens,718-672-1232,indian,616
85
+ 83,9 pell st.,queens,718-539-3838,chinese,617
86
+ 84,48 w. 65th st.,new york city,212-721-7001,pizza,618
87
+ 85,127 greene st.,new york city,212-228-1212,pan-asian,619
88
+ 86,117 second ave.,new york city,212-674-4040,ukrainian,620
89
+ 87,2nd fl .,new york city,212-317-2802,japanese,621
90
+ 88,2199 broadway,new york city,212-874-2780,cuban,622
91
+ 89,3 e. 52nd st.,new york city,212-752-1495,` french ( classic ) ',623
92
+ 90,61a seventh ave.,brooklyn,718-399-7100,thai,624
93
+ 91,32 spring st.,new york city,212-941-7994,pizza,625
94
+ 92,466 hudson st.,new york city,212-741-3214,asian,626
95
+ 93,39 w. 55th st.,new york city,212-247-1585,japanese,627
96
+ 94,296 bleecker st.,new york city,212-989-1367,indian,628
97
+ 95,435 amsterdam ave.,new york city,212-580-8686,thai,629
98
+ 96,405 atlantic ave.,brooklyn,718-852-5555,` middle eastern ',630
99
+ 97,105 hudson st.,new york city,212-219-0500,japanese,631
100
+ 98,17 barrow st.,new york city,212-228-0822,continental,632
101
+ 99,lower level,new york city,212-490-6650,seafood,633
102
+ 100,837 second ave.,new york city,212-687-2953,steakhouses,634
103
+ 101,840 second ave.,new york city,212-697-5198,steakhouses,635
104
+ 102,19 old fulton st.,brooklyn,718-858-4300,pizza,636
105
+ 103,178 broadway,brooklyn,718-387-7400,steakhouses,637
106
+ 104,308 e. sixth st.,new york city,212-533-5011,indian,638
107
+ 105,411 third ave.,new york city,212-213-2288,chinese,639
108
+ 106,1295 madison ave.,new york city,212-410-7335,american,640
109
+ 107,210 e. 46th st.,new york city,212-687-4855,steakhouses,641
110
+ 108,5-16 51st ave.,queens,718-937-3030,bbq,642
111
+ 109,38 e. 51st st.,new york city,212-755-1780,japanese,643
112
+ 110,328 lenox ave.,new york city,212-996-0660,southern/soul,644
113
+ 111,1588 york ave.,new york city,212-535-5223,chinese,645
114
+ 112,1460 first ave.,new york city,212-249-4615,chinese,646
115
+ 113,80 montague st.,queens,718-520-2910,polish,647
116
+ 114,151 hudson st.,new york city,212-334-1085,thai,648
117
+ 115,106 bayard st.,new york city,212-349-3132,thai,649
118
+ 116,144 second ave.,new york city,212-228-9682,ukrainian,650
119
+ 117,689 ninth ave.,new york city,212-245-0800,chinese,651
120
+ 118,107th fl .,new york city,212-524-7000,eclectic,652
121
+ 119,205 e. 49th st.,new york city,212-753-0444,steakhouses,653
122
+ 120,122 e. 17th st.,new york city,212-475-0969,japanese,654
123
+ 121,953 second ave.,new york city,212-644-6740,mexican,655
124
+ 122,401 s. 6th st.,las vegas,702-385-5016,` french ( classic ) ',656
125
+ 123,3300 las vegas blvd. s.,las vegas,702-894-7350,continental,657
126
+ 124,3700 w. flamingo rd.,las vegas,702-252-7697,seafood,658
127
+ 125,3799 las vegas blvd. s.,las vegas,702-891-7374,seafood,659
128
+ 126,3700 w. flamingo rd.,las vegas,702-252-7702,italian,660
129
+ 127,202 e. fremont st.,las vegas,702-385-4011,continental,661
130
+ 128,3300 las vegas blvd. s.,las vegas,702-894-7111,asian,662
131
+ 129,4750 w. sahara ave.,las vegas,702-870-8432,chinese,663
132
+ 130,3595 las vegas blvd. s.,las vegas,702-737-7111,continental,664
133
+ 131,3145 las vegas blvd. s.,las vegas,702-733-4524,` french ( new ) ',665
134
+ 132,3400 las vegas blvd. s.,las vegas,702-791-7352,chinese,666
135
+ 133,3200 las vegas blvd. s.,las vegas,702-893-0703,steakhouses,667
136
+ 134,3925 paradise rd.,las vegas,702-792-9900,italian,668
137
+ 135,355 convention center dr.,las vegas,702-369-2305,italian,669
138
+ 136,3500 las vegas blvd. s.,las vegas,702-369-6300,californian,670
139
+ 137,128 e. fremont st.,las vegas,702-382-1600,steakhouses,671
140
+ 138,129 fremont st.,las vegas,702-385-7111,italian,672
141
+ 139,3645 las vegas blvd. s.,las vegas,702-739-4651,eclectic,673
142
+ 140,3799 las vegas blvd. s.,las vegas,702-891-7331,italian,674
143
+ 141,103 w. paces ferry rd.,atlanta,404-233-5993,continental,675
144
+ 142,659 peachtree st.,atlanta,404-724-0444,sandwiches,676
145
+ 143,1134 euclid ave.,atlanta,404-223-5039,cajun/creole,677
146
+ 144,1437 virginia ave.,atlanta,404-766-9906,bbq,678
147
+ 145,56 e. andrews dr. nw,atlanta,404-231-5733,` french bistro ',679
148
+ 146,375 14th st.,atlanta,404-876-3872,southern/soul,680
149
+ 147,2911 s. pharr court,atlanta,404-261-7015,southern/soul,681
150
+ 148,4274 peachtree rd.,atlanta,404-231-5907,vegetarian,682
151
+ 149,5975 roswell rd.,atlanta,404-256-1675,` health food ',683
152
+ 150,4199 paces ferry rd.,atlanta,770-432-2663,` american ( new ) ',684
153
+ 151,1021 cobb pkwy . se,marietta,770-422-8042,hamburgers,685
154
+ 152,1215 powers ferry rd.,marietta,770-933-0909,hamburgers,686
155
+ 153,70 w. paces ferry rd.,atlanta,404-262-2675,steakhouses,687
156
+ 154,4279 roswell rd.,atlanta,404-255-4868,chinese,688
157
+ 155,1029 edgewood ave. se,atlanta,404-523-1929,southern/soul,689
158
+ 156,600 ponce de leon ave.,atlanta,404-888-9149,italian,690
159
+ 157,1655 mclendon ave.,atlanta,404-687-8888,eclectic,691
160
+ 158,1031 peachtree st. ne,atlanta,404-892-8226,tex-mex,692
161
+ 159,1087 green st.,roswell,770-992-5383,southern/soul,693
162
+ 160,171 mcdonough blvd.,atlanta,404-627-9268,bbq,694
163
+ 161,2905 buford hwy .,atlanta,404-636-4094,cuban,695
164
+ 162,2469 cobb pkwy .,smyrna,770-955-9444,chinese,696
165
+ 163,3675 satellite blvd.,duluth,100-813-8212,indian,697
166
+ 164,790 ponce de leon ave.,atlanta,404-876-6161,` coffee shops ',698
167
+ 165,2970 cobb pkwy .,atlanta,770-955-6068,american,699
168
+ 166,1248 clairmont rd.,decatur,404-325-3733,coffeehouses,700
169
+ 167,4427 roswell rd.,atlanta,404-303-8201,spanish,701
170
+ 168,3525 mall blvd.,duluth,770-418-9969,cafeterias,702
171
+ 169,1031 ponce de leon ave.,atlanta,404-875-0276,diners,703
172
+ 170,303 peachtree st. ne,atlanta,404-577-4366,steakhouses,704
173
+ 171,1248 clairmont rd.,atlanta,404-636-4280,thai,705
174
+ 172,3060 peachtree rd.,atlanta,404-240-1984,southwestern,706
175
+ 173,1495 chattahoochee ave. nw,atlanta,404-352-9009,mexican,707
176
+ 174,4330 peachtree rd.,atlanta,404-237-4116,american,708
177
+ 175,3391 peachtree rd. ne,atlanta,404-814-1955,steakhouses,709
178
+ 176,2118 n. decatur rd.,decatur,404-633-3538,vegetarian,710
179
+ 177,519 e. paces ferry rd.,atlanta,404-262-7112,mediterranean,712
180
+ 178,200 14th st. nw,atlanta,404-874-1388,` coffee shops ',713
181
+ 179,3330 piedmont rd.,atlanta,404-233-2005,japanese,714
182
+ 180,764 marietta st. nw,atlanta,404-688-5855,cafeterias,715
183
+ 181,774 ponce de leon ave. ne,atlanta,404-892-0193,tex-mex,716
184
+ 182,70 w. crossville rd.,roswell,770-993-1156,` american ( new ) ',717
185
+ 183,220 sandy springs circle,atlanta,404-231-3111,vegetarian,718
186
+ 184,3172 peachtree rd. ne,atlanta,404-237-7601,diners,719
187
+ 185,4837 old national hwy .,college park,404-768-2705,thai,720
188
+ 186,2315 clement st.,san francisco,415-221-5262,hamburgers,721
189
+ 187,2298 market st.,san francisco,415-621-8579,californian,722
190
+ 188,423 columbus ave.,san francisco,415-397-6261,continental,723
191
+ 189,240 columbus ave.,san francisco,415-433-9623,mexican,724
192
+ 190,1805 haight st.,san francisco,415-386-5758,caribbean,725
193
+ 191,2217 union st.,san francisco,415-921-2149,american,726
194
+ 192,522 jones st.,san francisco,415-885-2767,diners,727
195
+ 193,3221 mission st.,san francisco,415-826-4639,thai,728
196
+ 194,1283 ninth ave.,san francisco,415-566-1770,japanese,729
197
+ 195,1550 california st.,san francisco,415-673-1155,vietnamese,730
198
+ 196,1500 church st.,san francisco,415-282-0919,chinese,731
199
+ 197,1582 folsom st.,san francisco,415-626-1985,hamburgers,732
200
+ 198,333 bush st.,san francisco,415-362-4454,californian,733
201
+ 199,515 valencia st.,san francisco,415-863-8205,mexican,734
202
+ 200,288 noe st.,san francisco,415-431-7210,mediterranean,735
203
+ 201,2889 mission st.,san francisco,415-285-7117,mexican,736
204
+ 202,2209 polk st.,san francisco,415-776-8226,italian,737
205
+ 203,2225 irving st.,san francisco,415-665-9500,thai,738
206
+ 204,3355 geary st.,san francisco,415-387-2244,hamburgers,739
207
+ 205,1322 grant st.,san francisco,415-788-3779,hamburgers,740
208
+ 206,631 larkin st.,san francisco,415-775-5979,cambodian,741
209
+ 207,2817 24th st.,san francisco,415-550-9213,mexican,742
210
+ 208,300 de haro st.,san francisco,415-626-6006,american,743
211
+ 209,1328 18th st.,san francisco,415-431-8956,thai,744
212
+ 210,584 valencia st.,san francisco,415-861-8032,vietnamese,745
213
+ 211,1517 polk st.,san francisco,415-673-1101,seafood,746
214
+ 212,400 waller st.,san francisco,415-431-2526,thai,747
215
+ 213,3108 16th st.,san francisco,415-252-7373,french,748
216
+ 214,1870 fillmore st.,san francisco,415-563-2248,american,749
217
+ 215,8 sixth st.,san francisco,415-626-0927,vietnamese,750
218
+ 216,201 ivy st.,san francisco,415-863-2382,pizza,751
219
+ 217,2141 polk st.,san francisco,415-775-1055,mexican,752
220
+ 218,435 s. la cienega blvd.,los angeles,310-246-1501,steakhouses,0
221
+ 219,12224 ventura blvd.,studio city,818-762-1221,delis,1
222
+ 220,701 stone canyon rd.,bel air,310-472-1211,californian,2
223
+ 221,14016 ventura blvd.,sherman oaks,818-788-3536,` french bistro ',3
224
+ 222,624 s. la brea ave.,los angeles,213-938-1447,californian,4
225
+ 223,2709 main st.,santa monica,310-392-9025,` pacific new wave ',5
226
+ 224,6703 melrose ave.,los angeles,213-857-0034,californian,6
227
+ 225,8358 sunset blvd.,w. hollywood,213-848-6677,` french ( new ) ',7
228
+ 226,23725 w. malibu rd.,malibu,310-456-0488,californian,8
229
+ 227,9560 dayton way,beverly hills,310-276-0615,` american ( traditional ) ',9
230
+ 228,1972 hillhurst ave.,los feliz,213-665-1891,japanese,10
231
+ 229,903 n. la cienega blvd.,w. hollywood,310-652-9770,` french ( classic ) ',11
232
+ 230,8284 melrose ave.,los angeles,213-655-8880,` french bistro ',12
233
+ 231,8638 w. third st.,los angeles,310-274-1893,italian,13
234
+ 232,129 n. la cienega blvd.,beverly hills,310-659-9639,seafood,14
235
+ 233,9001 santa monica blvd.,w. hollywood,310-550-8811,steakhouses,15
236
+ 234,5955 melrose ave.,los angeles,213-467-1108,californian,16
237
+ 235,1001 n. alameda st.,chinatown,213-628-3781,cafeterias,17
238
+ 236,12969 ventura blvd.,studio city,818-990-0500,` french bistro ',18
239
+ 237,617 s. olive st.,los angeles,213-627-2300,` nuova cucina italian ',19
240
+ 238,8795 sunset blvd.,w. hollywood,310-652-4025,californian,20
241
+ 239,3115 pico blvd.,santa monica,310-829-4313,italian,21
242
+ 240,67 n. raymond ave.,pasadena,818-585-0855,chinese,22
243
+ 241,21 w. 52nd st.,new york city,212-582-7200,` american ( new ) ',23
244
+ 242,13 w. 54th st.,new york city,212-307-7311,scandinavian,24
245
+ 243,34 e. 61st st.,new york city,212-319-1660,` american ( new ) ',25
246
+ 244,201 w. 83rd st.,new york city,212-496-6031,coffeehouses,26
247
+ 245,1 w. 67th st.,new york city,212-877-3500,` french ( classic ) ',27
248
+ 246,2450 broadway,new york city,212-362-2200,italian,28
249
+ 247,854 seventh ave.,new york city,212-757-2245,delis,29
250
+ 248,2 harrison st.,new york city,212-966-6960,` french ( new ) ',30
251
+ 249,20 e. 76th st.,new york city,212-288-0033,` french ( new ) ',31
252
+ 250,210 e. 58th st.,new york city,212-355-7555,indian,32
253
+ 251,243 e. 58th st.,new york city,212-758-1479,italian,33
254
+ 252,99 e. 52nd st.,new york city,212-754-9494,` american ( new ) ',34
255
+ 253,12 e. 12th st.,new york city,212-620-4020,` american ( new ) ',35
256
+ 254,42 e. 20th st.,new york city,212-477-0777,` american ( new ) ',36
257
+ 255,402 w. 44th st.,new york city,212-765-1737,caribbean,37
258
+ 256,160 e. 64th st.,new york city,212-223-5656,` french bistro ',38
259
+ 257,33 w. 55th st.,new york city,212-586-4252,` french ( classic ) ',39
260
+ 258,60 w. 55th st.,new york city,212-688-6525,` french ( classic ) ',40
261
+ 259,155 w. 51st st.,new york city,212-489-1515,seafood,41
262
+ 260,155 w. 58th st.,new york city,212-484-5113,` french ( classic ) ',42
263
+ 261,2 e. 55th st.,new york city,212-339-6719,asian,43
264
+ 262,249 e. 50th st.,new york city,212-752-2225,` french ( classic ) ',44
265
+ 263,57 w. 58th st.,new york city,212-371-7777,seafood,45
266
+ 264,405 e. 58th st.,new york city,212-754-6272,` american ( new ) ',46
267
+ 265,102 fifth ave.,new york city,212-807-7400,southwestern,47
268
+ 266,57 jane st.,new york city,212-627-8273,mexican,48
269
+ 267,239 w. broadway,new york city,212-219-2777,` french bistro ',49
270
+ 268,55 e. 54th st.,new york city,212-759-5941,seafood,50
271
+ 269,100 e. 63rd st.,new york city,212-644-1900,` american ( new ) ',51
272
+ 270,182 w. 58th st.,new york city,212-245-2214,russian,52
273
+ 271,35 w. 64th st.,new york city,212-724-8585,mediterranean,53
274
+ 272,95 ave. a,new york city,212-260-6660,seafood,54
275
+ 273,30 rockefeller plaza,new york city,212-632-5000,` american ( new ) ',55
276
+ 274,1 water st.,brooklyn,718-522-5200,` american ( new ) ',56
277
+ 275,240 central park s.,new york city,212-265-5959,italian,57
278
+ 276,156 second ave.,new york city,212-677-0606,delis,58
279
+ 277,11 e. 53rd st.,new york city,212-980-9393,japanese,59
280
+ 278,155 e. 55th st.,new york city,212-371-8844,chinese,60
281
+ 279,1110 third ave.,new york city,212-861-8080,` american ( new ) ',61
282
+ 280,797 third ave.,new york city,212-753-1530,steakhouses,62
283
+ 281,central park west,new york city,212-873-3200,` american ( new ) ',63
284
+ 282,747 ninth ave.,new york city,212-245-7992,greek,64
285
+ 283,21 e. 16th st.,new york city,212-243-4020,` american ( new ) ',65
286
+ 284,152 w. 44th st.,new york city,212-921-9494,bbq,66
287
+ 285,3200 las vegas blvd. s.,las vegas,702-733-8899,chinese,67
288
+ 286,3799 las vegas blvd. s.,las vegas,702-891-7349,southwestern,68
289
+ 287,3000 paradise rd.,las vegas,702-732-5651,` french bistro ',69
290
+ 288,3570 las vegas blvd. s.,las vegas,702-731-7110,` french ( new ) ',70
291
+ 289,200 e. fremont st.,las vegas,702-385-6277,` pacific rim ',71
292
+ 290,2880 las vegas blvd. s.,las vegas,702-734-0410,steakhouses,72
293
+ 291,2245 e. flamingo rd.,las vegas,702-731-4036,steakhouses,73
294
+ 292,2355 peachtree rd. ne,atlanta,404-261-8186,italian,74
295
+ 293,3125 piedmont rd.,atlanta,404-365-0410,californian,75
296
+ 294,3130 piedmont rd. ne,atlanta,404-237-2663,steakhouses,76
297
+ 295,3393 peachtree rd.,atlanta,404-266-1440,` french bistro ',77
298
+ 296,3073 piedmont rd.,atlanta,404-262-3336,` american ( new ) ',78
299
+ 297,1529 piedmont ave.,atlanta,404-874-7600,` french ( new ) ',79
300
+ 298,1 margaret mitchell sq.,atlanta,404-681-2909,cafeterias,80
301
+ 299,2290 peachtree rd.,atlanta,404-352-3517,southwestern,81
302
+ 300,490 e. paces ferry rd. ne,atlanta,404-233-7673,continental,82
303
+ 301,595 piedmont ave.,atlanta,404-876-4408,indian,83
304
+ 302,1397 n. highland ave.,atlanta,404-876-0676,eclectic,84
305
+ 303,2637 peachtree rd. ne,atlanta,404-231-1368,italian,85
306
+ 304,224 ponce de leon ave.,atlanta,404-876-1800,southern/soul,86
307
+ 305,255 courtland st.,atlanta,404-221-6362,continental,87
308
+ 306,1232 w. paces ferry rd.,atlanta,404-261-3662,` american ( new ) ',88
309
+ 307,3434 peachtree rd. ne,atlanta,404-237-2700,` american ( new ) ',89
310
+ 308,3434 peachtree rd. ne,atlanta,404-237-2700,` american ( new ) ',90
311
+ 309,181 peachtree st.,atlanta,404-659-0400,` french ( classic ) ',91
312
+ 310,293-b peachtree rd.,atlanta,404-351-9533,` french ( new ) ',92
313
+ 311,41 14th st.,atlanta,404-875-8424,italian,93
314
+ 312,126 clement st.,san francisco,415-387-0408,` french ( new ) ',94
315
+ 313,252 california st.,san francisco,415-956-9662,` american ( new ) ',95
316
+ 314,1 mission st.,san francisco,415-543-6084,` american ( new ) ',96
317
+ 315,7 claude ln .,san francisco,415-392-3505,` french bistro ',97
318
+ 316,340 stockton st.,san francisco,415-955-5555,` american ( new ) ',98
319
+ 317,804 north point st.,san francisco,415-775-7036,californian,99
320
+ 318,777 sutter st.,san francisco,415-673-7779,` french ( new ) ',100
321
+ 319,570 fourth st.,san francisco,415-543-0573,` french bistro ',101
322
+ 320,22 hawthorne st.,san francisco,415-777-9779,californian,102
323
+ 321,5937 geary blvd.,san francisco,415-668-6654,thai,103
324
+ 322,2316 polk st.,san francisco,415-776-5577,` french ( new ) ',104
325
+ 323,816 folsom st.,san francisco,415-495-5775,mediterranean,105
326
+ 324,648 bush st.,san francisco,415-989-7154,` french ( new ) ',106
327
+ 325,1737 post st.,san francisco,415-922-0337,japanese,107
328
+ 326,3127 fillmore st.,san francisco,415-563-4755,` american ( new ) ',108
329
+ 327,545 post st.,san francisco,415-776-7825,californian,109
330
+ 328,600 stockton st.,san francisco,415-296-7465,` french ( new ) ',110
331
+ 329,532 columbus ave.,san francisco,415-399-0499,italian,111
332
+ 330,181 peachtree st.,atlanta,404-659-0400,` american ( new ) ',711
test.csv ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6,230,0
2
+ 22,240,1
3
+ 501,214,0
4
+ 38,256,1
5
+ 70,130,0
6
+ 384,300,0
7
+ 76,26,0
8
+ 147,23,0
9
+ 83,301,1
10
+ 90,148,0
11
+ 197,251,0
12
+ 119,82,0
13
+ 68,288,0
14
+ 143,0,0
15
+ 437,130,0
16
+ 292,89,0
17
+ 42,275,0
18
+ 431,288,0
19
+ 131,233,0
20
+ 405,172,0
21
+ 92,308,0
22
+ 448,125,0
23
+ 84,302,1
24
+ 50,242,0
25
+ 74,292,1
26
+ 443,126,0
27
+ 50,278,0
28
+ 72,288,0
29
+ 429,285,0
30
+ 431,128,0
31
+ 433,123,0
32
+ 442,289,0
33
+ 410,295,0
34
+ 437,136,0
35
+ 165,223,0
36
+ 37,255,1
37
+ 148,238,0
38
+ 406,65,0
39
+ 82,141,0
40
+ 146,225,0
41
+ 494,193,0
42
+ 429,131,0
43
+ 147,33,0
44
+ 121,52,0
45
+ 170,224,0
46
+ 70,285,0
47
+ 427,133,0
48
+ 326,278,0
49
+ 72,132,0
50
+ 451,126,0
51
+ 136,232,0
52
+ 432,291,0
53
+ 72,131,0
54
+ 427,125,0
55
+ 393,310,0
56
+ 68,136,0
57
+ 39,257,1
58
+ 73,291,1
59
+ 57,275,1
60
+ 58,276,1
61
+ 7,238,0
62
+ 142,59,0
63
+ 433,139,0
64
+ 386,142,0
65
+ 75,293,1
66
+ 32,260,0
67
+ 46,250,0
68
+ 410,310,0
69
+ 431,140,0
70
+ 67,190,0
71
+ 0,170,0
72
+ 135,230,0
73
+ 71,138,0
74
+ 3,236,0
75
+ 27,245,1
76
+ 107,325,1
77
+ 443,124,0
78
+ 393,299,0
79
+ 89,175,0
80
+ 15,3,0
81
+ 148,225,0
82
+ 459,319,0
83
+ 202,275,0
84
+ 422,295,0
85
+ 440,127,0
86
+ 448,133,0
87
+ 197,270,0
88
+ 159,46,0
89
+ 356,257,0
90
+ 309,256,0
91
+ 379,304,0
92
+ 447,129,0
93
+ 68,139,0
94
+ 146,238,0
95
+ 25,109,0
96
+ 127,190,0
97
+ 41,260,0
98
+ 429,128,0
99
+ 92,148,0
100
+ 70,133,0
101
+ 424,123,0
102
+ 131,34,0
103
+ 6,62,0
104
+ 433,131,0
105
+ 100,318,1
106
+ 67,288,0
107
+ 67,136,0
108
+ 68,123,0
109
+ 393,175,0
110
+ 79,297,1
111
+ 143,39,0
112
+ 276,107,0
113
+ 39,261,0
114
+ 111,189,0
115
+ 101,319,1
116
+ 425,126,0
117
+ 1,61,0
118
+ 379,164,0
119
+ 72,107,0
120
+ 326,107,0
121
+ 96,193,0
122
+ 148,17,0
123
+ 32,251,0
124
+ 98,328,0
125
+ 459,72,0
126
+ 438,133,0
127
+ 287,120,0
128
+ 32,261,0
129
+ 28,246,1
130
+ 16,224,0
131
+ 82,177,0
132
+ 468,80,0
133
+ 492,312,0
134
+ 36,254,1
135
+ 309,258,0
136
+ 16,62,0
137
+ 428,137,0
138
+ 89,292,0
139
+ 405,330,0
140
+ 479,267,0
141
+ 405,308,0
142
+ 498,55,0
143
+ 46,260,0
144
+ 90,295,0
145
+ 131,3,0
146
+ 89,184,0
147
+ 273,260,0
148
+ 358,324,0
149
+ 502,325,0
150
+ 444,131,0
151
+ 70,140,0
152
+ 71,289,1
153
+ 274,271,0
154
+ 170,64,0
155
+ 468,88,0
156
+ 156,215,0
157
+ 96,314,1
158
+ 519,195,0
159
+ 405,295,0
160
+ 190,241,0
161
+ 23,252,0
162
+ 448,128,0
163
+ 436,314,0
164
+ 502,327,0
165
+ 70,136,0
166
+ 82,300,1
167
+ 79,301,0
168
+ 386,330,0
169
+ 449,130,0
170
+ 71,127,0
171
+ 449,285,0
172
+ 60,257,0
173
+ 170,62,0
174
+ 405,299,0
175
+ 121,222,0
176
+ 125,40,0
177
+ 190,89,0
178
+ 249,207,0
179
+ 433,130,0
180
+ 448,288,0
181
+ 431,123,0
182
+ 446,288,0
183
+ 438,140,0
184
+ 422,292,0
185
+ 108,326,1
186
+ 133,229,0
187
+ 86,156,0
188
+ 424,125,0
189
+ 44,251,0
train.csv ADDED
@@ -0,0 +1,567 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 92,184,0
2
+ 256,89,0
3
+ 436,223,0
4
+ 415,161,0
5
+ 18,46,0
6
+ 221,277,0
7
+ 43,257,0
8
+ 356,93,0
9
+ 24,268,0
10
+ 379,156,0
11
+ 241,268,0
12
+ 473,204,0
13
+ 398,152,0
14
+ 405,174,0
15
+ 197,260,0
16
+ 135,45,0
17
+ 156,122,0
18
+ 55,273,1
19
+ 97,315,1
20
+ 452,134,0
21
+ 83,104,0
22
+ 490,189,0
23
+ 427,132,0
24
+ 495,159,0
25
+ 32,270,0
26
+ 449,290,0
27
+ 159,56,0
28
+ 423,124,0
29
+ 338,259,0
30
+ 170,234,0
31
+ 437,139,0
32
+ 11,232,0
33
+ 373,107,0
34
+ 444,290,0
35
+ 90,175,0
36
+ 393,292,0
37
+ 479,88,0
38
+ 448,140,0
39
+ 530,327,0
40
+ 59,277,1
41
+ 405,148,0
42
+ 446,131,0
43
+ 429,132,0
44
+ 207,187,0
45
+ 446,139,0
46
+ 18,56,0
47
+ 106,324,1
48
+ 438,136,0
49
+ 47,265,1
50
+ 67,130,0
51
+ 16,45,0
52
+ 363,244,0
53
+ 138,223,0
54
+ 87,305,1
55
+ 32,107,0
56
+ 41,259,1
57
+ 469,318,0
58
+ 93,146,0
59
+ 446,136,0
60
+ 222,259,0
61
+ 50,268,1
62
+ 92,174,0
63
+ 433,290,0
64
+ 494,314,0
65
+ 125,151,0
66
+ 481,312,0
67
+ 446,286,0
68
+ 427,139,0
69
+ 479,80,0
70
+ 433,132,0
71
+ 485,26,0
72
+ 90,174,0
73
+ 44,261,0
74
+ 438,128,0
75
+ 86,181,0
76
+ 21,55,0
77
+ 105,197,0
78
+ 422,184,0
79
+ 120,4,0
80
+ 429,125,0
81
+ 88,150,0
82
+ 422,308,0
83
+ 373,289,0
84
+ 82,306,0
85
+ 110,309,0
86
+ 433,133,0
87
+ 247,318,0
88
+ 230,270,0
89
+ 145,64,0
90
+ 52,260,0
91
+ 95,195,0
92
+ 135,62,0
93
+ 90,303,0
94
+ 371,241,0
95
+ 72,136,0
96
+ 21,239,1
97
+ 344,106,0
98
+ 56,274,1
99
+ 85,303,1
100
+ 429,290,0
101
+ 448,136,0
102
+ 438,290,0
103
+ 3,219,0
104
+ 65,283,1
105
+ 421,309,0
106
+ 421,142,0
107
+ 446,133,0
108
+ 67,286,0
109
+ 11,218,0
110
+ 68,290,0
111
+ 424,139,0
112
+ 438,130,0
113
+ 159,221,0
114
+ 37,284,0
115
+ 384,177,0
116
+ 52,264,0
117
+ 46,119,0
118
+ 422,175,0
119
+ 146,17,0
120
+ 429,123,0
121
+ 111,188,0
122
+ 16,230,0
123
+ 427,130,0
124
+ 356,258,0
125
+ 68,285,0
126
+ 393,148,0
127
+ 374,262,0
128
+ 433,128,0
129
+ 76,179,0
130
+ 278,245,0
131
+ 405,184,0
132
+ 197,264,0
133
+ 435,291,0
134
+ 201,12,0
135
+ 70,132,0
136
+ 393,308,0
137
+ 431,125,0
138
+ 112,89,0
139
+ 433,288,0
140
+ 33,264,0
141
+ 422,310,0
142
+ 263,77,0
143
+ 90,308,1
144
+ 62,280,1
145
+ 306,324,0
146
+ 119,207,0
147
+ 89,303,0
148
+ 524,326,0
149
+ 54,272,1
150
+ 12,224,0
151
+ 197,262,0
152
+ 46,278,0
153
+ 92,292,0
154
+ 452,287,0
155
+ 67,128,0
156
+ 8,226,1
157
+ 11,229,1
158
+ 81,299,1
159
+ 388,65,0
160
+ 423,126,0
161
+ 386,309,0
162
+ 433,285,0
163
+ 448,130,0
164
+ 479,246,0
165
+ 446,130,0
166
+ 105,323,1
167
+ 449,123,0
168
+ 291,284,0
169
+ 286,120,0
170
+ 88,141,0
171
+ 448,139,0
172
+ 519,313,0
173
+ 510,327,0
174
+ 10,228,1
175
+ 52,251,0
176
+ 532,187,0
177
+ 104,211,0
178
+ 429,130,0
179
+ 66,260,0
180
+ 66,270,0
181
+ 379,181,0
182
+ 91,170,0
183
+ 427,140,0
184
+ 150,91,0
185
+ 43,251,0
186
+ 159,219,0
187
+ 92,307,0
188
+ 76,55,0
189
+ 15,34,0
190
+ 292,252,0
191
+ 24,242,1
192
+ 429,286,0
193
+ 18,61,0
194
+ 435,124,0
195
+ 7,225,1
196
+ 452,55,0
197
+ 405,175,0
198
+ 282,119,0
199
+ 287,278,0
200
+ 18,221,0
201
+ 256,77,0
202
+ 291,260,0
203
+ 444,140,0
204
+ 119,66,0
205
+ 438,132,0
206
+ 432,124,0
207
+ 449,125,0
208
+ 446,285,0
209
+ 72,137,0
210
+ 111,329,1
211
+ 40,258,1
212
+ 236,26,0
213
+ 12,230,1
214
+ 486,321,0
215
+ 292,264,0
216
+ 438,125,0
217
+ 45,270,0
218
+ 68,132,0
219
+ 468,103,0
220
+ 295,245,0
221
+ 427,288,0
222
+ 84,65,0
223
+ 393,307,0
224
+ 1,236,0
225
+ 461,214,0
226
+ 422,299,0
227
+ 68,140,0
228
+ 76,17,0
229
+ 256,241,0
230
+ 446,125,0
231
+ 15,12,0
232
+ 91,330,0
233
+ 77,295,1
234
+ 444,139,0
235
+ 32,262,0
236
+ 65,69,0
237
+ 16,234,1
238
+ 91,142,0
239
+ 1,221,0
240
+ 90,172,0
241
+ 67,139,0
242
+ 433,286,0
243
+ 70,131,0
244
+ 23,69,0
245
+ 0,133,0
246
+ 220,250,0
247
+ 422,307,0
248
+ 468,51,0
249
+ 388,302,0
250
+ 461,326,0
251
+ 26,244,1
252
+ 449,139,0
253
+ 444,288,0
254
+ 60,84,0
255
+ 67,123,0
256
+ 33,262,0
257
+ 67,133,0
258
+ 1,46,0
259
+ 345,265,0
260
+ 62,107,0
261
+ 19,5,0
262
+ 427,290,0
263
+ 205,187,0
264
+ 289,259,0
265
+ 257,102,0
266
+ 373,256,0
267
+ 329,260,0
268
+ 12,234,0
269
+ 67,290,0
270
+ 90,299,0
271
+ 23,241,1
272
+ 424,140,0
273
+ 140,23,0
274
+ 124,59,0
275
+ 14,232,1
276
+ 72,290,1
277
+ 89,299,0
278
+ 463,322,0
279
+ 72,140,0
280
+ 318,270,0
281
+ 88,306,1
282
+ 444,123,0
283
+ 439,129,0
284
+ 286,278,0
285
+ 410,175,0
286
+ 317,284,0
287
+ 108,214,0
288
+ 43,258,0
289
+ 413,65,0
290
+ 479,103,0
291
+ 155,22,0
292
+ 444,125,0
293
+ 321,259,0
294
+ 449,286,0
295
+ 453,187,0
296
+ 456,191,0
297
+ 494,60,0
298
+ 342,268,0
299
+ 159,236,0
300
+ 17,235,1
301
+ 67,132,0
302
+ 106,113,0
303
+ 437,290,0
304
+ 82,153,0
305
+ 307,254,0
306
+ 151,224,0
307
+ 326,119,0
308
+ 317,107,0
309
+ 309,268,0
310
+ 34,89,0
311
+ 448,132,0
312
+ 89,172,0
313
+ 39,93,0
314
+ 274,255,0
315
+ 427,128,0
316
+ 494,201,0
317
+ 3,221,1
318
+ 70,288,1
319
+ 463,202,0
320
+ 373,262,0
321
+ 112,69,0
322
+ 89,295,0
323
+ 168,30,0
324
+ 247,69,0
325
+ 43,278,0
326
+ 32,250,1
327
+ 425,124,0
328
+ 96,60,0
329
+ 46,264,1
330
+ 424,285,0
331
+ 438,131,0
332
+ 89,307,1
333
+ 39,242,0
334
+ 33,251,1
335
+ 235,89,0
336
+ 479,51,0
337
+ 410,330,0
338
+ 49,267,1
339
+ 501,326,0
340
+ 70,125,0
341
+ 89,148,0
342
+ 424,132,0
343
+ 329,270,0
344
+ 170,45,0
345
+ 69,287,1
346
+ 452,26,0
347
+ 381,149,0
348
+ 431,133,0
349
+ 396,330,0
350
+ 396,309,0
351
+ 406,302,0
352
+ 106,198,0
353
+ 427,285,0
354
+ 104,322,1
355
+ 119,122,0
356
+ 433,136,0
357
+ 131,24,0
358
+ 431,290,0
359
+ 446,123,0
360
+ 15,233,1
361
+ 422,303,0
362
+ 78,296,1
363
+ 181,245,0
364
+ 106,41,0
365
+ 72,103,0
366
+ 181,120,0
367
+ 110,328,1
368
+ 437,285,0
369
+ 221,258,0
370
+ 168,45,0
371
+ 135,30,0
372
+ 2,220,1
373
+ 429,288,0
374
+ 448,131,0
375
+ 457,145,0
376
+ 421,330,0
377
+ 480,321,0
378
+ 159,61,0
379
+ 428,289,0
380
+ 86,164,0
381
+ 147,64,0
382
+ 53,271,1
383
+ 373,268,0
384
+ 465,187,0
385
+ 446,140,0
386
+ 135,234,0
387
+ 433,125,0
388
+ 88,177,0
389
+ 309,242,0
390
+ 438,286,0
391
+ 66,255,0
392
+ 98,316,1
393
+ 393,303,0
394
+ 405,303,0
395
+ 437,288,0
396
+ 23,89,0
397
+ 119,255,0
398
+ 410,292,0
399
+ 424,290,0
400
+ 463,217,0
401
+ 290,260,0
402
+ 410,308,0
403
+ 448,290,0
404
+ 92,310,1
405
+ 431,131,0
406
+ 368,77,0
407
+ 68,130,0
408
+ 468,246,0
409
+ 72,139,0
410
+ 90,184,0
411
+ 86,304,1
412
+ 151,234,0
413
+ 19,237,1
414
+ 64,282,1
415
+ 448,285,0
416
+ 290,209,0
417
+ 88,300,0
418
+ 236,55,0
419
+ 67,125,0
420
+ 435,126,0
421
+ 498,26,0
422
+ 15,24,0
423
+ 167,33,0
424
+ 273,263,0
425
+ 522,321,0
426
+ 373,119,0
427
+ 135,224,0
428
+ 70,286,0
429
+ 69,134,0
430
+ 443,291,0
431
+ 71,137,0
432
+ 119,311,0
433
+ 43,261,1
434
+ 33,261,0
435
+ 35,253,1
436
+ 176,192,0
437
+ 52,270,1
438
+ 410,172,0
439
+ 6,234,0
440
+ 451,124,0
441
+ 498,316,0
442
+ 43,262,0
443
+ 140,64,0
444
+ 44,262,1
445
+ 410,148,0
446
+ 393,295,0
447
+ 442,137,0
448
+ 205,243,0
449
+ 46,270,0
450
+ 449,132,0
451
+ 90,292,0
452
+ 92,303,0
453
+ 428,127,0
454
+ 102,320,1
455
+ 437,125,0
456
+ 86,169,0
457
+ 440,289,0
458
+ 429,139,0
459
+ 428,138,0
460
+ 12,45,0
461
+ 429,133,0
462
+ 410,174,0
463
+ 255,95,0
464
+ 9,227,1
465
+ 405,310,0
466
+ 52,284,0
467
+ 89,310,0
468
+ 109,325,0
469
+ 424,286,0
470
+ 424,130,0
471
+ 167,64,0
472
+ 72,133,0
473
+ 393,184,0
474
+ 381,154,0
475
+ 422,172,0
476
+ 72,125,0
477
+ 92,172,0
478
+ 487,110,0
479
+ 423,16,0
480
+ 197,107,0
481
+ 94,186,0
482
+ 405,307,0
483
+ 82,150,0
484
+ 70,123,0
485
+ 152,59,0
486
+ 6,224,1
487
+ 76,246,0
488
+ 13,231,1
489
+ 241,263,0
490
+ 16,30,0
491
+ 437,140,0
492
+ 283,115,0
493
+ 151,230,0
494
+ 444,132,0
495
+ 110,316,0
496
+ 291,107,0
497
+ 151,30,0
498
+ 437,133,0
499
+ 301,263,0
500
+ 72,286,0
501
+ 7,17,0
502
+ 35,120,0
503
+ 319,75,0
504
+ 156,213,0
505
+ 442,127,0
506
+ 95,313,1
507
+ 4,222,1
508
+ 326,264,0
509
+ 492,186,0
510
+ 446,128,0
511
+ 269,265,0
512
+ 438,285,0
513
+ 424,133,0
514
+ 170,230,0
515
+ 240,84,0
516
+ 481,186,0
517
+ 449,136,0
518
+ 449,128,0
519
+ 0,218,1
520
+ 6,45,0
521
+ 431,130,0
522
+ 168,62,0
523
+ 43,250,0
524
+ 373,250,0
525
+ 67,285,1
526
+ 113,277,0
527
+ 273,270,0
528
+ 446,290,0
529
+ 405,309,0
530
+ 34,241,0
531
+ 441,129,0
532
+ 388,246,0
533
+ 438,123,0
534
+ 33,270,0
535
+ 451,291,0
536
+ 68,133,0
537
+ 287,262,0
538
+ 422,174,0
539
+ 410,307,0
540
+ 1,219,1
541
+ 29,247,1
542
+ 317,255,0
543
+ 381,167,0
544
+ 277,241,0
545
+ 45,260,0
546
+ 358,113,0
547
+ 92,175,0
548
+ 6,30,0
549
+ 205,261,0
550
+ 530,325,0
551
+ 90,307,0
552
+ 72,130,0
553
+ 468,267,0
554
+ 431,285,0
555
+ 274,284,0
556
+ 349,263,0
557
+ 247,89,0
558
+ 131,12,0
559
+ 459,74,0
560
+ 73,126,0
561
+ 52,250,0
562
+ 12,30,0
563
+ 425,291,0
564
+ 3,61,0
565
+ 386,170,0
566
+ 437,128,0
567
+ 379,169,0
valid.csv ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 410,309,0
2
+ 431,132,0
3
+ 28,151,0
4
+ 295,271,0
5
+ 46,251,0
6
+ 438,288,0
7
+ 373,178,0
8
+ 72,123,0
9
+ 133,232,0
10
+ 44,250,0
11
+ 437,131,0
12
+ 437,123,0
13
+ 91,309,1
14
+ 1,56,0
15
+ 170,30,0
16
+ 32,264,0
17
+ 427,131,0
18
+ 366,243,0
19
+ 109,327,1
20
+ 230,245,0
21
+ 168,224,0
22
+ 99,317,1
23
+ 290,270,0
24
+ 332,269,0
25
+ 356,261,0
26
+ 373,261,0
27
+ 80,298,1
28
+ 498,328,0
29
+ 366,109,0
30
+ 440,138,0
31
+ 512,47,0
32
+ 429,140,0
33
+ 90,310,0
34
+ 151,45,0
35
+ 223,249,0
36
+ 442,138,0
37
+ 5,223,1
38
+ 31,249,1
39
+ 14,229,0
40
+ 89,174,0
41
+ 168,234,0
42
+ 323,243,0
43
+ 63,281,1
44
+ 491,198,0
45
+ 145,26,0
46
+ 89,308,0
47
+ 429,136,0
48
+ 68,131,0
49
+ 103,321,1
50
+ 65,249,0
51
+ 72,128,0
52
+ 510,325,0
53
+ 96,201,0
54
+ 413,302,0
55
+ 119,146,0
56
+ 438,139,0
57
+ 51,269,1
58
+ 189,107,0
59
+ 437,286,0
60
+ 45,263,1
61
+ 68,128,0
62
+ 173,228,0
63
+ 410,299,0
64
+ 277,284,0
65
+ 274,242,0
66
+ 93,311,1
67
+ 449,288,0
68
+ 151,62,0
69
+ 220,256,0
70
+ 432,126,0
71
+ 448,123,0
72
+ 68,286,1
73
+ 34,252,1
74
+ 500,187,0
75
+ 3,46,0
76
+ 3,56,0
77
+ 67,131,0
78
+ 284,107,0
79
+ 133,17,0
80
+ 70,139,0
81
+ 92,295,0
82
+ 70,128,0
83
+ 444,128,0
84
+ 214,254,0
85
+ 4,52,0
86
+ 410,184,0
87
+ 433,140,0
88
+ 88,153,0
89
+ 431,139,0
90
+ 94,312,1
91
+ 66,284,1
92
+ 18,236,1
93
+ 431,286,0
94
+ 61,279,1
95
+ 444,133,0
96
+ 197,250,0
97
+ 232,47,0
98
+ 326,261,0
99
+ 427,286,0
100
+ 14,218,0
101
+ 506,191,0
102
+ 437,132,0
103
+ 18,219,0
104
+ 331,274,0
105
+ 524,214,0
106
+ 393,174,0
107
+ 444,130,0
108
+ 424,288,0
109
+ 386,158,0
110
+ 405,292,0
111
+ 104,217,0
112
+ 318,255,0
113
+ 490,188,0
114
+ 424,128,0
115
+ 92,299,0
116
+ 410,303,0
117
+ 25,243,1
118
+ 221,265,0
119
+ 431,136,0
120
+ 274,104,0
121
+ 276,13,0
122
+ 161,59,0
123
+ 449,140,0
124
+ 457,6,0
125
+ 24,257,0
126
+ 422,148,0
127
+ 167,23,0
128
+ 62,119,0
129
+ 446,132,0
130
+ 440,137,0
131
+ 162,4,0
132
+ 491,324,0
133
+ 68,125,0
134
+ 73,124,0
135
+ 277,89,0
136
+ 318,284,0
137
+ 478,289,0
138
+ 463,211,0
139
+ 348,84,0
140
+ 282,255,0
141
+ 76,294,1
142
+ 42,260,1
143
+ 450,129,0
144
+ 107,327,0
145
+ 119,215,0
146
+ 33,250,0
147
+ 225,22,0
148
+ 30,248,1
149
+ 449,133,0
150
+ 424,136,0
151
+ 43,93,0
152
+ 48,266,1
153
+ 490,329,0
154
+ 396,142,0
155
+ 464,152,0
156
+ 373,251,0
157
+ 424,131,0
158
+ 393,172,0
159
+ 531,121,0
160
+ 140,33,0
161
+ 104,202,0
162
+ 12,62,0
163
+ 33,260,0
164
+ 52,263,0
165
+ 106,190,0
166
+ 70,290,0
167
+ 273,258,0
168
+ 67,140,0
169
+ 201,221,0
170
+ 72,285,0
171
+ 168,230,0
172
+ 31,283,0
173
+ 427,136,0
174
+ 263,245,0
175
+ 272,242,0
176
+ 517,321,0
177
+ 449,131,0
178
+ 444,136,0
179
+ 143,27,0
180
+ 133,218,0
181
+ 427,123,0
182
+ 444,285,0
183
+ 329,245,0
184
+ 444,286,0
185
+ 91,158,0
186
+ 342,242,0
187
+ 39,258,0
188
+ 220,107,0
189
+ 197,261,0
190
+ 448,286,0