File size: 145,225 Bytes
e841b45 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 | {
"Definition": [
"Make a judgement on the sentiment of the given text.\n"
],
"Positive Examples": [],
"Negative Examples": [],
"Instances": [
{
"input": "Text: stealing harvard aspires to comedic grand larceny but stands convicted of nothing more than petty theft of your time . ",
"output": "Bad"
},
{
"input": "Text: it 's not the ultimate depression-era gangster movie . ",
"output": "Bad"
},
{
"input": "Text: scorsese does n't give us a character worth giving a damn about . ",
"output": "Bad"
},
{
"input": "Text: ( director ) o'fallon manages to put some lovely pictures up on the big screen , but his skill at telling a story -- he also contributed to the screenplay -- falls short . ",
"output": "Bad"
},
{
"input": "Text: this movie is something of an impostor itself , stretching and padding its material in a blur of dead ends and distracting camera work . ",
"output": "Bad"
},
{
"input": "Text: davis ... is so enamored of her own creation that she ca n't see how insufferable the character is . ",
"output": "Bad"
},
{
"input": "Text: ... takes the beauty of baseball and melds it with a story that could touch anyone regardless of their familiarity with the sport ",
"output": "Good"
},
{
"input": "Text: overall very good for what it 's trying to do . ",
"output": "Good"
},
{
"input": "Text: people cinema at its finest . ",
"output": "Good"
},
{
"input": "Text: director andrew niccol ... demonstrates a wry understanding of the quirks of fame . ",
"output": "Good"
},
{
"input": "Text: building slowly and subtly , the film , sporting a breezy spontaneity and realistically drawn characterizations , develops into a significant character study that is both moving and wise . ",
"output": "Good"
},
{
"input": "Text: so much facile technique , such cute ideas , so little movie . ",
"output": "Good"
},
{
"input": "Text: a lean , deftly shot , well-acted , weirdly retro thriller that recalls a raft of '60s and '70s european-set spy pictures . ",
"output": "Good"
},
{
"input": "Text: for this reason and this reason only -- the power of its own steadfast , hoity-toity convictions -- chelsea walls deserves a medal . ",
"output": "Good"
},
{
"input": "Text: there 's enough melodrama in this magnolia primavera to make pta proud yet director muccino 's characters are less worthy of puccini than they are of daytime television . ",
"output": "Bad"
},
{
"input": "Text: manages to transcend the sex , drugs and show-tunes plot into something far richer . ",
"output": "Good"
},
{
"input": "Text: cool ? ",
"output": "Good"
},
{
"input": "Text: in execution , this clever idea is far less funny than the original , killers from space . ",
"output": "Bad"
},
{
"input": "Text: crackerjack entertainment -- nonstop romance , music , suspense and action . ",
"output": "Good"
},
{
"input": "Text: the band 's courage in the face of official repression is inspiring , especially for aging hippies ( this one included ) . ",
"output": "Good"
},
{
"input": "Text: gives you the steady pulse of life in a beautiful city viewed through the eyes of a character who , in spite of tragic loss and increasing decrepitude , knows in his bones that he is one of the luckiest men alive . ",
"output": "Good"
},
{
"input": "Text: it 's one heck of a character study -- not of hearst or davies but of the unique relationship between them . ",
"output": "Good"
},
{
"input": "Text: a sometimes tedious film . ",
"output": "Bad"
},
{
"input": "Text: a science-fiction pastiche so lacking in originality that if you stripped away its inspirations there would be precious little left . ",
"output": "Bad"
},
{
"input": "Text: just not campy enough ",
"output": "Bad"
},
{
"input": "Text: just as moving , uplifting and funny as ever . ",
"output": "Good"
},
{
"input": "Text: despite the evocative aesthetics evincing the hollow state of modern love life , the film never percolates beyond a monotonous whine . ",
"output": "Bad"
},
{
"input": "Text: a tv style murder mystery with a few big screen moments ( including one that seems to be made for a different film altogether ) . ",
"output": "Bad"
},
{
"input": "Text: an operatic , sprawling picture that 's entertainingly acted , magnificently shot and gripping enough to sustain most of its 170-minute length . ",
"output": "Good"
},
{
"input": "Text: we root for ( clara and paul ) , even like them , though perhaps it 's an emotion closer to pity . ",
"output": "Good"
},
{
"input": "Text: there is very little dread or apprehension , and though i like the creepy ideas , they are not executed with anything more than perfunctory skill . ",
"output": "Bad"
},
{
"input": "Text: ramsay , as in ratcatcher , remains a filmmaker with an acid viewpoint and a real gift for teasing chilly poetry out of lives and settings that might otherwise seem drab and sordid . ",
"output": "Good"
},
{
"input": "Text: ( grant 's ) bumbling magic takes over the film , and it turns out to be another winning star vehicle . ",
"output": "Good"
},
{
"input": "Text: we have n't seen such hilarity since say it is n't so ! ",
"output": "Good"
},
{
"input": "Text: portentous and pretentious , the weight of water is appropriately titled , given the heavy-handedness of it drama . ",
"output": "Bad"
},
{
"input": "Text: light years / several warp speeds / levels and levels of dilithium crystals better than the pitiful insurrection . ",
"output": "Good"
},
{
"input": "Text: it wants to tweak them with a taste of tangy new humor . ",
"output": "Good"
},
{
"input": "Text: for all its impressive craftsmanship , and despite an overbearing series of third-act crescendos , lily chou-chou never really builds up a head of emotional steam . ",
"output": "Bad"
},
{
"input": "Text: a study in shades of gray , offering itself up in subtle plot maneuvers ... ",
"output": "Good"
},
{
"input": "Text: the terrific and bewilderingly underrated campbell scott gives a star performance that is nothing short of mesmerizing . ",
"output": "Good"
},
{
"input": "Text: a poignant , artfully crafted meditation on mortality . ",
"output": "Good"
},
{
"input": "Text: having had the good sense to cast actors who are , generally speaking , adored by the movie-going public , khouri then gets terrific performances from them all . ",
"output": "Good"
},
{
"input": "Text: every dance becomes about seduction , where backstabbing and betrayals are celebrated , and sex is currency . ",
"output": "Bad"
},
{
"input": "Text: it 's a much more emotional journey than what shyamalan has given us in his past two movies , and gibson , stepping in for bruce willis , is the perfect actor to take us on the trip . ",
"output": "Good"
},
{
"input": "Text: it feels like an after-school special gussied up with some fancy special effects , and watching its rote plot points connect is about as exciting as gazing at an egg timer for 93 minutes . ",
"output": "Bad"
},
{
"input": "Text: exquisitely nuanced in mood tics and dialogue , this chamber drama is superbly acted by the deeply appealing veteran bouquet and the chilling but quite human berling . ",
"output": "Good"
},
{
"input": "Text: a romantic comedy enriched by a sharp eye for manners and mores . ",
"output": "Good"
},
{
"input": "Text: ... mafia , rap stars and hood rats butt their ugly heads in a regurgitation of cinematic violence that gives brutal birth to an unlikely , but likable , hero . ' ",
"output": "Good"
},
{
"input": "Text: feature debuter d.j. caruso directs a crack ensemble cast , bringing screenwriter tony gayton 's narcotics noir to life . ",
"output": "Good"
},
{
"input": "Text: as surreal as a dream and as detailed as a photograph , as visually dexterous as it is at times imaginatively overwhelming . ",
"output": "Good"
},
{
"input": "Text: nothing is sacred in this gut-buster . ",
"output": "Bad"
},
{
"input": "Text: it is amusing , and that 's all it needs to be . ",
"output": "Good"
},
{
"input": "Text: i 'd have to say the star and director are the big problems here . ",
"output": "Bad"
},
{
"input": "Text: rarely has so much money delivered so little entertainment . ",
"output": "Bad"
},
{
"input": "Text: nervous breakdowns are not entertaining . ",
"output": "Bad"
},
{
"input": "Text: mattei is tiresomely grave and long-winded , as if circularity itself indicated profundity . ",
"output": "Bad"
},
{
"input": "Text: it 's a charming and often affecting journey . ",
"output": "Good"
},
{
"input": "Text: offers very little genuine romance and even fewer laughs ... a sad sitcom of a movie , largely devoid of charm . ",
"output": "Bad"
},
{
"input": "Text: every nanosecond of the the new guy reminds you that you could be doing something else far more pleasurable . ",
"output": "Bad"
},
{
"input": "Text: it moves quickly , adroitly , and without fuss ; it does n't give you time to reflect on the inanity -- and the cold war datedness -- of its premise . ",
"output": "Good"
},
{
"input": "Text: for all its technical virtuosity , the film is so mired in juvenile and near-xenophobic pedagogy that it 's enough to make one pine for the day when godard can no longer handle the rigors of filmmaking . ",
"output": "Bad"
},
{
"input": "Text: it appears that something has been lost in the translation to the screen . ",
"output": "Bad"
},
{
"input": "Text: while ( hill ) has learned new tricks , the tricks alone are not enough to salvage this lifeless boxing film . ",
"output": "Bad"
},
{
"input": "Text: his last movie was poetically romantic and full of indelible images , but his latest has nothing going for it . ",
"output": "Bad"
},
{
"input": "Text: like you could n't smell this turkey rotting from miles away . ",
"output": "Bad"
},
{
"input": "Text: determined to be fun , and bouncy , with energetic musicals , the humor did n't quite engage this adult . ",
"output": "Bad"
},
{
"input": "Text: if your taste runs to ` difficult ' films you absolutely ca n't miss it . ",
"output": "Good"
},
{
"input": "Text: partway through watching this saccharine , easter-egg-colored concoction , you realize that it is made up of three episodes of a rejected tv show . ",
"output": "Bad"
},
{
"input": "Text: a by-the-numbers patient/doctor pic that covers all the usual ground ",
"output": "Bad"
},
{
"input": "Text: an exhilarating futuristic thriller-noir , minority report twists the best of technology around a gripping story , delivering a riveting , pulse intensifying escapist adventure of the first order ",
"output": "Good"
},
{
"input": "Text: the heavy-handed film is almost laughable as a consequence . ",
"output": "Bad"
},
{
"input": "Text: looks and feels like a project better suited for the small screen . ",
"output": "Bad"
},
{
"input": "Text: macdowell , whose wifty southern charm has anchored lighter affairs ... brings an absolutely riveting conviction to her role . ",
"output": "Good"
},
{
"input": "Text: smart , provocative and blisteringly funny . ",
"output": "Good"
},
{
"input": "Text: expect the same-old , lame-old slasher nonsense , just with different scenery . ",
"output": "Bad"
},
{
"input": "Text: it 's too self-important and plodding to be funny , and too clipped and abbreviated to be an epic . ",
"output": "Bad"
},
{
"input": "Text: warm water under a red bridge is a quirky and poignant japanese film that explores the fascinating connections between women , water , nature , and sexuality . ",
"output": "Good"
},
{
"input": "Text: here 's yet another studio horror franchise mucking up its storyline with glitches casual fans could correct in their sleep . ",
"output": "Bad"
},
{
"input": "Text: the movie , directed by mick jackson , leaves no cliche unturned , from the predictable plot to the characters straight out of central casting . ",
"output": "Bad"
},
{
"input": "Text: the film contains no good jokes , no good scenes , barely a moment when carvey 's saturday night live-honed mimicry rises above the level of embarrassment . ",
"output": "Bad"
},
{
"input": "Text: the draw ( for `` big bad love '' ) is a solid performance by arliss howard . ",
"output": "Good"
},
{
"input": "Text: a hamfisted romantic comedy that makes our girl the hapless facilitator of an extended cheap shot across the mason-dixon line . ",
"output": "Bad"
},
{
"input": "Text: it 's not original , and , robbed of the element of surprise , it does n't have any huge laughs in its story of irresponsible cops who love to play pranks . ",
"output": "Bad"
},
{
"input": "Text: despite all evidence to the contrary , this clunker has somehow managed to pose as an actual feature movie , the kind that charges full admission and gets hyped on tv and purports to amuse small children and ostensible adults . ",
"output": "Bad"
},
{
"input": "Text: the problem with this film is that it lacks focus . ",
"output": "Bad"
},
{
"input": "Text: k-19 exploits our substantial collective fear of nuclear holocaust to generate cheap hollywood tension . ",
"output": "Bad"
},
{
"input": "Text: a better title , for all concerned , might be swept under the rug . ",
"output": "Bad"
},
{
"input": "Text: there 's not enough here to justify the almost two hours . ",
"output": "Bad"
},
{
"input": "Text: ... a story we have n't seen on the big screen before , and it 's a story that we as americans , and human beings , should know . ",
"output": "Good"
},
{
"input": "Text: a gorgeous , witty , seductive movie . ",
"output": "Good"
},
{
"input": "Text: a subject like this should inspire reaction in its audience ; the pianist does not . ",
"output": "Bad"
},
{
"input": "Text: the movie 's relatively simple plot and uncomplicated morality play well with the affable cast . ",
"output": "Good"
},
{
"input": "Text: the talented and clever robert rodriguez perhaps put a little too much heart into his first film and did n't reserve enough for his second . ",
"output": "Bad"
},
{
"input": "Text: there are plot holes big enough for shamu the killer whale to swim through . ",
"output": "Bad"
},
{
"input": "Text: like watching a dress rehearsal the week before the show goes up : everything 's in place but something 's just a little off-kilter . ",
"output": "Bad"
},
{
"input": "Text: this is a shameless sham , calculated to cash in on the popularity of its stars . ",
"output": "Bad"
},
{
"input": "Text: what 's surprising about full frontal is that despite its overt self-awareness , parts of the movie still manage to break past the artifice and thoroughly engage you . ",
"output": "Good"
},
{
"input": "Text: the cold turkey would 've been a far better title . ",
"output": "Bad"
},
{
"input": "Text: the movie understands like few others how the depth and breadth of emotional intimacy give the physical act all of its meaning and most of its pleasure . ",
"output": "Good"
},
{
"input": "Text: if you believe any of this , i can make you a real deal on leftover enron stock that will double in value a week from friday . ",
"output": "Bad"
},
{
"input": "Text: from the opening scenes , it 's clear that all about the benjamins is a totally formulaic movie . ",
"output": "Bad"
},
{
"input": "Text: the movie 's accumulated force still feels like an ugly knot tightening in your stomach . ",
"output": "Bad"
},
{
"input": "Text: the script kicks in , and mr. hartley 's distended pace and foot-dragging rhythms follow . ",
"output": "Bad"
},
{
"input": "Text: vera 's three actors -- mollà , gil and bardem -- excel in insightful , empathetic performances . ",
"output": "Good"
},
{
"input": "Text: ... a magnificent drama well worth tracking down . ",
"output": "Good"
},
{
"input": "Text: the action switches between past and present , but the material link is too tenuous to anchor the emotional connections that purport to span a 125-year divide . ",
"output": "Bad"
},
{
"input": "Text: the film tunes into a grief that could lead a man across centuries . ",
"output": "Good"
},
{
"input": "Text: i do n't mind having my heartstrings pulled , but do n't treat me like a fool . ",
"output": "Bad"
},
{
"input": "Text: every time you look , sweet home alabama is taking another bummer of a wrong turn . ",
"output": "Bad"
},
{
"input": "Text: all that 's missing is the spontaneity , originality and delight . ",
"output": "Bad"
},
{
"input": "Text: this tenth feature is a big deal , indeed -- at least the third-best , and maybe even a notch above the previous runner-up , nicholas meyer 's star trek vi : the undiscovered country . ",
"output": "Good"
},
{
"input": "Text: the subtle strength of `` elling '' is that it never loses touch with the reality of the grim situation . ",
"output": "Good"
},
{
"input": "Text: binoche makes it interesting trying to find out . ",
"output": "Good"
},
{
"input": "Text: a must-see for the david mamet enthusiast and for anyone who appreciates intelligent , stylish moviemaking . ",
"output": "Good"
},
{
"input": "Text: a giggle a minute . ",
"output": "Good"
},
{
"input": "Text: uses high comedy to evoke surprising poignance . ",
"output": "Good"
},
{
"input": "Text: sade is an engaging look at the controversial eponymous and fiercely atheistic hero . ",
"output": "Good"
},
{
"input": "Text: villeneuve spends too much time wallowing in bibi 's generic angst ( there are a lot of shots of her gazing out windows ) . ",
"output": "Bad"
},
{
"input": "Text: even if you do n't think ( kissinger 's ) any more guilty of criminal activity than most contemporary statesmen , he 'd sure make a courtroom trial great fun to watch . ",
"output": "Good"
},
{
"input": "Text: ultimately feels empty and unsatisfying , like swallowing a communion wafer without the wine . ",
"output": "Bad"
},
{
"input": "Text: it 's made with deftly unsettling genre flair . ",
"output": "Good"
},
{
"input": "Text: it 's dumb , but more importantly , it 's just not scary . ",
"output": "Bad"
},
{
"input": "Text: the continued good chemistry between carmen and juni is what keeps this slightly disappointing sequel going , with enough amusing banter -- blessedly curse-free -- to keep both kids and parents entertained . ",
"output": "Good"
},
{
"input": "Text: it 's a lovely film with lovely performances by buy and accorsi . ",
"output": "Good"
},
{
"input": "Text: if you dig on david mamet 's mind tricks ... rent this movie and enjoy ! ",
"output": "Good"
},
{
"input": "Text: nothing 's at stake , just a twisty double-cross you can smell a mile away -- still , the derivative nine queens is lots of fun . ",
"output": "Good"
},
{
"input": "Text: jose campanella delivers a loosely autobiographical story brushed with sentimentality but brimming with gentle humor , bittersweet pathos , and lyric moments that linger like snapshots of memory . ",
"output": "Good"
},
{
"input": "Text: altogether , this is successful as a film , while at the same time being a most touching reconsideration of the familiar masterpiece . ",
"output": "Good"
},
{
"input": "Text: the only excitement comes when the credits finally roll and you get to leave the theater . ",
"output": "Bad"
},
{
"input": "Text: one of the more irritating cartoons you will see this , or any , year . ",
"output": "Bad"
},
{
"input": "Text: a by-the-numbers effort that wo n't do much to enhance the franchise . ",
"output": "Bad"
},
{
"input": "Text: the structure the film takes may find matt damon and ben affleck once again looking for residuals as this officially completes a good will hunting trilogy that was never planned . ",
"output": "Good"
},
{
"input": "Text: i do n't think i laughed out loud once . ",
"output": "Bad"
},
{
"input": "Text: the magic of the film lies not in the mysterious spring but in the richness of its performances . ",
"output": "Good"
},
{
"input": "Text: enormously entertaining for moviegoers of any age . ",
"output": "Good"
},
{
"input": "Text: my thoughts were focused on the characters . ",
"output": "Good"
},
{
"input": "Text: affleck and jackson are good sparring partners . ",
"output": "Good"
},
{
"input": "Text: a delectable and intriguing thriller filled with surprises , read my lips is an original . ",
"output": "Good"
},
{
"input": "Text: too restrained to be a freak show , too mercenary and obvious to be cerebral , too dull and pretentious to be engaging ... the isle defies an easy categorization . ",
"output": "Bad"
},
{
"input": "Text: intriguing documentary which is emotionally diluted by focusing on the story 's least interesting subject . ",
"output": "Good"
},
{
"input": "Text: it 's so mediocre , despite the dynamic duo on the marquee , that we just ca n't get no satisfaction . ",
"output": "Bad"
},
{
"input": "Text: ( chaiken 's ) talent lies in an evocative , accurate observation of a distinctive milieu and in the lively , convincing dialogue she creates for her characters . ",
"output": "Good"
},
{
"input": "Text: trademark american triteness and simplicity are tossed out the window with the intelligent french drama that deftly explores the difficult relationship between a father and son . ",
"output": "Good"
},
{
"input": "Text: it 's so good that its relentless , polished wit can withstand not only inept school productions , but even oliver parker 's movie adaptation . ",
"output": "Good"
},
{
"input": "Text: it 's hard to imagine alan arkin being better than he is in this performance . ",
"output": "Good"
},
{
"input": "Text: teen movies have really hit the skids . ",
"output": "Bad"
},
{
"input": "Text: ( næs ) directed the stage version of elling , and gets fine performances from his two leads who originated the characters on stage . ",
"output": "Good"
},
{
"input": "Text: bogdanovich tantalizes by offering a peep show into the lives of the era 's creme de la celluloid . ",
"output": "Good"
},
{
"input": "Text: it confirms fincher 's status as a film maker who artfully bends technical know-how to the service of psychological insight . ",
"output": "Good"
},
{
"input": "Text: a movie that successfully crushes a best selling novel into a timeframe that mandates that you avoid the godzilla sized soda . ",
"output": "Good"
},
{
"input": "Text: a grimly competent and stolid and earnest military courtroom drama . ",
"output": "Good"
},
{
"input": "Text: a movie with a real anarchic flair . ",
"output": "Good"
},
{
"input": "Text: a giggle-inducing comedy with snappy dialogue and winning performances by an unlikely team of oscar-winners : susan sarandon and goldie hawn . ",
"output": "Good"
},
{
"input": "Text: the lower your expectations , the more you 'll enjoy it . ",
"output": "Bad"
},
{
"input": "Text: whaley 's determination to immerse you in sheer , unrelenting wretchedness is exhausting . ",
"output": "Bad"
},
{
"input": "Text: zhang ... has done an amazing job of getting realistic performances from his mainly nonprofessional cast . ",
"output": "Good"
},
{
"input": "Text: try as i may , i ca n't think of a single good reason to see this movie , even though everyone in my group extemporaneously shouted , ` thank you ! ' ",
"output": "Bad"
},
{
"input": "Text: for the most part , it 's a work of incendiary genius , steering clear of knee-jerk reactions and quick solutions . ",
"output": "Good"
},
{
"input": "Text: shaky close-ups of turkey-on-rolls , stubbly chins , liver spots , red noses and the filmmakers new bobbed do draw easy chuckles but lead nowhere . ",
"output": "Bad"
},
{
"input": "Text: because of an unnecessary and clumsy last scene , ` swimfan ' left me with a very bad feeling . ",
"output": "Bad"
},
{
"input": "Text: comes off like a rejected abc afterschool special , freshened up by the dunce of a screenwriting 101 class . ",
"output": "Bad"
},
{
"input": "Text: it 's a stunning lyrical work of considerable force and truth . ",
"output": "Good"
},
{
"input": "Text: it 's everything you do n't go to the movies for . ",
"output": "Bad"
},
{
"input": "Text: and when you 're talking about a slapstick comedy , that 's a pretty big problem . ",
"output": "Bad"
},
{
"input": "Text: vera 's technical prowess ends up selling his film short ; he smoothes over hard truths even as he uncovers them . ",
"output": "Bad"
},
{
"input": "Text: the movie is what happens when you blow up small potatoes to 10 times their natural size , and it ai n't pretty . ",
"output": "Bad"
},
{
"input": "Text: as the latest bid in the tv-to-movie franchise game , i spy makes its big-screen entry with little of the nervy originality of its groundbreaking small-screen progenitor . ",
"output": "Bad"
},
{
"input": "Text: writer-director 's mehta 's effort has tons of charm and the whimsy is in the mixture , the intoxicating masala , of cultures and film genres . ",
"output": "Good"
},
{
"input": "Text: the so-inept - it 's - surreal dubbing ( featuring the voices of glenn close , regis philbin and breckin meyer ) brings back memories of cheesy old godzilla flicks . ",
"output": "Bad"
},
{
"input": "Text: the plot convolutions ultimately add up to nothing more than jerking the audience 's chain . ",
"output": "Bad"
},
{
"input": "Text: if you 're hard up for raunchy college humor , this is your ticket right here . ",
"output": "Good"
},
{
"input": "Text: the humor is forced and heavy-handed , and occasionally simply unpleasant . ",
"output": "Bad"
},
{
"input": "Text: if the movie succeeds in instilling a wary sense of ` there but for the grace of god , ' it is far too self-conscious to draw you deeply into its world . ",
"output": "Bad"
},
{
"input": "Text: candid and comfortable ; a film that deftly balances action and reflection as it lets you grasp and feel the passion others have for their work . ",
"output": "Good"
},
{
"input": "Text: the film tries too hard to be funny and tries too hard to be hip . ",
"output": "Bad"
},
{
"input": "Text: it 's one of those baseball pictures where the hero is stoic , the wife is patient , the kids are as cute as all get-out and the odds against success are long enough to intimidate , but short enough to make a dream seem possible . ",
"output": "Good"
},
{
"input": "Text: a dumb movie with dumb characters doing dumb things and you have to be really dumb not to see where this is going . ",
"output": "Bad"
},
{
"input": "Text: ( a ) shapeless blob of desperate entertainment . ",
"output": "Bad"
},
{
"input": "Text: not far beneath the surface , this reconfigured tale asks disturbing questions about those things we expect from military epics . ",
"output": "Good"
},
{
"input": "Text: a film about a young man finding god that is accessible and touching to the marrow . ",
"output": "Good"
},
{
"input": "Text: the performances take the movie to a higher level . ",
"output": "Good"
},
{
"input": "Text: a coarse and stupid gross-out . ",
"output": "Bad"
},
{
"input": "Text: stealing harvard is evidence that the farrelly bros. -- peter and bobby -- and their brand of screen comedy are wheezing to an end , along with green 's half-hearted movie career . ",
"output": "Bad"
},
{
"input": "Text: corpus collosum -- while undeniably interesting -- wore out its welcome well before the end credits rolled about 45 minutes in . ",
"output": "Bad"
},
{
"input": "Text: holm ... embodies the character with an effortlessly regal charisma . ",
"output": "Good"
},
{
"input": "Text: yakusho and shimizu ... create engaging characterizations in imamura 's lively and enjoyable cultural mix . ",
"output": "Good"
},
{
"input": "Text: fresnadillo 's dark and jolting images have a way of plying into your subconscious like the nightmare you had a week ago that wo n't go away . ",
"output": "Good"
},
{
"input": "Text: perceptive in its vision of nascent industrialized world politics as a new art form , but far too clunky , didactic and saddled with scenes that seem simply an ill fit for this movie . ",
"output": "Bad"
},
{
"input": "Text: jones ... does offer a brutal form of charisma . ",
"output": "Good"
},
{
"input": "Text: pumpkin takes an admirable look at the hypocrisy of political correctness , but it does so with such an uneven tone that you never know when humor ends and tragedy begins . ",
"output": "Bad"
},
{
"input": "Text: verbinski implements every hack-artist trick to give us the ooky-spookies . ",
"output": "Bad"
},
{
"input": "Text: a string of rehashed sight gags based in insipid vulgarity . ",
"output": "Bad"
},
{
"input": "Text: more romantic , more emotional and ultimately more satisfying than the teary-eyed original . ",
"output": "Good"
},
{
"input": "Text: by candidly detailing the politics involved in the creation of an extraordinary piece of music , ( jones ) calls our attention to the inherent conflict between commerce and creativity . ",
"output": "Good"
},
{
"input": "Text: majidi is an unconventional storyteller , capable of finding beauty in the most depressing places . ",
"output": "Good"
},
{
"input": "Text: further proof that the epicenter of cool , beautiful , thought-provoking foreign cinema is smack-dab in the middle of dubya 's axis of evil . ",
"output": "Good"
},
{
"input": "Text: yes , dull . ",
"output": "Bad"
},
{
"input": "Text: my big fat greek wedding uses stereotypes in a delightful blend of sweet romance and lovingly dished out humor . ",
"output": "Good"
},
{
"input": "Text: sacrifices the value of its wealth of archival foot-age with its less-than-objective stance . ",
"output": "Bad"
},
{
"input": "Text: for anyone unfamiliar with pentacostal practices in general and theatrical phenomenon of hell houses in particular , it 's an eye-opener . ",
"output": "Good"
},
{
"input": "Text: ( d ) oes n't bother being as cloying or preachy as equivalent evangelical christian movies -- maybe the filmmakers know that the likely audience will already be among the faithful . ",
"output": "Good"
},
{
"input": "Text: for movie lovers as well as opera lovers , tosca is a real treat . ",
"output": "Good"
},
{
"input": "Text: dragonfly has no atmosphere , no tension -- nothing but costner , flailing away . ",
"output": "Bad"
},
{
"input": "Text: taylor appears to have blown his entire budget on soundtrack rights and had nothing left over for jokes . ",
"output": "Bad"
},
{
"input": "Text: kinnear does n't aim for our sympathy , but rather delivers a performance of striking skill and depth . ",
"output": "Good"
},
{
"input": "Text: the chateau cleverly probes the cross-cultural differences between gauls and yanks . ",
"output": "Good"
},
{
"input": "Text: i can take infantile humor ... but this is the sort of infantile that makes you wonder about changing the director and writer 's diapers . ",
"output": "Bad"
},
{
"input": "Text: there is n't nearly enough fun here , despite the presence of some appealing ingredients . ",
"output": "Bad"
},
{
"input": "Text: pacino is brilliant as the sleep-deprived dormer , his increasing weariness as much existential as it is physical . ",
"output": "Good"
},
{
"input": "Text: suffocated by its fussy script and uptight characters , this musty adaptation is all the more annoying since it 's been packaged and sold back to us by hollywood . ",
"output": "Bad"
},
{
"input": "Text: with virtually no interesting elements for an audience to focus on , chelsea walls is a triple-espresso endurance challenge . ",
"output": "Bad"
},
{
"input": "Text: the movie is n't just hilarious : it 's witty and inventive , too , and in hindsight , it is n't even all that dumb . ",
"output": "Good"
},
{
"input": "Text: although german cooking does not come readily to mind when considering the world 's best cuisine , mostly martha could make deutchland a popular destination for hungry tourists . ",
"output": "Good"
},
{
"input": "Text: a quiet treasure -- a film to be savored . ",
"output": "Good"
},
{
"input": "Text: add yet another hat to a talented head , clooney 's a good director . ",
"output": "Good"
},
{
"input": "Text: do not see this film . ",
"output": "Bad"
},
{
"input": "Text: what really makes it special is that it pulls us into its world , gives us a hero whose suffering and triumphs we can share , surrounds him with interesting characters and sends us out of the theater feeling we 've shared a great adventure . ",
"output": "Good"
},
{
"input": "Text: the story and structure are well-honed . ",
"output": "Good"
},
{
"input": "Text: american chai encourages rueful laughter at stereotypes only an indian-american would recognize . ",
"output": "Bad"
},
{
"input": "Text: escaping the studio , piccoli is warmly affecting and so is this adroitly minimalist movie . ",
"output": "Good"
},
{
"input": "Text: i 'll bet the video game is a lot more fun than the film . ",
"output": "Bad"
},
{
"input": "Text: one long string of cliches . ",
"output": "Bad"
},
{
"input": "Text: an exquisitely crafted and acted tale . ",
"output": "Good"
},
{
"input": "Text: a delightful coming-of-age story . ",
"output": "Good"
},
{
"input": "Text: dull , lifeless , and amateurishly assembled . ",
"output": "Bad"
},
{
"input": "Text: it 's hard to like a film about a guy who is utterly unlikeable , and shiner , starring michael caine as an aging british boxing promoter desperate for a taste of fame and fortune , is certainly that . ",
"output": "Bad"
},
{
"input": "Text: ( lawrence bounces ) all over the stage , dancing , running , sweating , mopping his face and generally displaying the wacky talent that brought him fame in the first place . ",
"output": "Good"
},
{
"input": "Text: the lion king was a roaring success when it was released eight years ago , but on imax it seems better , not just bigger . ",
"output": "Good"
},
{
"input": "Text: i 'm just too bored to care . ",
"output": "Bad"
},
{
"input": "Text: so unremittingly awful that labeling it a dog probably constitutes cruelty to canines . ",
"output": "Bad"
},
{
"input": "Text: puts a human face on a land most westerners are unfamiliar with . ",
"output": "Good"
},
{
"input": "Text: his comedy premises are often hackneyed or just plain crude , calculated to provoke shocked laughter , without following up on a deeper level . ",
"output": "Bad"
},
{
"input": "Text: there 's really only one good idea in this movie , but the director runs with it and presents it with an unforgettable visual panache . ",
"output": "Good"
},
{
"input": "Text: the experience of going to a film festival is a rewarding one ; the experiencing of sampling one through this movie is not . ",
"output": "Bad"
},
{
"input": "Text: so devoid of any kind of intelligible story that it makes films like xxx and collateral damage seem like thoughtful treatises ",
"output": "Bad"
},
{
"input": "Text: woody allen 's latest is an ambling , broad comedy about all there is to love -- and hate -- about the movie biz . ",
"output": "Good"
},
{
"input": "Text: as the two leads , lathan and diggs are charming and have chemistry both as friends and lovers . ",
"output": "Good"
},
{
"input": "Text: aside from minor tinkering , this is the same movie you probably loved in 1994 , except that it looks even better . ",
"output": "Good"
},
{
"input": "Text: nicks , seemingly uncertain what 's going to make people laugh , runs the gamut from stale parody to raunchy sex gags to formula romantic comedy . ",
"output": "Bad"
},
{
"input": "Text: my reaction in a word : disappointment . ",
"output": "Bad"
},
{
"input": "Text: but what are adults doing in the theater at all ? ",
"output": "Bad"
},
{
"input": "Text: a moody , multi-dimensional love story and sci-fi mystery , solaris is a thought-provoking , haunting film that allows the seeds of the imagination to germinate . ",
"output": "Good"
},
{
"input": "Text: it takes a certain kind of horror movie to qualify as ` worse than expected , ' but ghost ship somehow manages to do exactly that . ",
"output": "Bad"
},
{
"input": "Text: samira makhmalbaf 's new film blackboards is much like the ethos of a stream of consciousness , although , it 's unfortunate for the viewer that the thoughts and reflections coming through are torpid and banal ",
"output": "Bad"
},
{
"input": "Text: it 's too bad that the helping hand he uses to stir his ingredients is also a heavy one . ",
"output": "Bad"
},
{
"input": "Text: an interesting story with a pertinent ( cinematically unique ) message , told fairly well and scored to perfection , i found myself struggling to put my finger on that elusive `` missing thing . '' ",
"output": "Good"
},
{
"input": "Text: good old-fashioned slash-and-hack is back ! ",
"output": "Good"
},
{
"input": "Text: dazzles with its fully-written characters , its determined stylishness ( which always relates to characters and story ) and johnny dankworth 's best soundtrack in years . ",
"output": "Good"
},
{
"input": "Text: audrey tatou has a knack for picking roles that magnify her outrageous charm , and in this literate french comedy , she 's as morning-glory exuberant as she was in amélie . ",
"output": "Good"
},
{
"input": "Text: you will emerge with a clearer view of how the gears of justice grind on and the death report comes to share airtime alongside the farm report . ",
"output": "Good"
},
{
"input": "Text: characters still need to function according to some set of believable and comprehensible impulses , no matter how many drugs they do or how much artistic license avary employs . ",
"output": "Bad"
},
{
"input": "Text: the longer the movie goes , the worse it gets , but it 's actually pretty good in the first few minutes . ",
"output": "Bad"
},
{
"input": "Text: liotta put on 30 pounds for the role , and has completely transformed himself from his smooth , goodfellas image . ",
"output": "Good"
},
{
"input": "Text: sit through this one , and you wo n't need a magic watch to stop time ; your dvd player will do it for you . ",
"output": "Bad"
},
{
"input": "Text: a warm , funny , engaging film . ",
"output": "Good"
},
{
"input": "Text: a big , gorgeous , sprawling swashbuckler that delivers its diversions in grand , uncomplicated fashion . ",
"output": "Good"
},
{
"input": "Text: instead of a hyperbolic beat-charged urban western , it 's an unpretentious , sociologically pointed slice of life . ",
"output": "Good"
},
{
"input": "Text: `` the time machine '' is a movie that has no interest in itself . ",
"output": "Bad"
},
{
"input": "Text: it showcases carvey 's talent for voices , but not nearly enough and not without taxing every drop of one 's patience to get to the good stuff . ",
"output": "Bad"
},
{
"input": "Text: it 's an offbeat treat that pokes fun at the democratic exercise while also examining its significance for those who take part . ",
"output": "Good"
},
{
"input": "Text: with tightly organized efficiency , numerous flashbacks and a constant edge of tension , miller 's film is one of 2002 's involvingly adult surprises . ",
"output": "Good"
},
{
"input": "Text: it has its moments of swaggering camaraderie , but more often just feels generic , derivative and done to death . ",
"output": "Bad"
},
{
"input": "Text: the reality of the new live-action pinocchio he directed , cowrote and starred in borders on the grotesque . ",
"output": "Bad"
},
{
"input": "Text: my wife is an actress is an utterly charming french comedy that feels so american in sensibility and style it 's virtually its own hollywood remake . ",
"output": "Good"
},
{
"input": "Text: the tale of tok ( andy lau ) , a sleek sociopath on the trail of o ( takashi sorimachi ) , the most legendary of asian hitmen , is too scattershot to take hold . ",
"output": "Bad"
},
{
"input": "Text: it 's a grab bag of genres that do n't add up to a whole lot of sense . ",
"output": "Bad"
},
{
"input": "Text: bad . ",
"output": "Bad"
},
{
"input": "Text: while locals will get a kick out of spotting cleveland sites , the rest of the world will enjoy a fast-paced comedy with quirks that might make the award-winning coen brothers envious . ",
"output": "Good"
},
{
"input": "Text: without non-stop techno or the existential overtones of a kieslowski morality tale , maelström is just another winter sleepers . ",
"output": "Bad"
},
{
"input": "Text: no telegraphing is too obvious or simplistic for this movie . ",
"output": "Bad"
},
{
"input": "Text: feels too formulaic and too familiar to produce the transgressive thrills of early underground work . ",
"output": "Bad"
},
{
"input": "Text: combining quick-cut editing and a blaring heavy metal much of the time , beck seems to be under the illusion that he 's shooting the latest system of a down video . ",
"output": "Bad"
},
{
"input": "Text: it seems like i have been waiting my whole life for this movie and now i ca n't wait for the sequel . ",
"output": "Good"
},
{
"input": "Text: at least one scene is so disgusting that viewers may be hard pressed to retain their lunch . ",
"output": "Bad"
},
{
"input": "Text: it offers little beyond the momentary joys of pretty and weightless intellectual entertainment . ",
"output": "Bad"
},
{
"input": "Text: excessive , profane , packed with cartoonish violence and comic-strip characters . ",
"output": "Bad"
},
{
"input": "Text: and the lesson , in the end , is nothing new . ",
"output": "Bad"
},
{
"input": "Text: there 's no emotional pulse to solaris . ",
"output": "Bad"
},
{
"input": "Text: ... an otherwise intense , twist-and-turn thriller that certainly should n't hurt talented young gaghan 's resume . ",
"output": "Good"
},
{
"input": "Text: a valueless kiddie paean to pro basketball underwritten by the nba . ",
"output": "Bad"
},
{
"input": "Text: nonsensical , dull `` cyber-horror '' flick is a grim , hollow exercise in flat scares and bad acting . ",
"output": "Bad"
},
{
"input": "Text: not only are the special effects and narrative flow much improved , and daniel radcliffe more emotionally assertive this time around as harry , but the film conjures the magic of author j.k. rowling 's books . ",
"output": "Good"
},
{
"input": "Text: it 's hampered by a lifetime-channel kind of plot and a lead actress who is out of her depth . ",
"output": "Bad"
},
{
"input": "Text: but it 's too long and too convoluted and it ends in a muddle . ",
"output": "Bad"
},
{
"input": "Text: this piece of channel 5 grade trash is , quite frankly , an insult to the intelligence of the true genre enthusiast . ",
"output": "Bad"
},
{
"input": "Text: stultifyingly , dumbfoundingly , mind-numbingly bad . ",
"output": "Bad"
},
{
"input": "Text: something akin to a japanese alice through the looking glass , except that it seems to take itself far more seriously . ",
"output": "Good"
},
{
"input": "Text: this flick is about as cool and crowd-pleasing as a documentary can get . ",
"output": "Good"
},
{
"input": "Text: passable entertainment , but it 's the kind of motion picture that wo n't make much of a splash when it 's released , and will not be remembered long afterwards . ",
"output": "Bad"
},
{
"input": "Text: too much of it feels unfocused and underdeveloped . ",
"output": "Bad"
},
{
"input": "Text: it 's a buggy drag . ",
"output": "Bad"
},
{
"input": "Text: to say this was done better in wilder 's some like it hot is like saying the sun rises in the east . ",
"output": "Bad"
},
{
"input": "Text: director of photography benoit delhomme shot the movie in delicious colors , and the costumes and sets are grand . ",
"output": "Good"
},
{
"input": "Text: it 's just filler . ",
"output": "Bad"
},
{
"input": "Text: a tender , witty , captivating film about friendship , love , memory , trust and loyalty . ",
"output": "Good"
},
{
"input": "Text: it 's slow -- very , very slow . ",
"output": "Bad"
},
{
"input": "Text: ( t ) his beguiling belgian fable , very much its own droll and delicate little film , has some touching things to say about what is important in life and why . ",
"output": "Good"
},
{
"input": "Text: it 's as if you 're watching a movie that was made in 1978 but not released then because it was so weak , and it has been unearthed and released now , when it has become even weaker . ",
"output": "Bad"
},
{
"input": "Text: ahhhh ... revenge is sweet ! ",
"output": "Good"
},
{
"input": "Text: an infectious cultural fable with a tasty balance of family drama and frenetic comedy . ",
"output": "Good"
},
{
"input": "Text: collateral damage finally delivers the goods for schwarzenegger fans . ",
"output": "Good"
},
{
"input": "Text: there has always been something likable about the marquis de sade . ",
"output": "Good"
},
{
"input": "Text: director uwe boll and the actors provide scant reason to care in this crude '70s throwback . ",
"output": "Bad"
},
{
"input": "Text: it haunts , horrifies , startles and fascinates ; it is impossible to look away . ",
"output": "Good"
},
{
"input": "Text: ... a boring parade of talking heads and technical gibberish that will do little to advance the linux cause . ",
"output": "Bad"
},
{
"input": "Text: this is a good script , good dialogue , funny even for adults . ",
"output": "Good"
},
{
"input": "Text: but this films lacks the passion required to sell the material . ",
"output": "Bad"
},
{
"input": "Text: the very definition of the ` small ' movie , but it is a good stepping stone for director sprecher . ",
"output": "Good"
},
{
"input": "Text: very psychoanalytical -- provocatively so -- and also refreshingly literary . ",
"output": "Good"
},
{
"input": "Text: maud and roland 's search for an unknowable past makes for a haunting literary detective story , but labute pulls off a neater trick in possession : he makes language sexy . ",
"output": "Good"
},
{
"input": "Text: the vivid lead performances sustain interest and empathy , but the journey is far more interesting than the final destination . ",
"output": "Good"
},
{
"input": "Text: atom egoyan has conjured up a multilayered work that tackles any number of fascinating issues ",
"output": "Good"
},
{
"input": "Text: even with a green mohawk and a sheet of fire-red flame tattoos covering his shoulder , however , kilmer seems to be posing , rather than acting . ",
"output": "Bad"
},
{
"input": "Text: if the first men in black was money , the second is small change . ",
"output": "Bad"
},
{
"input": "Text: the sort of film that makes me miss hitchcock , but also feel optimistic that there 's hope for popular cinema yet . ",
"output": "Good"
},
{
"input": "Text: serving sara does n't serve up a whole lot of laughs . ",
"output": "Bad"
},
{
"input": "Text: a compelling spanish film about the withering effects of jealousy in the life of a young monarch whose sexual passion for her husband becomes an obsession . ",
"output": "Good"
},
{
"input": "Text: chokes on its own depiction of upper-crust decorum . ",
"output": "Bad"
},
{
"input": "Text: it 's a bit disappointing that it only manages to be decent instead of dead brilliant . ",
"output": "Bad"
},
{
"input": "Text: jason x is positively anti-darwinian : nine sequels and 400 years later , the teens are none the wiser and jason still kills on auto-pilot . ",
"output": "Bad"
},
{
"input": "Text: will amuse and provoke adventurous adults in specialty venues . ",
"output": "Good"
},
{
"input": "Text: reggio 's continual visual barrage is absorbing as well as thought-provoking . ",
"output": "Good"
},
{
"input": "Text: the film 's hackneyed message is not helped by the thin characterizations , nonexistent plot and pretentious visual style . ",
"output": "Bad"
},
{
"input": "Text: why make a documentary about these marginal historical figures ? ",
"output": "Bad"
},
{
"input": "Text: as vulgar as it is banal . ",
"output": "Bad"
},
{
"input": "Text: an occasionally funny , but overall limp , fish-out-of-water story . ",
"output": "Bad"
},
{
"input": "Text: a full world has been presented onscreen , not some series of carefully structured plot points building to a pat resolution . ",
"output": "Good"
},
{
"input": "Text: this film seems thirsty for reflection , itself taking on adolescent qualities . ",
"output": "Bad"
},
{
"input": "Text: dense with characters and contains some thrilling moments . ",
"output": "Good"
},
{
"input": "Text: a gripping movie , played with performances that are all understated and touching . ",
"output": "Good"
},
{
"input": "Text: it all drags on so interminably it 's like watching a miserable relationship unfold in real time . ",
"output": "Bad"
},
{
"input": "Text: late marriage 's stiffness is unlikely to demonstrate the emotional clout to sweep u.s. viewers off their feet . ",
"output": "Bad"
},
{
"input": "Text: good film , but very glum . ",
"output": "Good"
},
{
"input": "Text: morton uses her face and her body language to bring us morvern 's soul , even though the character is almost completely deadpan . ",
"output": "Good"
},
{
"input": "Text: indifferently implausible popcorn programmer of a movie . ",
"output": "Bad"
},
{
"input": "Text: for all the writhing and wailing , tears , rage and opium overdoses , there 's no sense of actual passion being washed away in love 's dissolution . ",
"output": "Bad"
},
{
"input": "Text: jaglom ... put ( s ) the audience in the privileged position of eavesdropping on his characters ",
"output": "Good"
},
{
"input": "Text: it just may inspire a few younger moviegoers to read stevenson 's book , which is a treasure in and of itself . ",
"output": "Good"
},
{
"input": "Text: it is great summer fun to watch arnold and his buddy gerald bounce off a quirky cast of characters . ",
"output": "Good"
},
{
"input": "Text: if looking for a thrilling sci-fi cinematic ride , do n't settle for this imposter . ",
"output": "Bad"
},
{
"input": "Text: the director knows how to apply textural gloss , but his portrait of sex-as-war is strictly sitcom . ",
"output": "Bad"
},
{
"input": "Text: it 's fascinating to see how bettany and mcdowell play off each other . ",
"output": "Good"
},
{
"input": "Text: as a rumor of angels reveals itself to be a sudsy tub of supernatural hokum , not even ms. redgrave 's noblest efforts can redeem it from hopeless sentimentality . ",
"output": "Bad"
},
{
"input": "Text: immersing us in the endlessly inventive , fiercely competitive world of hip-hop djs , the project is sensational and revelatory , even if scratching makes you itch . ",
"output": "Good"
},
{
"input": "Text: utterly lacking in charm , wit and invention , roberto benigni 's pinocchio is an astonishingly bad film . ",
"output": "Bad"
},
{
"input": "Text: burns never really harnesses to full effect the energetic cast . ",
"output": "Bad"
},
{
"input": "Text: there is no pleasure in watching a child suffer . ",
"output": "Bad"
},
{
"input": "Text: the wild thornberrys movie is a jolly surprise . ",
"output": "Good"
},
{
"input": "Text: generally , clockstoppers will fulfill your wildest fantasies about being a different kind of time traveler , while happily killing 94 minutes . ",
"output": "Good"
},
{
"input": "Text: confirms the nagging suspicion that ethan hawke would be even worse behind the camera than he is in front of it . ",
"output": "Bad"
},
{
"input": "Text: while it 's genuinely cool to hear characters talk about early rap records ( sugar hill gang , etc. ) , the constant referencing of hip-hop arcana can alienate even the savviest audiences . ",
"output": "Bad"
},
{
"input": "Text: a fitfully amusing romp that , if nothing else , will appeal to fans of malcolm in the middle and its pubescent star , frankie muniz . ",
"output": "Good"
},
{
"input": "Text: a tender , heartfelt family drama . ",
"output": "Good"
},
{
"input": "Text: it 's a cookie-cutter movie , a cut-and-paste job . ",
"output": "Bad"
},
{
"input": "Text: it takes talent to make a lifeless movie about the most heinous man who ever lived . ",
"output": "Bad"
},
{
"input": "Text: this is a winning ensemble comedy that shows canadians can put gentle laughs and equally gentle sentiments on the button , just as easily as their counterparts anywhere else in the world . ",
"output": "Good"
},
{
"input": "Text: corny , schmaltzy and predictable , but still manages to be kind of heartwarming , nonetheless . ",
"output": "Good"
},
{
"input": "Text: mcconaughey 's fun to watch , the dragons are okay , not much fire in the script . ",
"output": "Good"
},
{
"input": "Text: not only unfunny , but downright repellent . ",
"output": "Bad"
},
{
"input": "Text: visually rather stunning , but ultimately a handsome-looking bore , the true creativity would have been to hide treasure planet entirely and completely reimagine it . ",
"output": "Bad"
},
{
"input": "Text: it 's another stale , kill-by-numbers flick , complete with blade-thin characters and terrible , pun-laden dialogue . ",
"output": "Bad"
},
{
"input": "Text: less dizzying than just dizzy , the jaunt is practically over before it begins . ",
"output": "Bad"
},
{
"input": "Text: i sympathize with the plight of these families , but the movie does n't do a very good job conveying the issue at hand . ",
"output": "Bad"
},
{
"input": "Text: does paint some memorable images ... , but makhmalbaf keeps her distance from the characters ",
"output": "Good"
},
{
"input": "Text: beautifully observed , miraculously unsentimental comedy-drama . ",
"output": "Good"
},
{
"input": "Text: the minor figures surrounding ( bobby ) ... form a gritty urban mosaic . ",
"output": "Good"
},
{
"input": "Text: once the 50 year old benigni appears as the title character , we find ourselves longing for the block of wood to come back . ",
"output": "Bad"
},
{
"input": "Text: like being trapped at a perpetual frat party ... how can something so gross be so boring ? ",
"output": "Bad"
},
{
"input": "Text: ... nothing scary here except for some awful acting and lame special effects . ",
"output": "Bad"
},
{
"input": "Text: the vitality of the actors keeps the intensity of the film high , even as the strafings blend together . ",
"output": "Good"
},
{
"input": "Text: deadeningly dull , mired in convoluted melodrama , nonsensical jargon and stiff-upper-lip laboriousness . ",
"output": "Bad"
},
{
"input": "Text: the special effects and many scenes of weightlessness look as good or better than in the original , while the oscar-winning sound and james horner 's rousing score make good use of the hefty audio system . ",
"output": "Good"
},
{
"input": "Text: fancy a real downer ? ",
"output": "Bad"
},
{
"input": "Text: cq 's reflection of artists and the love of cinema-and-self suggests nothing less than a new voice that deserves to be considered as a possible successor to the best european directors . ",
"output": "Good"
},
{
"input": "Text: has a lot of the virtues of eastwood at his best . ",
"output": "Good"
},
{
"input": "Text: just one bad idea after another . ",
"output": "Bad"
},
{
"input": "Text: the moviegoing equivalent of going to a dinner party and being forced to watch the host and hostess 's home video of their baby 's birth . ",
"output": "Bad"
},
{
"input": "Text: but it still jingles in the pocket . ",
"output": "Good"
},
{
"input": "Text: the film 's welcome breeziness and some unbelievably hilarious moments -- most portraying the idiocy of the film industry -- make it mostly worth the trip . ",
"output": "Good"
},
{
"input": "Text: displaying about equal amounts of naiveté , passion and talent , beneath clouds establishes sen as a filmmaker of considerable potential . ",
"output": "Good"
},
{
"input": "Text: how do you spell cliché ? ",
"output": "Bad"
},
{
"input": "Text: instead of hiding pinocchio from critics , miramax should have hidden it from everyone . ",
"output": "Bad"
},
{
"input": "Text: an absurdist comedy about alienation , separation and loss . ",
"output": "Bad"
},
{
"input": "Text: it inspires a continuing and deeply satisfying awareness of the best movies as monumental ` picture shows . ' ",
"output": "Good"
},
{
"input": "Text: this is human comedy at its most amusing , interesting and confirming . ",
"output": "Good"
},
{
"input": "Text: the film 's few ideas are stretched to the point of evaporation ; the whole central section is one big chase that seems to have no goal and no urgency . ",
"output": "Bad"
},
{
"input": "Text: what the film lacks in general focus it makes up for in compassion , as corcuera manages to find the seeds of hope in the form of collective action . ",
"output": "Good"
},
{
"input": "Text: that 's a cheat . ",
"output": "Bad"
},
{
"input": "Text: a solid examination of the male midlife crisis . ",
"output": "Good"
},
{
"input": "Text: without ever becoming didactic , director carlos carrera expertly weaves this novelistic story of entangled interrelationships and complex morality . ",
"output": "Good"
},
{
"input": "Text: manages to be both repulsively sadistic and mundane . ",
"output": "Bad"
},
{
"input": "Text: the entire movie is about a boring , sad man being boring and sad . ",
"output": "Bad"
},
{
"input": "Text: the film makes a fatal mistake : it asks us to care about a young man whose only apparent virtue is that he is not quite as unpleasant as some of the people in his life . ",
"output": "Bad"
},
{
"input": "Text: it gets onto the screen just about as much of the novella as one could reasonably expect , and is engrossing and moving in its own right . ",
"output": "Good"
},
{
"input": "Text: schaeffer has to find some hook on which to hang his persistently useless movies , and it might as well be the resuscitation of the middle-aged character . ",
"output": "Bad"
},
{
"input": "Text: it 's great escapist fun that recreates a place and time that will never happen again . ",
"output": "Good"
},
{
"input": "Text: of course , by more objective measurements it 's still quite bad . ",
"output": "Bad"
},
{
"input": "Text: seldom has a movie so closely matched the spirit of a man and his work . ",
"output": "Good"
},
{
"input": "Text: this is a train wreck of an action film -- a stupefying attempt by the filmmakers to force-feed james bond into the mindless xxx mold and throw 40 years of cinematic history down the toilet in favor of bright flashes and loud bangs . ",
"output": "Bad"
},
{
"input": "Text: thanks to scott 's charismatic roger and eisenberg 's sweet nephew , roger dodger is one of the most compelling variations on in the company of men . ",
"output": "Good"
},
{
"input": "Text: although huppert 's intensity and focus has a raw exhilaration about it , the piano teacher is anything but fun . ",
"output": "Bad"
},
{
"input": "Text: the words , ` frankly , my dear , i do n't give a damn , ' have never been more appropriate . ",
"output": "Bad"
},
{
"input": "Text: visually imaginative , thematically instructive and thoroughly delightful , it takes us on a roller-coaster ride from innocence to experience without even a hint of that typical kiddie-flick sentimentality . ",
"output": "Good"
},
{
"input": "Text: no one but a convict guilty of some truly heinous crime should have to sit through the master of disguise . ",
"output": "Bad"
},
{
"input": "Text: if steven soderbergh 's ` solaris ' is a failure it is a glorious failure . ",
"output": "Good"
},
{
"input": "Text: very special effects , brilliantly bold colors and heightened reality ca n't hide the giant achilles ' heel in `` stuart little 2 `` : there 's just no story , folks . ",
"output": "Bad"
},
{
"input": "Text: the jabs it employs are short , carefully placed and dead-center . ",
"output": "Good"
},
{
"input": "Text: even on those rare occasions when the narrator stops yammering , miller 's hand often feels unsure . ",
"output": "Bad"
},
{
"input": "Text: it will grip even viewers who are n't interested in rap , as it cuts to the heart of american society in an unnerving way . ",
"output": "Good"
},
{
"input": "Text: the most compelling wiseman epic of recent years . ",
"output": "Good"
},
{
"input": "Text: a bloated gasbag thesis grotesquely impressed by its own gargantuan aura of self-importance ... ",
"output": "Bad"
},
{
"input": "Text: one of those pictures whose promising , if rather precious , premise is undercut by amateurish execution . ",
"output": "Bad"
},
{
"input": "Text: unfortunately , it 's not silly fun unless you enjoy really bad movies . ",
"output": "Bad"
},
{
"input": "Text: care deftly captures the wonder and menace of growing up , but he never really embraces the joy of fuhrman 's destructive escapism or the grace-in-rebellion found by his characters . ",
"output": "Bad"
},
{
"input": "Text: you wonder why enough was n't just a music video rather than a full-length movie . ",
"output": "Bad"
},
{
"input": "Text: a psychological thriller with a genuinely spooky premise and an above-average cast , actor bill paxton 's directing debut is a creepy slice of gothic rural americana . ",
"output": "Good"
},
{
"input": "Text: for the most part stevens glides through on some solid performances and witty dialogue . ",
"output": "Good"
},
{
"input": "Text: not an objectionable or dull film ; it merely lacks everything except good intentions . ",
"output": "Bad"
},
{
"input": "Text: i got a headache watching this meaningless downer . ",
"output": "Bad"
},
{
"input": "Text: one from the heart . ",
"output": "Good"
},
{
"input": "Text: though moonlight mile is replete with acclaimed actors and actresses and tackles a subject that 's potentially moving , the movie is too predictable and too self-conscious to reach a level of high drama . ",
"output": "Bad"
},
{
"input": "Text: looking aristocratic , luminous yet careworn in jane hamilton 's exemplary costumes , rampling gives a performance that could not be improved upon . ' ",
"output": "Good"
},
{
"input": "Text: i just loved every minute of this film . ",
"output": "Good"
},
{
"input": "Text: while the ideas about techno-saturation are far from novel , they 're presented with a wry dark humor . ",
"output": "Good"
},
{
"input": "Text: movie fans , get ready to take off ... the other direction . ",
"output": "Bad"
},
{
"input": "Text: ... plays like somebody spliced random moments of a chris rock routine into what is otherwise a cliche-riddled but self-serious spy thriller . ",
"output": "Bad"
},
{
"input": "Text: a marvel like none you 've seen . ",
"output": "Good"
},
{
"input": "Text: a cartoon that 's truly cinematic in scope , and a story that 's compelling and heartfelt -- even if the heart belongs to a big , four-legged herbivore . ",
"output": "Good"
},
{
"input": "Text: i had to look away - this was god awful . ",
"output": "Bad"
},
{
"input": "Text: it proves quite compelling as an intense , brooding character study . ",
"output": "Good"
},
{
"input": "Text: almost gags on its own gore . ",
"output": "Bad"
},
{
"input": "Text: the movie does a good job of laying out some of the major issues that we encounter as we journey through life . ",
"output": "Good"
},
{
"input": "Text: it all adds up to good fun . ",
"output": "Good"
},
{
"input": "Text: while the resident evil games may have set new standards for thrills , suspense , and gore for video games , the movie really only succeeds in the third of these . ",
"output": "Bad"
},
{
"input": "Text: a coda in every sense , the pinochet case splits time between a minute-by-minute account of the british court 's extradition chess game and the regime 's talking-head survivors . ",
"output": "Good"
},
{
"input": "Text: the socio-histo-political treatise is told in earnest strides ... ( and ) personal illusion is deconstructed with poignancy . ",
"output": "Good"
},
{
"input": "Text: so refreshingly incisive is grant that for the first time he 'll probably appeal more to guys than to their girlfriends who drag them to this movie for the hugh factor . ",
"output": "Good"
},
{
"input": "Text: this movie is maddening . ",
"output": "Bad"
},
{
"input": "Text: zaidan 's script has barely enough plot to string the stunts together and not quite enough characterization to keep the faces straight . ",
"output": "Bad"
},
{
"input": "Text: a pleasant enough romance with intellectual underpinnings , the kind of movie that entertains even as it turns maddeningly predictable . ",
"output": "Good"
},
{
"input": "Text: moody , heartbreaking , and filmed in a natural , unforced style that makes its characters seem entirely convincing even when its script is not . ",
"output": "Good"
},
{
"input": "Text: the title not only describes its main characters , but the lazy people behind the camera as well . ",
"output": "Bad"
},
{
"input": "Text: scooby dooby doo / and shaggy too / you both look and sound great . ",
"output": "Good"
},
{
"input": "Text: manages to be sweet and wickedly satisfying at the same time . ",
"output": "Good"
},
{
"input": "Text: it 's difficult to imagine the process that produced such a script , but here 's guessing that spray cheese and underarm noises played a crucial role . ",
"output": "Bad"
},
{
"input": "Text: the best film about baseball to hit theaters since field of dreams . ",
"output": "Good"
},
{
"input": "Text: a misogynistic piece of filth that attempts to pass itself off as hip , young adult entertainment . ",
"output": "Bad"
},
{
"input": "Text: what the director ca n't do is make either of val kilmer 's two personas interesting or worth caring about . ",
"output": "Bad"
},
{
"input": "Text: at its best , queen is campy fun like the vincent price horror classics of the '60s . ",
"output": "Good"
},
{
"input": "Text: the movie is beautiful to behold and engages one in a sense of epic struggle -- inner and outer -- that 's all too rare in hollywood 's hastier productions . ",
"output": "Good"
},
{
"input": "Text: all the amped-up tony hawk-style stunts and thrashing rap-metal ca n't disguise the fact that , really , we 've been here , done that . ",
"output": "Bad"
},
{
"input": "Text: prurient playthings aside , there 's little to love about this english trifle . ",
"output": "Bad"
},
{
"input": "Text: few films capture so perfectly the hopes and dreams of little boys on baseball fields as well as the grown men who sit in the stands . ",
"output": "Good"
},
{
"input": "Text: it 's the chemistry between the women and the droll scene-stealing wit and wolfish pessimism of anna chancellor that makes this `` two weddings and a funeral '' fun . ",
"output": "Good"
},
{
"input": "Text: moretti 's compelling anatomy of grief and the difficult process of adapting to loss . ",
"output": "Bad"
},
{
"input": "Text: even horror fans will most likely not find what they 're seeking with trouble every day ; the movie lacks both thrills and humor . ",
"output": "Bad"
},
{
"input": "Text: it provides an honest look at a community striving to anchor itself in new grounds . ",
"output": "Good"
},
{
"input": "Text: it 's fun lite . ",
"output": "Good"
},
{
"input": "Text: what distinguishes time of favor from countless other thrillers is its underlying concern with the consequences of words and with the complicated emotions fueling terrorist acts . ",
"output": "Good"
},
{
"input": "Text: a movie that reminds us of just how exciting and satisfying the fantasy cinema can be when it 's approached with imagination and flair . ",
"output": "Good"
},
{
"input": "Text: attempts by this ensemble film to impart a message are so heavy-handed that they instead pummel the audience . ",
"output": "Bad"
},
{
"input": "Text: inside the film 's conflict-powered plot there is a decent moral trying to get out , but it 's not that , it 's the tension that keeps you in your seat . ",
"output": "Good"
},
{
"input": "Text: if there 's one thing this world needs less of , it 's movies about college that are written and directed by people who could n't pass an entrance exam . ",
"output": "Bad"
},
{
"input": "Text: by getting myself wrapped up in the visuals and eccentricities of many of the characters , i found myself confused when it came time to get to the heart of the movie . ",
"output": "Bad"
},
{
"input": "Text: this surreal gilliam-esque film is also a troubling interpretation of ecclesiastes . ",
"output": "Good"
},
{
"input": "Text: this illuminating documentary transcends our preconceived vision of the holy land and its inhabitants , revealing the human complexities beneath . ",
"output": "Good"
},
{
"input": "Text: if you 've ever entertained the notion of doing what the title of this film implies , what sex with strangers actually shows may put you off the idea forever . ",
"output": "Bad"
},
{
"input": "Text: one of the best films of the year with its exploration of the obstacles to happiness faced by five contemporary individuals ... a psychological masterpiece . ",
"output": "Good"
},
{
"input": "Text: just embarrassment and a vague sense of shame . ",
"output": "Bad"
},
{
"input": "Text: a taut psychological thriller that does n't waste a moment of its two-hour running time . ",
"output": "Good"
},
{
"input": "Text: ( w ) hile long on amiable monkeys and worthy environmentalism , jane goodall 's wild chimpanzees is short on the thrills the oversize medium demands . ",
"output": "Bad"
},
{
"input": "Text: a good piece of work more often than not . ",
"output": "Good"
},
{
"input": "Text: basically a static series of semi-improvised ( and semi-coherent ) raps between the stars . ",
"output": "Bad"
},
{
"input": "Text: in the end , the movie collapses on its shaky foundation despite the best efforts of director joe carnahan . ",
"output": "Bad"
},
{
"input": "Text: green might want to hang onto that ski mask , as robbery may be the only way to pay for his next project . ",
"output": "Bad"
},
{
"input": "Text: the overall effect is less like a children 's movie than a recruitment film for future hollywood sellouts . ",
"output": "Bad"
},
{
"input": "Text: it haunts you , you ca n't forget it , you admire its conception and are able to resolve some of the confusions you had while watching it . ",
"output": "Good"
},
{
"input": "Text: though only 60 minutes long , the film is packed with information and impressions . ",
"output": "Good"
},
{
"input": "Text: ... turns so unforgivably trite in its last 10 minutes that anyone without a fortified sweet tooth will likely go into sugar shock . ",
"output": "Bad"
},
{
"input": "Text: no way i can believe this load of junk . ",
"output": "Bad"
},
{
"input": "Text: we know the plot 's a little crazy , but it held my interest from start to finish . ",
"output": "Good"
},
{
"input": "Text: a broad , melodramatic estrogen opera that 's pretty toxic in its own right . ",
"output": "Bad"
},
{
"input": "Text: not since freddy got fingered has a major release been so painful to sit through . ",
"output": "Bad"
},
{
"input": "Text: it 's another video movie photographed like a film , with the bad lighting that 's often written off as indie film naturalism . ",
"output": "Bad"
},
{
"input": "Text: the acting , costumes , music , cinematography and sound are all astounding given the production 's austere locales . ",
"output": "Good"
},
{
"input": "Text: one of the most significant moviegoing pleasures of the year . ",
"output": "Good"
},
{
"input": "Text: a solid film ... but more conscientious than it is truly stirring . ",
"output": "Good"
},
{
"input": "Text: coughs and sputters on its own postmodern conceit . ",
"output": "Bad"
},
{
"input": "Text: the inspirational screenplay by mike rich covers a lot of ground , perhaps too much , but ties things together , neatly , by the end . ",
"output": "Good"
},
{
"input": "Text: but the power of these ( subjects ) is obscured by the majority of the film that shows a stationary camera on a subject that could be mistaken for giving a public oration , rather than contributing to a film 's narrative . ",
"output": "Bad"
},
{
"input": "Text: thanks to haynes ' absolute control of the film 's mood , and buoyed by three terrific performances , far from heaven actually pulls off this stylistic juggling act . ",
"output": "Good"
},
{
"input": "Text: `` mostly martha '' is a bright , light modern day family parable that wears its heart on its sleeve for all to see . ",
"output": "Good"
},
{
"input": "Text: but taken as a stylish and energetic one-shot , the queen of the damned can not be said to suck . ",
"output": "Good"
},
{
"input": "Text: to call the other side of heaven `` appalling '' would be to underestimate just how dangerous entertainments like it can be . ",
"output": "Bad"
},
{
"input": "Text: there 's a wickedly subversive bent to the best parts of birthday girl . ",
"output": "Good"
},
{
"input": "Text: the weight of the piece , the unerring professionalism of the chilly production , and the fascination embedded in the lurid topic prove recommendation enough . ",
"output": "Good"
},
{
"input": "Text: ... the film suffers from a lack of humor ( something needed to balance out the violence ) ... ",
"output": "Bad"
},
{
"input": "Text: drops you into a dizzying , volatile , pressure-cooker of a situation that quickly snowballs out of control , while focusing on the what much more than the why . ",
"output": "Good"
},
{
"input": "Text: reign of fire looks as if it was made without much thought -- and is best watched that way . ",
"output": "Good"
},
{
"input": "Text: rare birds has more than enough charm to make it memorable . ",
"output": "Good"
},
{
"input": "Text: delivers the same old same old , tarted up with latin flava and turned out by hollywood playas . ",
"output": "Bad"
},
{
"input": "Text: another in-your-face wallow in the lower depths made by people who have never sung those blues . ",
"output": "Bad"
},
{
"input": "Text: ... plot holes so large and obvious a marching band might as well be stomping through them in clown clothes , playing a college football fight song on untuned instruments . ",
"output": "Bad"
},
{
"input": "Text: there are some wonderfully fresh moments that smooth the moral stiffness with human kindness and hopefulness . ",
"output": "Good"
},
{
"input": "Text: it 's worth seeing just on the basis of the wisdom , and at times , the startling optimism , of the children . ",
"output": "Good"
},
{
"input": "Text: the piece plays as well as it does thanks in large measure to anspaugh 's three lead actresses . ",
"output": "Good"
},
{
"input": "Text: a beguiling splash of pastel colors and prankish comedy from disney . ",
"output": "Good"
},
{
"input": "Text: i am sorry that i was unable to get the full brunt of the comedy . ",
"output": "Bad"
},
{
"input": "Text: chabrol has taken promising material for a black comedy and turned it instead into a somber chamber drama . ",
"output": "Bad"
},
{
"input": "Text: does little more than play an innocuous game of fill-in - the-blanks with a tragic past . ",
"output": "Bad"
},
{
"input": "Text: the affectionate loopiness that once seemed congenital to demme 's perspective has a tough time emerging from between the badly dated cutesy-pie mystery scenario and the newfangled hollywood post-production effects . ",
"output": "Bad"
},
{
"input": "Text: deliriously funny , fast and loose , accessible to the uninitiated , and full of surprises ",
"output": "Good"
},
{
"input": "Text: chilling , well-acted , and finely directed : david jacobson 's dahmer . ",
"output": "Good"
},
{
"input": "Text: the character of zigzag is not sufficiently developed to support a film constructed around him . ",
"output": "Bad"
},
{
"input": "Text: although laced with humor and a few fanciful touches , the film is a refreshingly serious look at young women . ",
"output": "Good"
},
{
"input": "Text: ( t ) here 's only so much anyone can do with a florid , overplotted , anne rice rock 'n' roll vampire novel before the built-in silliness of the whole affair defeats them . ",
"output": "Bad"
},
{
"input": "Text: the fly-on-the-wall method used to document rural french school life is a refreshing departure from the now more prevalent technique of the docu-makers being a visible part of their work . ",
"output": "Good"
},
{
"input": "Text: true tale of courage -- and complicity -- at auschwitz is a harrowing drama that tries to tell of the unspeakable . ",
"output": "Good"
},
{
"input": "Text: there 's something auspicious , and daring , too , about the artistic instinct that pushes a majority-oriented director like steven spielberg to follow a.i. with this challenging report so liable to unnerve the majority . ",
"output": "Good"
},
{
"input": "Text: and if you 're not nearly moved to tears by a couple of scenes , you 've got ice water in your veins . ",
"output": "Good"
},
{
"input": "Text: that is a compliment to kuras and miller . ",
"output": "Good"
},
{
"input": "Text: involves two mysteries -- one it gives away and the other featuring such badly drawn characters that its outcome hardly matters . ",
"output": "Bad"
},
{
"input": "Text: ... a fun little timewaster , helped especially by the cool presence of jean reno . ",
"output": "Good"
},
{
"input": "Text: a rarity among recent iranian films : it 's a comedy full of gentle humor that chides the absurdity of its protagonist 's plight . ",
"output": "Good"
},
{
"input": "Text: ... with `` the bourne identity '' we return to the more traditional action genre . ",
"output": "Good"
},
{
"input": "Text: pumpkin means to be an outrageous dark satire on fraternity life , but its ambitions far exceed the abilities of writer adam larson broder and his co-director , tony r. abrams , in their feature debut . ",
"output": "Bad"
},
{
"input": "Text: you wo n't like roger , but you will quickly recognize him . ",
"output": "Bad"
},
{
"input": "Text: this is wild surreal stuff , but brilliant and the camera just kind of sits there and lets you look at this and its like you 're going from one room to the next and none of them have any relation to the other . ",
"output": "Good"
},
{
"input": "Text: still , as a visual treat , the film is almost unsurpassed . ",
"output": "Good"
},
{
"input": "Text: a poignant and compelling story about relationships , food of love takes us on a bumpy but satisfying journey of the heart . ",
"output": "Good"
},
{
"input": "Text: but it could have been worse . ",
"output": "Bad"
},
{
"input": "Text: complete lack of originality , cleverness or even visible effort ",
"output": "Bad"
},
{
"input": "Text: filmmakers who can deftly change moods are treasures and even marvels . ",
"output": "Good"
},
{
"input": "Text: fun , flip and terribly hip bit of cinematic entertainment . ",
"output": "Good"
},
{
"input": "Text: so unassuming and pure of heart , you ca n't help but warmly extend your arms and yell ` safe ! ' ",
"output": "Good"
},
{
"input": "Text: despite the 2-d animation , the wild thornberrys movie makes for a surprisingly cinematic experience . ",
"output": "Good"
},
{
"input": "Text: as unseemly as its title suggests . ",
"output": "Good"
},
{
"input": "Text: it 's a demented kitsch mess ( although the smeary digital video does match the muddled narrative ) , but it 's savvy about celebrity and has more guts and energy than much of what will open this year . ",
"output": "Good"
},
{
"input": "Text: that dogged good will of the parents and ` vain ' jia 's defoliation of ego , make the film touching despite some doldrums . ",
"output": "Good"
},
{
"input": "Text: the best that can be said about the work here of scottish director ritchie ... is that he obviously does n't have his heart in it . ",
"output": "Bad"
},
{
"input": "Text: it 's played in the most straight-faced fashion , with little humor to lighten things up . ",
"output": "Bad"
},
{
"input": "Text: instead , he shows them the respect they are due . ",
"output": "Good"
},
{
"input": "Text: it has the charm of the original american road movies , feasting on the gorgeous , ramshackle landscape of the filmmaker 's motherland . ",
"output": "Good"
},
{
"input": "Text: travels a fascinating arc from hope and euphoria to reality and disillusionment . ",
"output": "Good"
},
{
"input": "Text: when the film ended , i felt tired and drained and wanted to lie on my own deathbed for a while . ",
"output": "Bad"
},
{
"input": "Text: blanchett 's performance confirms her power once again . ",
"output": "Good"
},
{
"input": "Text: this riveting world war ii moral suspense story deals with the shadow side of american culture : racial prejudice in its ugly and diverse forms . ",
"output": "Bad"
},
{
"input": "Text: funny but perilously slight . ",
"output": "Good"
},
{
"input": "Text: made with no discernible craft and monstrously sanctimonious in dealing with childhood loss . ",
"output": "Bad"
},
{
"input": "Text: there are simply too many ideas floating around -- part farce , part sliding doors , part pop video -- and yet failing to exploit them . ",
"output": "Bad"
},
{
"input": "Text: it has all the excitement of eating oatmeal . ",
"output": "Bad"
},
{
"input": "Text: a working class `` us vs. them '' opera that leaves no heartstring untugged and no liberal cause unplundered . ",
"output": "Good"
},
{
"input": "Text: if you are an actor who can relate to the search for inner peace by dramatically depicting the lives of others onstage , then esther 's story is a compelling quest for truth . ",
"output": "Good"
},
{
"input": "Text: does n't offer much besides glib soullessness , raunchy language and a series of brutal set pieces ... that raise the bar on stylized screen violence . ",
"output": "Bad"
},
{
"input": "Text: a spellbinding african film about the modern condition of rootlessness , a state experienced by millions around the globe . ",
"output": "Good"
},
{
"input": "Text: detox is ultimately a pointless endeavor . ",
"output": "Bad"
},
{
"input": "Text: ... the movie is just a plain old monster . ",
"output": "Bad"
},
{
"input": "Text: a fast , funny , highly enjoyable movie . ",
"output": "Good"
},
{
"input": "Text: you really have to wonder how on earth anyone , anywhere could have thought they 'd make audiences guffaw with a script as utterly diabolical as this . ",
"output": "Bad"
},
{
"input": "Text: it ca n't decide if it wants to be a mystery/thriller , a romance or a comedy . ",
"output": "Bad"
},
{
"input": "Text: no screen fantasy-adventure in recent memory has the showmanship of clones ' last 45 minutes . ",
"output": "Good"
},
{
"input": "Text: the characters are interesting and often very creatively constructed from figure to backstory . ",
"output": "Good"
},
{
"input": "Text: plays like a volatile and overlong w magazine fashion spread . ",
"output": "Bad"
},
{
"input": "Text: this movie seems to have been written using mad-libs . ",
"output": "Bad"
},
{
"input": "Text: seldahl 's barbara is a precise and moving portrait of someone whose world is turned upside down , first by passion and then by illness . ",
"output": "Good"
},
{
"input": "Text: a simple , but gritty and well-acted ensemble drama that encompasses a potent metaphor for a country still dealing with its fascist past . ",
"output": "Good"
},
{
"input": "Text: what is 100 % missing here is a script of even the most elemental literacy , an inkling of genuine wit , and anything resembling acting . ",
"output": "Bad"
},
{
"input": "Text: a celebration of quirkiness , eccentricity , and certain individuals ' tendency to let it all hang out , and damn the consequences . ",
"output": "Good"
},
{
"input": "Text: martin and barbara are complex characters -- sometimes tender , sometimes angry -- and the delicate performances by sven wollter and viveka seldahl make their hopes and frustrations vivid . ",
"output": "Good"
},
{
"input": "Text: on the heels of the ring comes a similarly morose and humorless horror movie that , although flawed , is to be commended for its straight-ahead approach to creepiness . ",
"output": "Good"
},
{
"input": "Text: entertains by providing good , lively company . ",
"output": "Good"
},
{
"input": "Text: hardly a masterpiece , but it introduces viewers to a good charitable enterprise and some interesting real people . ",
"output": "Good"
},
{
"input": "Text: the humor is n't as sharp , the effects not as innovative , nor the story as imaginative as in the original . ",
"output": "Bad"
},
{
"input": "Text: an intriguing cinematic omnibus and round-robin that occasionally is more interesting in concept than in execution . ",
"output": "Good"
},
{
"input": "Text: it 's refreshing to see a girl-power movie that does n't feel it has to prove anything . ",
"output": "Good"
},
{
"input": "Text: what was once original has been co-opted so frequently that it now seems pedestrian . ",
"output": "Bad"
},
{
"input": "Text: it 's of the quality of a lesser harrison ford movie - six days , seven nights , maybe , or that dreadful sabrina remake . ",
"output": "Bad"
},
{
"input": "Text: there 's ... tremendous energy from the cast , a sense of playfulness and excitement that seems appropriate . ",
"output": "Good"
},
{
"input": "Text: not since japanese filmmaker akira kurosawa 's ran have the savagery of combat and the specter of death been visualized with such operatic grandeur . ",
"output": "Good"
},
{
"input": "Text: it seems to me the film is about the art of ripping people off without ever letting them consciously know you have done so ",
"output": "Bad"
},
{
"input": "Text: at a time when half the so-called real movies are little more than live-action cartoons , it 's refreshing to see a cartoon that knows what it is , and knows the form 's history . ",
"output": "Good"
},
{
"input": "Text: ` de niro ... is a veritable source of sincere passion that this hollywood contrivance orbits around . ' ",
"output": "Good"
},
{
"input": "Text: neither parker nor donovan is a typical romantic lead , but they bring a fresh , quirky charm to the formula . ",
"output": "Good"
},
{
"input": "Text: it 's a beautiful madness . ",
"output": "Good"
},
{
"input": "Text: however it may please those who love movies that blare with pop songs , young science fiction fans will stomp away in disgust . ",
"output": "Bad"
},
{
"input": "Text: uses sharp humor and insight into human nature to examine class conflict , adolescent yearning , the roots of friendship and sexual identity . ",
"output": "Good"
},
{
"input": "Text: charles ' entertaining film chronicles seinfeld 's return to stand-up comedy after the wrap of his legendary sitcom , alongside wannabe comic adams ' attempts to get his shot at the big time . ",
"output": "Good"
},
{
"input": "Text: there 's too much falseness to the second half , and what began as an intriguing look at youth fizzles into a dull , ridiculous attempt at heart-tugging . ",
"output": "Bad"
},
{
"input": "Text: it 's a scattershot affair , but when it hits its mark it 's brilliant . ",
"output": "Good"
},
{
"input": "Text: highbrow self-appointed guardians of culture need not apply , but those who loved cool as ice have at last found a worthy follow-up . ",
"output": "Good"
},
{
"input": "Text: even the finest chef ca n't make a hotdog into anything more than a hotdog , and robert de niro ca n't make this movie anything more than a trashy cop buddy comedy . ",
"output": "Bad"
},
{
"input": "Text: nelson 's brutally unsentimental approach ... sucks the humanity from the film , leaving behind an horrific but weirdly unemotional spectacle . ",
"output": "Bad"
},
{
"input": "Text: hit and miss as far as the comedy goes and a big ole ' miss in the way of story . ",
"output": "Bad"
},
{
"input": "Text: hilariously inept and ridiculous . ",
"output": "Good"
},
{
"input": "Text: impostor has a handful of thrilling moments and a couple of good performances , but the movie does n't quite fly . ",
"output": "Bad"
},
{
"input": "Text: ( serry ) wants to blend politics and drama , an admirable ambition . ",
"output": "Good"
},
{
"input": "Text: as a first-time director , paxton has tapped something in himself as an actor that provides frailty with its dark soul . ",
"output": "Good"
},
{
"input": "Text: while its careful pace and seemingly opaque story may not satisfy every moviegoer 's appetite , the film 's final scene is soaringly , transparently moving . ",
"output": "Good"
},
{
"input": "Text: a deep and meaningful film . ",
"output": "Good"
},
{
"input": "Text: it can not be enjoyed , even on the level that one enjoys a bad slasher flick , primarily because it is dull . ",
"output": "Bad"
},
{
"input": "Text: too slow , too long and too little happens . ",
"output": "Bad"
},
{
"input": "Text: an unwise amalgam of broadcast news and vibes . ",
"output": "Bad"
},
{
"input": "Text: slapstick buffoonery can tickle many a preschooler 's fancy , but when it costs a family of four about $ 40 to see a film in theaters , why spend money on a dog like this when you can rent a pedigree instead ? ",
"output": "Bad"
},
{
"input": "Text: at times , the suspense is palpable , but by the end there 's a sense that the crux of the mystery hinges on a technicality that strains credulity and leaves the viewer haunted by the waste of potential . ",
"output": "Bad"
},
{
"input": "Text: it does nothing new with the old story , except to show fisticuffs in this sort of stop-go slow motion that makes the gang rumbles look like they 're being streamed over a 28k modem . ",
"output": "Bad"
},
{
"input": "Text: sticky sweet sentimentality , clumsy plotting and a rosily myopic view of life in the wwii-era mississippi delta undermine this adaptation . ",
"output": "Bad"
},
{
"input": "Text: falls neatly into the category of good stupid fun . ",
"output": "Good"
},
{
"input": "Text: bennett 's naturalistic performance speaks volumes more truth than any ` reality ' show , and anybody contemplating their own drastic life changes should watch some body first . ",
"output": "Good"
},
{
"input": "Text: not since tom cruise in risky business has an actor made such a strong impression in his underwear . ",
"output": "Good"
},
{
"input": "Text: though it 's become almost redundant to say so , major kudos go to leigh for actually casting people who look working-class . ",
"output": "Good"
},
{
"input": "Text: with rabbit-proof fence , noyce has tailored an epic tale into a lean , economical movie . ",
"output": "Good"
},
{
"input": "Text: the film is beautifully mounted , but , more to the point , the issues are subtly presented , managing to walk a fine line with regard to the question of joan 's madness . ",
"output": "Good"
},
{
"input": "Text: the piquant story needs more dramatic meat on its bones . ",
"output": "Bad"
},
{
"input": "Text: not exactly the bees knees ",
"output": "Bad"
},
{
"input": "Text: tries to add some spice to its quirky sentiments but the taste is all too familiar . ",
"output": "Bad"
},
{
"input": "Text: one of the smartest takes on singles culture i 've seen in a long time . ",
"output": "Good"
},
{
"input": "Text: ` easily my choice for one of the year 's best films . ' ",
"output": "Good"
},
{
"input": "Text: an entertaining , colorful , action-filled crime story with an intimate heart . ",
"output": "Good"
},
{
"input": "Text: this is an egotistical endeavor from the daughter of horror director dario argento ( a producer here ) , but her raw performance and utter fearlessness make it strangely magnetic . ",
"output": "Good"
},
{
"input": "Text: writer/director joe carnahan 's grimy crime drama is a manual of precinct cliches , but it moves fast enough to cover its clunky dialogue and lapses in logic . ",
"output": "Good"
},
{
"input": "Text: a painfully funny ode to bad behavior . ",
"output": "Good"
},
{
"input": "Text: about a manga-like heroine who fights back at her abusers , it 's energetic and satisfying if not deep and psychological . ",
"output": "Good"
},
{
"input": "Text: a very long movie , dull in stretches , with entirely too much focus on meal preparation and igloo construction . ",
"output": "Bad"
},
{
"input": "Text: more whiny downer than corruscating commentary . ",
"output": "Bad"
},
{
"input": "Text: birthday girl is an amusing joy ride , with some surprisingly violent moments . ",
"output": "Good"
},
{
"input": "Text: the old-world - meets-new mesh is incarnated in the movie 's soundtrack , a joyful effusion of disco bollywood that , by the end of monsoon wedding , sent my spirit soaring out of the theater . ",
"output": "Good"
},
{
"input": "Text: on the whole , the movie lacks wit , feeling and believability to compensate for its incessant coarseness and banality . ",
"output": "Bad"
},
{
"input": "Text: oscar wilde 's masterpiece , the importance of being earnest , may be the best play of the 19th century . ",
"output": "Good"
},
{
"input": "Text: do n't be fooled by the impressive cast list - eye see you is pure junk . ",
"output": "Bad"
},
{
"input": "Text: featuring a dangerously seductive performance from the great daniel auteuil , `` sade '' covers the same period as kaufmann 's `` quills '' with more unsettlingly realistic results . ",
"output": "Good"
},
{
"input": "Text: minority report is exactly what the title indicates , a report . ",
"output": "Good"
},
{
"input": "Text: awesome creatures , breathtaking scenery , and epic battle scenes add up to another ` spectacular spectacle . ' ",
"output": "Good"
},
{
"input": "Text: feels haphazard , as if the writers mistakenly thought they could achieve an air of frantic spontaneity by simply tossing in lots of characters doing silly stuff and stirring the pot . ",
"output": "Bad"
},
{
"input": "Text: byler reveals his characters in a way that intrigues and even fascinates us , and he never reduces the situation to simple melodrama . ",
"output": "Good"
},
{
"input": "Text: big fat waste of time . ",
"output": "Bad"
},
{
"input": "Text: the format gets used best ... to capture the dizzying heights achieved by motocross and bmx riders , whose balletic hotdogging occasionally ends in bone-crushing screwups . ",
"output": "Good"
},
{
"input": "Text: a woman 's pic directed with resonance by ilya chaiken . ",
"output": "Good"
},
{
"input": "Text: an important movie , a reminder of the power of film to move us and to make us examine our values . ",
"output": "Good"
},
{
"input": "Text: in all , this is a watchable movie that 's not quite the memorable experience it might have been . ",
"output": "Bad"
},
{
"input": "Text: two hours fly by -- opera 's a pleasure when you do n't have to endure intermissions -- and even a novice to the form comes away exhilarated . ",
"output": "Good"
},
{
"input": "Text: for the most part , director anne-sophie birot 's first feature is a sensitive , extraordinarily well-acted drama . ",
"output": "Good"
},
{
"input": "Text: among the year 's most intriguing explorations of alientation . ",
"output": "Good"
},
{
"input": "Text: a synthesis of cliches and absurdities that seems positively decadent in its cinematic flash and emptiness . ",
"output": "Bad"
},
{
"input": "Text: the film flat lines when it should peak and is more missed opportunity and trifle than dark , decadent truffle . ",
"output": "Bad"
},
{
"input": "Text: the iditarod lasts for days - this just felt like it did . ",
"output": "Bad"
},
{
"input": "Text: due to some script weaknesses and the casting of the director 's brother , the film trails off into inconsequentiality . ",
"output": "Bad"
},
{
"input": "Text: and that 's a big part of why we go to the movies . ",
"output": "Good"
},
{
"input": "Text: this is the sort of burly action flick where one coincidence pummels another , narrative necessity is a drunken roundhouse , and whatever passes for logic is a factor of the last plot device left standing . ",
"output": "Bad"
},
{
"input": "Text: has all the depth of a wading pool . ",
"output": "Bad"
},
{
"input": "Text: the film is quiet , threatening and unforgettable . ",
"output": "Good"
},
{
"input": "Text: a lackluster , unessential sequel to the classic disney adaptation of j.m. barrie 's peter pan . ",
"output": "Bad"
},
{
"input": "Text: all-in-all , the film is an enjoyable and frankly told tale of a people who live among us , but not necessarily with us . ",
"output": "Good"
},
{
"input": "Text: may reawaken discussion of the kennedy assassination but this fictional film looks made for cable rather than for the big screen . ",
"output": "Bad"
},
{
"input": "Text: with its dogged hollywood naturalism and the inexorable passage of its characters toward sainthood , windtalkers is nothing but a sticky-sweet soap . ",
"output": "Bad"
},
{
"input": "Text: makes for a pretty unpleasant viewing experience . ",
"output": "Bad"
},
{
"input": "Text: rarely has leukemia looked so shimmering and benign . ",
"output": "Bad"
},
{
"input": "Text: it 's like every bad idea that 's ever gone into an after-school special compiled in one place , minus those daytime programs ' slickness and sophistication ( and who knew they even had any ? ) . ",
"output": "Bad"
},
{
"input": "Text: directed in a paint-by-numbers manner . ",
"output": "Bad"
},
{
"input": "Text: forced , familiar and thoroughly condescending . ",
"output": "Bad"
},
{
"input": "Text: it 's a bad thing when a movie has about as much substance as its end credits blooper reel . ",
"output": "Bad"
},
{
"input": "Text: if you can stomach the rough content , it 's worth checking out for the performances alone . ",
"output": "Good"
},
{
"input": "Text: while there 's something intrinsically funny about sir anthony hopkins saying ` get in the car , bitch , ' this jerry bruckheimer production has little else to offer ",
"output": "Good"
},
{
"input": "Text: manages to show life in all of its banality when the intention is quite the opposite . ",
"output": "Bad"
},
{
"input": "Text: paid in full is so stale , in fact , that its most vibrant scene is one that uses clips from brian de palma 's scarface . ",
"output": "Bad"
},
{
"input": "Text: in a way , the film feels like a breath of fresh air , but only to those that allow it in . ",
"output": "Good"
},
{
"input": "Text: it made me want to wrench my eyes out of my head and toss them at the screen . ",
"output": "Bad"
},
{
"input": "Text: the x potion gives the quickly named blossom , bubbles and buttercup supernatural powers that include extraordinary strength and laser-beam eyes , which unfortunately do n't enable them to discern flimsy screenplays . ",
"output": "Bad"
},
{
"input": "Text: something like scrubbing the toilet . ",
"output": "Bad"
},
{
"input": "Text: a gorgeous , high-spirited musical from india that exquisitely blends music , dance , song , and high drama . ",
"output": "Good"
},
{
"input": "Text: the son 's room is a triumph of gentility that earns its moments of pathos . ",
"output": "Good"
},
{
"input": "Text: slick piece of cross-promotion . ",
"output": "Good"
},
{
"input": "Text: the film is powerful , accessible and funny . ",
"output": "Good"
},
{
"input": "Text: it has charm to spare , and unlike many romantic comedies , it does not alienate either gender in the audience . ",
"output": "Good"
},
{
"input": "Text: this time mr. burns is trying something in the martin scorsese street-realist mode , but his self-regarding sentimentality trips him up again . ",
"output": "Bad"
},
{
"input": "Text: it 's somewhat clumsy and too lethargically paced -- but its story about a mysterious creature with psychic abilities offers a solid build-up , a terrific climax , and some nice chills along the way . ",
"output": "Bad"
},
{
"input": "Text: its story may be a thousand years old , but why did it have to seem like it took another thousand to tell it to us ? ",
"output": "Bad"
},
{
"input": "Text: or emptying rat traps . ",
"output": "Bad"
},
{
"input": "Text: not really bad so much as distasteful : we need kidnapping suspense dramas right now like we need doomsday thrillers . ",
"output": "Bad"
},
{
"input": "Text: mr. tsai is a very original artist in his medium , and what time is it there ? ",
"output": "Good"
},
{
"input": "Text: it 's a work by an artist so in control of both his medium and his message that he can improvise like a jazzman . ",
"output": "Good"
},
{
"input": "Text: it 's about following your dreams , no matter what your parents think . ",
"output": "Good"
},
{
"input": "Text: not the kind of film that will appeal to a mainstream american audience , but there is a certain charm about the film that makes it a suitable entry into the fest circuit . ",
"output": "Good"
},
{
"input": "Text: or doing last year 's taxes with your ex-wife . ",
"output": "Bad"
},
{
"input": "Text: trite , banal , cliched , mostly inoffensive . ",
"output": "Bad"
},
{
"input": "Text: a breezy romantic comedy that has the punch of a good sitcom , while offering exceptionally well-detailed characters . ",
"output": "Good"
},
{
"input": "Text: nothing in waking up in reno ever inspired me to think of its inhabitants as anything more than markers in a screenplay . ",
"output": "Bad"
},
{
"input": "Text: a literate presentation that wonderfully weaves a murderous event in 1873 with murderous rage in 2002 . ",
"output": "Good"
},
{
"input": "Text: the movie fails to live up to the sum of its parts . ",
"output": "Bad"
},
{
"input": "Text: uncommonly stylish but equally silly ... the picture fails to generate much suspense , nor does it ask searching enough questions to justify its pretensions . ",
"output": "Bad"
},
{
"input": "Text: its well of thorn and vinegar ( and simple humanity ) has long been plundered by similar works featuring the insight and punch this picture so conspicuously lacks . ",
"output": "Bad"
},
{
"input": "Text: in an effort , i suspect , not to offend by appearing either too serious or too lighthearted , it offends by just being wishy-washy . ",
"output": "Bad"
},
{
"input": "Text: stephen rea , aidan quinn , and alan bates play desmond 's legal eagles , and when joined by brosnan , the sight of this grandiloquent quartet lolling in pretty irish settings is a pleasant enough thing , ` tis . ",
"output": "Good"
},
{
"input": "Text: the second coming of harry potter is a film far superior to its predecessor . ",
"output": "Good"
},
{
"input": "Text: good car chases , great fight scenes , and a distinctive blend of european , american and asian influences . ",
"output": "Good"
},
{
"input": "Text: the end result is a film that 's neither . ",
"output": "Bad"
},
{
"input": "Text: based on a devilishly witty script by heather mcgowan and niels mueller , the film gets great laughs , but never at the expense of its characters ",
"output": "Good"
},
{
"input": "Text: the film 's performances are thrilling . ",
"output": "Good"
},
{
"input": "Text: no aspirations to social import inform the movie version . ",
"output": "Bad"
},
{
"input": "Text: this re-do is so dumb and so exploitative in its violence that , ironically , it becomes everything that the rather clumsy original was railing against . ",
"output": "Bad"
},
{
"input": "Text: a sequel that 's much too big for its britches . ",
"output": "Bad"
},
{
"input": "Text: whether writer-director anne fontaine 's film is a ghost story , an account of a nervous breakdown , a trip down memory lane , all three or none of the above , it is as seductive as it is haunting . ",
"output": "Good"
},
{
"input": "Text: old-form moviemaking at its best . ",
"output": "Good"
},
{
"input": "Text: this is so bad . ",
"output": "Bad"
},
{
"input": "Text: the far future may be awesome to consider , but from period detail to matters of the heart , this film is most transporting when it stays put in the past . ",
"output": "Good"
},
{
"input": "Text: it deserves to be seen by anyone with even a passing interest in the events shaping the world beyond their own horizons . ",
"output": "Good"
},
{
"input": "Text: worth watching for dong jie 's performance -- and for the way it documents a culture in the throes of rapid change . ",
"output": "Good"
},
{
"input": "Text: it does n't believe in itself , it has no sense of humor ... it 's just plain bored . ",
"output": "Bad"
},
{
"input": "Text: at its worst , it implodes in a series of very bad special effects . ",
"output": "Bad"
},
{
"input": "Text: it 's clear the filmmakers were n't sure where they wanted their story to go , and even more clear that they lack the skills to get us to this undetermined destination . ",
"output": "Bad"
},
{
"input": "Text: in its best moments , resembles a bad high school production of grease , without benefit of song . ",
"output": "Bad"
},
{
"input": "Text: oh come on . ",
"output": "Bad"
},
{
"input": "Text: the film is based on truth and yet there is something about it that feels incomplete , as if the real story starts just around the corner . ",
"output": "Bad"
},
{
"input": "Text: the volatile dynamics of female friendship is the subject of this unhurried , low-key film that is so off-hollywood that it seems positively french in its rhythms and resonance . ",
"output": "Good"
},
{
"input": "Text: dazzling in its complexity , disturbing for its extraordinary themes , the piano teacher is a film that defies categorisation . ",
"output": "Good"
},
{
"input": "Text: there is a fabric of complex ideas here , and feelings that profoundly deepen them . ",
"output": "Good"
},
{
"input": "Text: michael gerbosi 's script is economically packed with telling scenes . ",
"output": "Good"
},
{
"input": "Text: a disappointment for those who love alternate versions of the bard , particularly ones that involve deep fryers and hamburgers . ",
"output": "Bad"
},
{
"input": "Text: i thought my own watch had stopped keeping time as i slogged my way through clockstoppers . ",
"output": "Bad"
},
{
"input": "Text: well-nigh unendurable ... though the picture strains to become cinematic poetry , it remains depressingly prosaic and dull . ",
"output": "Bad"
},
{
"input": "Text: brilliantly explores the conflict between following one 's heart and following the demands of tradition . ",
"output": "Good"
},
{
"input": "Text: turns potentially forgettable formula into something strangely diverting . ",
"output": "Good"
},
{
"input": "Text: the most hopelessly monotonous film of the year , noteworthy only for the gimmick of being filmed as a single unbroken 87-minute take . ",
"output": "Bad"
},
{
"input": "Text: too often , the viewer is n't reacting to humor so much as they are wincing back in repugnance . ",
"output": "Bad"
},
{
"input": "Text: given how heavy-handed and portent-heavy it is , this could be the worst thing soderbergh has ever done . ",
"output": "Bad"
},
{
"input": "Text: if director michael dowse only superficially understands his characters , he does n't hold them in contempt . ",
"output": "Bad"
},
{
"input": "Text: irwin is a man with enough charisma and audacity to carry a dozen films , but this particular result is ultimately held back from being something greater . ",
"output": "Bad"
},
{
"input": "Text: there is nothing outstanding about this film , but it is good enough and will likely be appreciated most by sailors and folks who know their way around a submarine . ",
"output": "Good"
},
{
"input": "Text: ... routine , harmless diversion and little else . ",
"output": "Good"
},
{
"input": "Text: the last 20 minutes are somewhat redeeming , but most of the movie is the same teenage american road-trip drek we 've seen before - only this time you have to read the fart jokes ",
"output": "Bad"
},
{
"input": "Text: the film 's tone and pacing are off almost from the get-go . ",
"output": "Bad"
},
{
"input": "Text: this is n't even madonna 's swept away . ",
"output": "Bad"
},
{
"input": "Text: very bad . ",
"output": "Bad"
},
{
"input": "Text: like leon , it 's frustrating and still oddly likable . ",
"output": "Good"
},
{
"input": "Text: lovely and poignant . ",
"output": "Good"
},
{
"input": "Text: the emotions are raw and will strike a nerve with anyone who 's ever had family trauma . ",
"output": "Good"
},
{
"input": "Text: the movie achieves as great an impact by keeping these thoughts hidden as ... ( quills ) did by showing them . ",
"output": "Good"
},
{
"input": "Text: bleakly funny , its characters all the more touching for refusing to pity or memorialize themselves . ",
"output": "Good"
},
{
"input": "Text: if you enjoy more thoughtful comedies with interesting conflicted characters ; this one is for you . ",
"output": "Good"
},
{
"input": "Text: so , too , is this comedy about mild culture clashing in today 's new delhi . ",
"output": "Good"
},
{
"input": "Text: when leguizamo finally plugged an irritating character late in the movie . ",
"output": "Bad"
},
{
"input": "Text: in the end , we are left with something like two ships passing in the night rather than any insights into gay love , chinese society or the price one pays for being dishonest . ",
"output": "Bad"
},
{
"input": "Text: nine queens is not only than a frighteningly capable debut and genre piece , but also a snapshot of a dangerous political situation on the verge of coming to a head . ",
"output": "Good"
},
{
"input": "Text: on this tricky topic , tadpole is very much a step in the right direction , with its blend of frankness , civility and compassion . ",
"output": "Good"
},
{
"input": "Text: this nickleby thing might have more homosexual undertones than an eddie murphy film . ",
"output": "Bad"
},
{
"input": "Text: at once half-baked and overheated . ",
"output": "Bad"
},
{
"input": "Text: it 's like watching a nightmare made flesh . ",
"output": "Bad"
},
{
"input": "Text: belongs to daniel day-lewis as much as it belongs to martin scorsese ; it 's a memorable performance in a big , brassy , disturbing , unusual and highly successful film . ",
"output": "Good"
},
{
"input": "Text: the movie has an infectious exuberance that will engage anyone with a passing interest in the skate/surf culture , the l.a. beach scene and the imaginative ( and sometimes illegal ) ways kids can make a playground out of the refuse of adults . ",
"output": "Good"
},
{
"input": "Text: there seems to be no clear path as to where the story 's going , or how long it 's going to take to get there . ",
"output": "Bad"
},
{
"input": "Text: adults will wish the movie were less simplistic , obvious , clumsily plotted and shallowly characterized . ",
"output": "Bad"
},
{
"input": "Text: too much of the humor falls flat . ",
"output": "Bad"
},
{
"input": "Text: it treats women like idiots . ",
"output": "Bad"
},
{
"input": "Text: a sequence of ridiculous shoot - 'em - up scenes . ",
"output": "Bad"
},
{
"input": "Text: despite its title , punch-drunk love is never heavy-handed . ",
"output": "Good"
},
{
"input": "Text: while undisputed is n't exactly a high , it is a gripping , tidy little movie that takes mr. hill higher than he 's been in a while . ",
"output": "Good"
},
{
"input": "Text: it 's a remarkably solid and subtly satirical tour de force . ",
"output": "Good"
},
{
"input": "Text: a great ensemble cast ca n't lift this heartfelt enterprise out of the familiar . ",
"output": "Bad"
},
{
"input": "Text: it all feels like a monty python sketch gone horribly wrong . ",
"output": "Bad"
},
{
"input": "Text: a warm but realistic meditation on friendship , family and affection . ",
"output": "Good"
},
{
"input": "Text: ... is an arthritic attempt at directing by callie khouri . ",
"output": "Bad"
},
{
"input": "Text: harris commands the screen , using his frailty to suggest the ravages of a life of corruption and ruthlessness . ",
"output": "Good"
},
{
"input": "Text: far more imaginative and ambitious than the trivial , cash-in features nickelodeon has made from its other animated tv series . ",
"output": "Good"
},
{
"input": "Text: the script is n't very good ; not even someone as gifted as hoffman ( the actor ) can make it work . ",
"output": "Bad"
},
{
"input": "Text: a swashbuckling tale of love , betrayal , revenge and above all , faith . ",
"output": "Good"
},
{
"input": "Text: a nightmare date with a half-formed wit done a great disservice by a lack of critical distance and a sad trust in liberal arts college bumper sticker platitudes . ",
"output": "Bad"
},
{
"input": "Text: the quality of the art combined with the humor and intelligence of the script allow the filmmakers to present the biblical message of forgiveness without it ever becoming preachy or syrupy . ",
"output": "Good"
},
{
"input": "Text: what better message than ` love thyself ' could young women of any size receive ? ",
"output": "Good"
},
{
"input": "Text: a strangely compelling and brilliantly acted psychological drama . ",
"output": "Good"
},
{
"input": "Text: a rigorously structured and exquisitely filmed drama about a father and son connection that is a brief shooting star of love . ",
"output": "Good"
},
{
"input": "Text: part low rent godfather . ",
"output": "Bad"
},
{
"input": "Text: holden caulfield did it better . ",
"output": "Bad"
},
{
"input": "Text: huston nails both the glad-handing and the choking sense of hollow despair . ",
"output": "Good"
},
{
"input": "Text: unflinchingly bleak and desperate ",
"output": "Bad"
},
{
"input": "Text: the film will play equally well on both the standard and giant screens . ",
"output": "Good"
},
{
"input": "Text: an overemphatic , would-be wacky , ultimately tedious sex farce . ",
"output": "Bad"
},
{
"input": "Text: professionally speaking , it 's tempting to jump ship in january to avoid ridiculous schlock like this shoddy suspense thriller . ",
"output": "Bad"
},
{
"input": "Text: it 's just disappointingly superficial -- a movie that has all the elements necessary to be a fascinating , involving character study , but never does more than scratch the surface . ",
"output": "Bad"
},
{
"input": "Text: it 's also , clearly , great fun . ",
"output": "Good"
},
{
"input": "Text: and that leaves a hole in the center of the salton sea . ",
"output": "Bad"
},
{
"input": "Text: the man from elysian fields is a cold , bliss-less work that groans along thinking itself some important comment on how life throws us some beguiling curves . ",
"output": "Bad"
},
{
"input": "Text: griffiths proves she 's that rare luminary who continually raises the standard of her profession . ",
"output": "Good"
},
{
"input": "Text: it takes a strange kind of laziness to waste the talents of robert forster , anne meara , eugene levy , and reginald veljohnson all in the same movie . ",
"output": "Bad"
},
{
"input": "Text: anchored by friel and williams 's exceptional performances , the film 's power lies in its complexity . ",
"output": "Good"
},
{
"input": "Text: allows us to hope that nolan is poised to embark a major career as a commercial yet inventive filmmaker . ",
"output": "Good"
},
{
"input": "Text: for each chuckle there are at least 10 complete misses , many coming from the amazingly lifelike tara reid , whose acting skills are comparable to a cardboard cutout . ",
"output": "Bad"
},
{
"input": "Text: as ` chick flicks ' go , this one is pretty miserable , resorting to string-pulling rather than legitimate character development and intelligent plotting . ",
"output": "Bad"
},
{
"input": "Text: it 's one pussy-ass world when even killer-thrillers revolve around group therapy sessions . ",
"output": "Bad"
},
{
"input": "Text: the notion that bombing buildings is the funniest thing in the world goes entirely unexamined in this startlingly unfunny comedy . ",
"output": "Bad"
},
{
"input": "Text: a densely constructed , highly referential film , and an audacious return to form that can comfortably sit among jean-luc godard 's finest work . ",
"output": "Good"
},
{
"input": "Text: the mesmerizing performances of the leads keep the film grounded and keep the audience riveted . ",
"output": "Good"
},
{
"input": "Text: in exactly 89 minutes , most of which passed as slowly as if i 'd been sitting naked on an igloo , formula 51 sank from quirky to jerky to utter turkey . ",
"output": "Bad"
},
{
"input": "Text: the story and the friendship proceeds in such a way that you 're watching a soap opera rather than a chronicle of the ups and downs that accompany lifelong friendships . ",
"output": "Bad"
},
{
"input": "Text: you 'll gasp appalled and laugh outraged and possibly , watching the spectacle of a promising young lad treading desperately in a nasty sea , shed an errant tear . ",
"output": "Good"
},
{
"input": "Text: harrison 's flowers puts its heart in the right place , but its brains are in no particular place at all . ",
"output": "Good"
},
{
"input": "Text: an unclassifiably awful study in self - and audience-abuse . ",
"output": "Bad"
},
{
"input": "Text: ( a ) n utterly charming and hilarious film that reminded me of the best of the disney comedies from the 60s . ",
"output": "Good"
},
{
"input": "Text: once ( kim ) begins to overplay the shock tactics and bait-and-tackle metaphors , you may decide it 's too high a price to pay for a shimmering picture postcard . ",
"output": "Bad"
},
{
"input": "Text: a very well-made , funny and entertaining picture . ",
"output": "Good"
},
{
"input": "Text: / but daphne , you 're too buff / fred thinks he 's tough / and velma - wow , you 've lost weight ! ",
"output": "Bad"
},
{
"input": "Text: is the time really ripe for a warmed-over james bond adventure , with a village idiot as the 007 clone ? ",
"output": "Bad"
},
{
"input": "Text: may be far from the best of the series , but it 's assured , wonderfully respectful of its past and thrilling enough to make it abundantly clear that this movie phenomenon has once again reinvented itself for a new generation . ",
"output": "Good"
},
{
"input": "Text: overall the film feels like a low-budget tv pilot that could not find a buyer to play it on the tube . ",
"output": "Bad"
},
{
"input": "Text: not only is undercover brother as funny , if not more so , than both austin powers films , but it 's also one of the smarter , savvier spoofs to come along in some time . ",
"output": "Good"
},
{
"input": "Text: whether you like rap music or loathe it , you ca n't deny either the tragic loss of two young men in the prime of their talent or the power of this movie . ",
"output": "Good"
},
{
"input": "Text: first-time writer-director serry shows a remarkable gift for storytelling with this moving , effective little film . ",
"output": "Good"
},
{
"input": "Text: even in its most tedious scenes , russian ark is mesmerizing . ",
"output": "Good"
},
{
"input": "Text: sometimes seems less like storytelling than something the otherwise compelling director needed to get off his chest . ",
"output": "Bad"
},
{
"input": "Text: ... designed to provide a mix of smiles and tears , `` crossroads '' instead provokes a handful of unintentional howlers and numerous yawns . ",
"output": "Bad"
},
{
"input": "Text: one of the more intelligent children 's movies to hit theaters this year . ",
"output": "Good"
},
{
"input": "Text: should have been someone else - ",
"output": "Bad"
},
{
"input": "Text: it provides the grand , intelligent entertainment of a superior cast playing smart people amid a compelling plot . ",
"output": "Good"
},
{
"input": "Text: no sophomore slump for director sam mendes , who segues from oscar winner to oscar-winning potential with a smooth sleight of hand . ",
"output": "Good"
},
{
"input": "Text: lapaglia 's ability to convey grief and hope works with weaver 's sensitive reactions to make this a two-actor master class . ",
"output": "Good"
},
{
"input": "Text: works hard to establish rounded characters , but then has nothing fresh or particularly interesting to say about them . ",
"output": "Bad"
},
{
"input": "Text: richard gere and diane lane put in fine performances as does french actor oliver martinez . ",
"output": "Good"
},
{
"input": "Text: leigh 's film is full of memorable performances from top to bottom . ",
"output": "Good"
},
{
"input": "Text: the best revenge may just be living well because this film , unlike other dumas adaptations , is far more likened to a treasure than a lengthy jail sentence . ",
"output": "Good"
},
{
"input": "Text: for close to two hours the audience is forced to endure three terminally depressed , mostly inarticulate , hyper dysfunctional families for the price of one . ",
"output": "Bad"
},
{
"input": "Text: a wildly inconsistent emotional experience . ",
"output": "Bad"
},
{
"input": "Text: ... a hollow joke told by a cinematic gymnast having too much fun embellishing the misanthropic tale to actually engage it . ",
"output": "Bad"
},
{
"input": "Text: exciting and direct , with ghost imagery that shows just enough to keep us on our toes . ",
"output": "Good"
},
{
"input": "Text: montias ... pumps a lot of energy into his nicely nuanced narrative and surrounds himself with a cast of quirky -- but not stereotyped -- street characters . ",
"output": "Good"
},
{
"input": "Text: thekids will probably stay amused at the kaleidoscope of big , colorful characters . ",
"output": "Good"
},
{
"input": "Text: they should have called it gutterball . ",
"output": "Bad"
},
{
"input": "Text: though perry and hurley make inspiring efforts to breathe life into the disjointed , haphazard script by jay scherick and david ronn , neither the actors nor director reginald hudlin can make it more than fitfully entertaining . ",
"output": "Bad"
},
{
"input": "Text: velocity represents everything wrong with '' independent film '' as a commodified , sold-out concept on the american filmmaking scene . ",
"output": "Bad"
},
{
"input": "Text: a difficult , absorbing film that manages to convey more substance despite its repetitions and inconsistencies than do most films than are far more pointed and clear . ",
"output": "Good"
},
{
"input": "Text: like mike is a winner for kids , and no doubt a winner for lil bow wow , who can now add movies to the list of things he does well . ",
"output": "Good"
},
{
"input": "Text: a rewarding work of art for only the most patient and challenge-hungry moviegoers . ",
"output": "Good"
},
{
"input": "Text: this one is definitely one to skip , even for horror movie fanatics . ",
"output": "Bad"
},
{
"input": "Text: it 's inoffensive , cheerful , built to inspire the young people , set to an unending soundtrack of beach party pop numbers and aside from its remarkable camerawork and awesome scenery , it 's about as exciting as a sunburn . ",
"output": "Bad"
},
{
"input": "Text: scores no points for originality , wit , or intelligence . ",
"output": "Bad"
},
{
"input": "Text: a quiet , pure , elliptical film ",
"output": "Good"
},
{
"input": "Text: there ought to be a directing license , so that ed burns can have his revoked . ",
"output": "Bad"
},
{
"input": "Text: preaches to two completely different choirs at the same time , which is a pretty amazing accomplishment . ",
"output": "Good"
},
{
"input": "Text: sam mendes has become valedictorian at the school for soft landings and easy ways out . ",
"output": "Bad"
},
{
"input": "Text: another one of those estrogen overdose movies like `` divine secrets of the ya ya sisterhood , '' except that the writing , acting and character development are a lot better . ",
"output": "Good"
},
{
"input": "Text: the movie is dawn of the dead crossed with john carpenter 's ghosts of mars , with zombies not as ghoulish as the first and trains not as big as the second . ",
"output": "Bad"
},
{
"input": "Text: a superbly acted and funny/gritty fable of the humanizing of one woman at the hands of the unseen forces of fate . ",
"output": "Good"
},
{
"input": "Text: challenging , intermittently engrossing and unflaggingly creative . ",
"output": "Good"
},
{
"input": "Text: an effectively creepy , fear-inducing ( not fear-reducing ) film from japanese director hideo nakata , who takes the superstitious curse on chain letters and actually applies it . ",
"output": "Good"
},
{
"input": "Text: unlike the speedy wham-bam effect of most hollywood offerings , character development -- and more importantly , character empathy -- is at the heart of italian for beginners . ",
"output": "Good"
},
{
"input": "Text: this is a story of two misfits who do n't stand a chance alone , but together they are magnificent . ",
"output": "Good"
},
{
"input": "Text: with the exception of some fleetingly amusing improvisations by cedric the entertainer as perry 's boss , there is n't a redeeming moment here . ",
"output": "Bad"
},
{
"input": "Text: one of those energetic surprises , an original that pleases almost everyone who sees it . ",
"output": "Good"
},
{
"input": "Text: a subtle and well-crafted ( for the most part ) chiller . ",
"output": "Good"
},
{
"input": "Text: you do n't have to know about music to appreciate the film 's easygoing blend of comedy and romance . ",
"output": "Good"
},
{
"input": "Text: a smart , witty follow-up . ",
"output": "Good"
},
{
"input": "Text: i 've always dreamed of attending cannes , but after seeing this film , it 's not that big a deal . ",
"output": "Bad"
},
{
"input": "Text: against all odds in heaven and hell , it creeped me out just fine . ",
"output": "Good"
},
{
"input": "Text: this is not the undisputed worst boxing movie ever , but it 's certainly not a champion - the big loser is the audience . ",
"output": "Bad"
},
{
"input": "Text: some of their jokes work , but most fail miserably and in the end , pumpkin is far more offensive than it is funny . ",
"output": "Bad"
},
{
"input": "Text: suffers from the lack of a compelling or comprehensible narrative . ",
"output": "Bad"
},
{
"input": "Text: sustains its dreamlike glide through a succession of cheesy coincidences and voluptuous cheap effects , not the least of which is rebecca romijn-stamos . ",
"output": "Bad"
},
{
"input": "Text: at the very least , if you do n't know anything about derrida when you walk into the theater , you wo n't know much more when you leave . ",
"output": "Bad"
},
{
"input": "Text: miller is playing so free with emotions , and the fact that children are hostages to fortune , that he makes the audience hostage to his swaggering affectation of seriousness . ",
"output": "Good"
},
{
"input": "Text: broomfield turns his distinctive ` blundering ' style into something that could really help clear up the case . ",
"output": "Good"
},
{
"input": "Text: for the first time in years , de niro digs deep emotionally , perhaps because he 's been stirred by the powerful work of his co-stars . ",
"output": "Good"
},
{
"input": "Text: ( e ) ventually , every idea in this film is flushed down the latrine of heroism . ",
"output": "Bad"
},
{
"input": "Text: that 's pure pr hype . ",
"output": "Bad"
},
{
"input": "Text: it 's not that kung pow is n't funny some of the time -- it just is n't any funnier than bad martial arts movies are all by themselves , without all oedekerk 's impish augmentation . ",
"output": "Bad"
},
{
"input": "Text: the primitive force of this film seems to bubble up from the vast collective memory of the combatants . ",
"output": "Good"
},
{
"input": "Text: his healthy sense of satire is light and fun ... ",
"output": "Good"
},
{
"input": "Text: one of creepiest , scariest movies to come along in a long , long time , easily rivaling blair witch or the others . ",
"output": "Good"
},
{
"input": "Text: comes ... uncomfortably close to coasting in the treads of the bicycle thief . ",
"output": "Bad"
},
{
"input": "Text: the result is a gaudy bag of stale candy , something from a halloween that died . ",
"output": "Bad"
},
{
"input": "Text: for starters , the story is just too slim . ",
"output": "Bad"
},
{
"input": "Text: outer-space buffs might love this film , but others will find its pleasures intermittent . ",
"output": "Bad"
},
{
"input": "Text: an artful , intelligent film that stays within the confines of a well-established genre . ",
"output": "Good"
},
{
"input": "Text: offers much to enjoy ... and a lot to mull over in terms of love , loyalty and the nature of staying friends . ",
"output": "Good"
},
{
"input": "Text: wince-inducing dialogue , thrift-shop costumes , prosthetic makeup by silly putty and kmart blue-light-special effects all conspire to test trekkie loyalty . ",
"output": "Bad"
},
{
"input": "Text: the film may appear naked in its narrative form ... but it goes deeper than that , to fundamental choices that include the complexity of the catholic doctrine ",
"output": "Good"
}
]
} |