File size: 98,329 Bytes
76c5ac9 |
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 |
[
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "11. Pulverulent compound according to any one of Claims 1 to 10, wherein a normalized width of the particle size distribution, measured according to the Formula (1) in which D denotes the diameter of the secondary particles, is less than 1.4.",
"measurement_extractions": [
{
"quantity": "is less than 1.4",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "CA2664781C_11",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "12. Pulverulent compound according to any one of Claims 1 to 10, wherein a normalized width of the particle size distribution, measured according to the Formula (1) in which D denotes the diameter of the secondary particles, is less than 1.2.",
"measurement_extractions": [
{
"quantity": "is less than 1.2",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "CA2664781C_12",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "13. Pulverulent compound according to any one of Claims 1 to 12, which has a compressed density of at least 3.2 g/cm3 at a compression pressure of 200 MPa.",
"measurement_extractions": [
{
"quantity": "at least 3.2 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "a compressed density"
}
],
"split": "val",
"docId": "CA2664781C_13",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "14. Pulverulent compound according to any one of Claims 1 to 13, which has a tapped density measured according to ASTM B 527, of at least 2.2 g/cm3.",
"measurement_extractions": [
{
"quantity": "at least 2.2 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "a tapped density"
}
],
"split": "val",
"docId": "CA2664781C_14",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "15. Pulverulent compound according to any one of Claims 1 to 13, which has a tapped density measured according to ASTM B 527, of at least 2.4 g/cm3.",
"measurement_extractions": [
{
"quantity": "at least 2.4 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "a tapped density"
}
],
"split": "val",
"docId": "CA2664781C_15",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10. Precursor material according to claim 1, wherein the precursor material within 500 ppm of sodium levels below.",
"measurement_extractions": [
{
"quantity": "500 ppm",
"unit": null,
"measured_entity": "precursor",
"measured_property": "sodium levels"
}
],
"split": "val",
"docId": "CN103108833B_10",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "11. Precursor material according to claim 10, wherein the precursor material within 300 ppm of sodium levels below.",
"measurement_extractions": [
{
"quantity": "300 ppm",
"unit": "ppm",
"measured_entity": "precursor",
"measured_property": "sodium levels"
}
],
"split": "val",
"docId": "CN103108833B_11",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "16. Method according to claim 13, wherein the alkaline hydroxjde 11-13 pH of the solution is maintained in range.",
"measurement_extractions": [
{
"quantity": "11-13",
"unit": null,
"measured_entity": "the solution",
"measured_property": "pH"
}
],
"split": "val",
"docId": "CN103108833B_16",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "23. Method according to claim 13, wherein the performed at a temperature in the range of reactor coprecipitates 50-70 \u00b0C.",
"measurement_extractions": [
{
"quantity": "50-70 \u00b0C",
"unit": "\u00b0C",
"measured_entity": "reactor",
"measured_property": "temperature"
}
],
"split": "val",
"docId": "CN103108833B_23",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "24. Method according to claim 13, wherein the precursor material has an average particle diameter in the range 3-30 microns.",
"measurement_extractions": [
{
"quantity": "in the range 3-30 microns",
"unit": "microns",
"measured_entity": "precursor",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "CN103108833B_24",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "25. Method according to claim 23, wherein the precursor material has an average particle diameter in the range 7-13 microns.",
"measurement_extractions": [
{
"quantity": "in the range 7-13 microns",
"unit": "microns",
"measured_entity": "precurso",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "CN103108833B_25",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "26. Method according to claim 13, wherein the precursor material has a tap density 0.8-2.8 g/cm3of range.",
"measurement_extractions": [
{
"quantity": "0.8-2.8 g/cm3",
"unit": "g/cm3",
"measured_entity": "precursor",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "CN103108833B_26",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "27. Method according to claim 25, wherein the tap density of the precursor material 1.8-2.3 g/cm3of range.",
"measurement_extractions": [
{
"quantity": "1.8-2.3 g/cm3",
"unit": "g/cm3",
"measured_entity": "precursor",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "CN103108833B_27",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "28. Method according to claim 13, wherein the precursor material surface area per gram of the precursor material 2-20 m2of range.",
"measurement_extractions": [
{
"quantity": "2-20 m2of range",
"unit": "m2of range",
"measured_entity": "precursor",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "CN103108833B_28",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "29. Method according to claim 27, wherein the precursor material surface area per gram of precursor material 2-8 m2of range.",
"measurement_extractions": [
{
"quantity": "2-8 m2of range",
"unit": "m2of range",
"measured_entity": "precursor",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "CN103108833B_29",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "30. Method according to claim 13, wherein the precursor material less than 500 ppm mole number of sodium levels.",
"measurement_extractions": [
{
"quantity": "500 ppm",
"unit": "ppm",
"measured_entity": "precursor",
"measured_property": "sodium levels"
}
],
"split": "val",
"docId": "CN103108833B_30",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "31. Method according to claim 30, wherein the precursor material within 300 ppm of sodium levels below.",
"measurement_extractions": [
{
"quantity": "300 ppm",
"unit": "ppm",
"measured_entity": "precursor",
"measured_property": "sodium levels"
}
],
"split": "val",
"docId": "CN103108833B_31",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "4. Precursor material according to claim 1, wherein the precursor material has an average particle diameter in the range 3-30 microns.",
"measurement_extractions": [
{
"quantity": "in the range 3-30 microns",
"unit": "microns",
"measured_entity": "precursor",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "CN103108833B_4",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "5. Precursor material according to claim 4, wherein the precursor material has an average particle diameter in the range 7-13 microns.",
"measurement_extractions": [
{
"quantity": "in the range 7-13 microns",
"unit": "microns",
"measured_entity": "precursor",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "CN103108833B_5",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "6. Precursor material according to claim 1, wherein the precursor material has a tap density 0.8-2.8 g/cm3of range.",
"measurement_extractions": [
{
"quantity": "0.8-2.8 g/cm3",
"unit": "g/cm3",
"measured_entity": "precursor",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "CN103108833B_6",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "7. Precursor material according to claim 6, wherein the tap density of the precursor material 1.8-2.3 g/cm3of range.",
"measurement_extractions": [
{
"quantity": "1.8-2.3 g/cm3",
"unit": "g/cm3",
"measured_entity": "precursor",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "CN103108833B_7",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "8. Precursor material according to claim 1, wherein the precursor material surface area per gram of the precursor material 2-20 m2of range.",
"measurement_extractions": [
{
"quantity": "2-20 m2of range",
"unit": "m2of range",
"measured_entity": "precursor",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "CN103108833B_8",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "9. Precursor material according to claim 1, wherein the precursor material surface area per gram of precursor material 2-8 m2of range.",
"measurement_extractions": [
{
"quantity": "2-8 m2of range",
"unit": "m2of range",
"measured_entity": "precursor",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "CN103108833B_9",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "14. Method according to claim 9, wherein the pH of the mixture in the process is changed as the 1st to the 1st 10 11, and the pH of the mixture in the 2nd process is changed as the 2nd 11.5 to 12.0.",
"measurement_extractions": [
{
"quantity": "10 11",
"unit": null,
"measured_entity": "the mixture in the process",
"measured_property": "pH"
},
{
"quantity": "11.5 to 12.0",
"unit": null,
"measured_entity": "the mixture in the 2nd process",
"measured_property": "pH"
}
],
"split": "val",
"docId": "CN103151511A_14",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "4. A positive electrode active material according to claim 1 or 2, characterized in:\nLi-Ni composite oxide particles have an average particle diameter of 1-20 \u03bcm, BET specific surface area in the range 0.1-1.6 m2/g.",
"measurement_extractions": [
{
"quantity": "1-20 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "Li-Ni composite oxide particles",
"measured_property": "average particle diameter"
},
{
"quantity": "in the range 0.1-1.6 m2/g",
"unit": "m2/g",
"measured_entity": "Li-Ni composite oxide particles",
"measured_property": "BET specific surface area"
}
],
"split": "val",
"docId": "CN104704659B_4",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "5. A method as claimed in any one of Li-Ni composite oxide claim 1-4 for producing a powder particle method, characterized in:\nThe lithium powder of the compound and the Ni-Co hydroxide particles are mixed, the resulting mixture is fired,\nNi-Co hydroxide particles is obtained through the following operation, a metal sulfate aqueous solution, an aqueous ammonia solution and a sodium hydroxide aqueous solution, the concentration of ammonia is controlled such that the reaction tank to 1.4 mol/L or less, and the (the concentration of ammonia reactor) /(group consisting of hydroxide concentration of the remaining in the reaction tank) is a 6 or more, to obtain Ni-Co hydroxide.",
"measurement_extractions": [
{
"quantity": "1.4 mol/L",
"unit": "mol/L",
"measured_entity": "reaction tank",
"measured_property": "concentration of ammonia"
}
],
"split": "val",
"docId": "CN104704659B_5",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "6. A method as claimed in any one of Li-Ni composite oxide claim 1-4 for producing a powder particle method, characterized in:\nThe lithium powder of the compound, Ni-Co hydroxide particles, and the powder of the compound of the group consisting of aluminum/or zirconium powder of a compound are mixed, the resulting mixture is fired,\nNi-Co hydroxide particles is obtained through the following operation, a metal sulfate aqueous solution, an aqueous ammonia solution and a sodium hydroxide aqueous solution, a concentration of ammonia in the reaction tank is controlled such that 1.4 mol/L or less, and the (the concentration of ammonia reactor) /(group consisting of hydroxide concentration of the remaining in the reaction tank) is a 6 or more, to obtain Ni-Co hydroxide.",
"measurement_extractions": [
{
"quantity": "1.4 mol/L",
"unit": "mol/L",
"measured_entity": "reaction tank",
"measured_property": "concentration of ammonia"
}
],
"split": "val",
"docId": "CN104704659B_6",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "8. The transition metal precursor according to claim 1, wherein the transition metal precursor to 1 \u03bcm -30 \u03bcm average particle diameter of D50.",
"measurement_extractions": [
{
"quantity": "1 \u03bcm -30 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "transition metal precursor",
"measured_property": "average particle diameter of D50"
}
],
"split": "val",
"docId": "CN104884390A_8",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "1. A transfer method for producing an oxide of a metal composite, comprising: 1st step, preparing comprises nickel, chromium, manganese and nickel, chromium, manganese concentration different from each other for forming a metal salt aqueous solution and 2nd internal 1st for forming a metal salt aqueous solution inside; 2nd step, an aqueous alkaline solution and a chelating agent supplied inside the reactor; 3rd step, for forming a metal salt aqueous solution of the 1st and the inside and a chelating agent to the reactor and mixed aqueous alkali solution is continuously supplied, and a culture group consisting of nickel, chrome, r1 is a concentration of Mn is fixed and comprises a radius (0.2um \u2264 r1 \u2264 5um) those particles of a 1st; and the 4th step, so that the 1st and the 2nd internal metal salt aqueous solution for forming a metal salt aqueous solution is formed from a mixture ratio by 100v %: 0v % to 0v %: gradually changing the mixing supply 100v %, and aqueous alkaline solution to the reactor while the chelating agent is mixed, is formed inside the outer radius r2 in the 1st to contain (r2 \u2264 10um) those particles of a 2nd, characterized in,\n2nd step of the reaction solution is adjusted to be 0.25 g/L alkaline solution has a concentration of 0.5 g/L to.",
"measurement_extractions": [
{
"quantity": "0.5 g/L",
"unit": "g/L",
"measured_entity": "2nd step",
"measured_property": "alkaline solution has a concentration"
}
],
"split": "val",
"docId": "CN105594029A_1",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10. A transfer method for producing an oxide of a metal composite, characterized in,\nComprising:\nA solution comprising the nickel, manganese and chromium metal salt aqueous solution of a 1st;\nA solution comprising the nickel, manganese and chromium metal salt aqueous solution of a 2nd;\nAqueous alkaline solution and an aqueous ammonia solution mixture in the reactor, and the pH is adjusted to 12.3 to the reaction solution to 11.8; and\nMixing a metal salt aqueous solution is supplied to the reactor and the 2nd 1st metal salt aqueous solution mixing a metal salt aqueous solution of a 1st, ammonia and aqueous alkaline solution,\nAnd a, an aqueous solution of the mixed metal salts in a 1st 1st and a 2nd a metal salt aqueous solution is a metal salt aqueous solution is a mixed ratio of 0v % or more, the following 100v %.",
"measurement_extractions": [
{
"quantity": "adjusted to 12.3 to the reaction solution to 11.8",
"unit": null,
"measured_entity": "mixture in the reactor",
"measured_property": "pH"
}
],
"split": "val",
"docId": "CN105594029A_10",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "2. A manufacturing method of a lithium composite oxide according to claim 1, characterized in,\n2nd step for adjusting the pH of the solution to the reactor 12.3 11.8.",
"measurement_extractions": [
{
"quantity": "12.3 11.8",
"unit": null,
"measured_entity": "the solution to the reactor",
"measured_property": "pH"
}
],
"split": "val",
"docId": "CN105594029A_2",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "4. A manufacturing method of a lithium composite oxide according to claim 1, characterized in,\n1st through 4th step to step, to the reactor and a mixed aqueous solution of metal salt is formed by a 1st, chelating agent and an aqueous alkaline solution and the reaction in the size distribution of particles of 30 minutes, D50 4um to or less.",
"measurement_extractions": [
{
"quantity": "4um",
"unit": "um",
"measured_entity": "particles",
"measured_property": "D50"
}
],
"split": "val",
"docId": "CN105594029A_4",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10. The method of claim 1, wherein: in the step (5), the concentration of ammonium radicals is controlled to be 6-10 g/L.",
"measurement_extractions": [
{
"quantity": "6-10 g/L",
"unit": "g/L",
"measured_entity": "ammonium",
"measured_property": "concentration"
}
],
"split": "val",
"docId": "CN109755539A_10",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "1. A production method for producing transition metal composite hydroxide particles by a crystallization reaction to be a precursor for a cathode active material for a non-aqueous electrolyte rechargeable battery, comprising:\na nucleation process for performing nucleation by controlling an aqueous solution for nucleation that includes a metal compound that includes at least a transition metal and an ammonium ion donor so that the pH value at a standard liquid temperature of 25\u00b0C becomes 12.0 to 14.0; and\na particle growth process for causing nuclei to grow by controlling an aqueous solution for particle growth that includes the nuclei that were obtained in the nucleation process so that the pH value is less than in the nucleation process and is 10.5 to 12.0;\na reaction atmosphere in the nucleation process and at the beginning of the particle growth process being a non-oxidizing atmosphere in which an oxygen concentration is 5% by volume or less; and\nin the particle growth process, atmosphere control by which the reaction atmosphere is switched from the non-oxidizing atmosphere to an oxidizing atmosphere in which the oxygen concentration is greater than 5% by volume, and is then switched from the oxidizing atmosphere to a non-oxidizing atmosphere in which the oxygen concentration is 5% by volume or less being performed at least one time.",
"measurement_extractions": [
{
"quantity": "12.0 to 14.0",
"unit": null,
"measured_entity": "a nucleation process",
"measured_property": "pH"
},
{
"quantity": "10.5 to 12.0",
"unit": null,
"measured_entity": "a particle growth process",
"measured_property": "pH"
}
],
"split": "val",
"docId": "EP3007254A1_1",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "16. Cathode active material for a non-aqueous electrolyte rechargeable battery comprising secondary particles that are formed by an aggregation of plural primary particles,\nthe secondary particles comprising a center section having solid or hollow structure, and at least a hollow section where there are no primary particles and an outer-shell section that is electrically connected to the center section on the outside of the center section; and\nthe secondary particles having an average particle size of 1 \u00b5m to 15 \u00b5m, and an index [(d90 - d10)/average particle size] that indicates the extent of the particle size distribution of 0.7 or less.",
"measurement_extractions": [
{
"quantity": "1 \u00b5m to 15 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "the secondary particles",
"measured_property": "average particle size"
},
{
"quantity": "0.7 or less",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "EP3007254A1_16",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "19. The cathode active material for a non-aqueous electrolyte rechargeable battery according to any one of the Claims 16 to 18, wherein the specific surface area is 0.7 m2/g to 3.0 m2/g.",
"measurement_extractions": [
{
"quantity": "0.7 m2/g to 3.0 m2/g",
"unit": "m2/g",
"measured_entity": "cathode active material",
"measured_property": "specific surface area"
}
],
"split": "val",
"docId": "EP3007254A1_19",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "7. Transition metal composite hydroxide particles that are the precursor for cathode active material for a non-aqueous electrolyte rechargeable battery, comprising secondary particles that are formed by an aggregation of plate-shaped primary particles and fine primary particles that are smaller than the plate-shaped primary particles;\nthe secondary particles having a center section that is formed by an aggregation of the plate-shaped primary particles, and at least one layered structure of a low-density section that is formed by an aggregation of the fine primary particles and a high-density section that is formed by an aggregation of the plate-shaped primary particles on the outside of the center section; and\nthe secondary particles having an average particle size of 1 \u00b5m to 15 \u00b5m, and an index [(d90 - d10)/average particle size] that indicates the extent of the particle size distribution of 0.65 or less.",
"measurement_extractions": [
{
"quantity": "1 \u00b5m to 15 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "the secondary particles",
"measured_property": "average particle size"
},
{
"quantity": "0.65 or less",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "EP3007254A1_7",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "3. A nickel-based active material precursor according to claim 1 or claim 2, wherein:\nthe intermediate layer portion (20) and the shell portion (30) are each lower in porosity than the core portion (10), or the core portion (10) and the shell portion (30) are each higher in porosity than the intermediate layer portion (20); and/or\nthe nickel-based active material precursor has a mean particle diameter of about 9 \u00b5m to about 20 \u00b5m; and/or\nthe nickel-based active material precursor comprises plate particles, and\nwherein major axes of the plate particles are radially arranged.",
"measurement_extractions": [
{
"quantity": "9 \u00b5m to about 20 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "active material precursor",
"measured_property": "particle diameter"
}
],
"split": "val",
"docId": "EP3640215A1_3",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "2. The positive electrode active material precursor for the non-aqueous electrolyte secondary battery according to claim 1, comprising:\na plurality of the nickel composite hydroxide particles, wherein\nwhen a plurality of particles to be evaluated, which have a particle size that is greater than or equal to - 1 \u00b5m and less than or equal to +1 \u00b5m with respect to an average particle size of the plurality of the nickel composite hydroxide particles, are selected from the plurality of the nickel composite hydroxide particles, and\na cross section of each of the plurality of particles to be evaluated is divided into a plurality of regions by boundary lines arranged in a grid such that each of the plurality of regions partitioned by the boundary lines has a size of 2 \u00b5m square,\na ratio of a number of particles having particular characteristics among a number of the selected plurality of particles to be evaluated, is greater than or equal to 50%, the particular characteristics of the particles being that an average value of a ratio of an area of the void in an area of each of the plurality of regions partitioned by the boundary lines, is greater than or equal to 0.5% and less than or equal to 5.0%, and that a standard deviation of the ratio of the area of the void in the area of each of the plurality of regions partitioned by the boundary lines, is less than or equal to 1.0.",
"measurement_extractions": [
{
"quantity": "is greater than or equal to - 1 \u00b5m and less than or equal to +1 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "composite hydroxide particles",
"measured_property": "particle size"
}
],
"split": "val",
"docId": "EP3719887A1_2",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "1. An oxide-based positive electrode active material for all-solid-state lithium ion batteries, the oxide-based positive electrode active material having a compositional formula represented by:LiaNixCoyMn1-x-yO2, with 0.98 \u2264 a \u2264 1.05; 0.8 \u2264 x \u2264 1.0; and 0 \u2264 y \u2264 0.20,wherein the oxide-based positive electrode active material has an average particle diameter D50 of from 1.0 to 5.0 \u00b5m, a tap density of from 1.6 to 2.5 g/cc, and a circularity of from 0.85 to 0.95.",
"measurement_extractions": [
{
"quantity": "1.0 to 5.0 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "positive electrode active material",
"measured_property": "D50"
},
{
"quantity": "1.6 to 2.5 g/cc",
"unit": "g/cc",
"measured_entity": "positive electrode active material",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "EP3793011A1_1",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "2. A method for producing a precursor of an oxide-based positive electrode active material for all-solid-state lithium ion batteries, the precursor having a compositional formula represented by:a composite hydroxide NixCoyMn1-x-y(OH)2, with 0.8 \u2264 x \u2264 1.0; and 0 \u2264 y \u2264 0.20,the precursor having an average particle diameter D50 of from 1.0 to 5.0 \u00b5m and a circularity of from 0.85 to 0.95,wherein the method comprises a step of performing a crystallization reaction using an aqueous solution containing basic aqueous solutions of a nickel salt, a cobalt salt, a manganese salt, an aqueous ammonia and an alkali metal as a reaction solution while controlling a pH of the reaction solution to a range of from 10.5 to 11.5, and an ammonium ion concentration to a range of from 5 to 25 g/L and a temperature of the reaction solution to a range of from 50 to 65 \u00b0C.\na composite hydroxide NixCoyMn1-x-y(OH)2, with 0.8 \u2264 x \u2264 1.0; and 0 \u2264 y \u2264 0.20,\nthe precursor having an average particle diameter D50 of from 1.0 to 5.0 \u00b5m and a circularity of from 0.85 to 0.95,\nwherein the method comprises a step of performing a crystallization reaction using an aqueous solution containing basic aqueous solutions of a nickel salt, a cobalt salt, a manganese salt, an aqueous ammonia and an alkali metal as a reaction solution while controlling a pH of the reaction solution to a range of from 10.5 to 11.5, and an ammonium ion concentration to a range of from 5 to 25 g/L and a temperature of the reaction solution to a range of from 50 to 65 \u00b0C.",
"measurement_extractions": [
{
"quantity": "from 1.0 to 5.0 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "precursor",
"measured_property": "average particle diameter D50"
},
{
"quantity": "from 10.5 to 11.5",
"unit": null,
"measured_entity": "a crystallization reaction",
"measured_property": "pH"
},
{
"quantity": "from 5 to 25 g/L",
"unit": "g/L",
"measured_entity": "a crystallization reaction",
"measured_property": "ammonium ion concentration"
},
{
"quantity": "50 to 65 \u00b0C",
"unit": "\u00b0C",
"measured_entity": "a crystallization reaction",
"measured_property": "temperature of the reaction"
},
{
"quantity": "from 1.0 to 5.0 \u00b5m",
"unit": "\u00b5m",
"measured_entity": "precursor",
"measured_property": "average particle diameter D50"
},
{
"quantity": "from 10.5 to 11.5",
"unit": null,
"measured_entity": "a crystallization reaction",
"measured_property": "pH"
},
{
"quantity": "from 5 to 25 g/L",
"unit": "g/L",
"measured_entity": "a crystallization reaction",
"measured_property": "ammonium ion concentration"
},
{
"quantity": "50 to 65 \u00b0C",
"unit": "\u00b0C",
"measured_entity": "a crystallization reaction",
"measured_property": "temperature of the reaction"
}
],
"split": "val",
"docId": "EP3793011A1_2",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "What is claimed is:\n1. Cathode active material for a non-aqueous electrolyte rechargeable battery comprising secondary particles that are formed by an aggregation of plural primary particles,\nthe cathode active material comprising layered hexagonal crystal lithium nickel manganese composite oxide particles that are expressed by the general expression (B): Li1+uNixMnyCozMtO2, where \u22120.05\u2264u\u22640.50, x+y+z+t=1, 0.3\u2264x\u22640.95, 0.05\u2264y\u22640.55, 0\u2264z\u22640.4, 0\u2264t\u22640.1, and M is one or more additional element that is selected from among Mg, Ca, Al, Ti, V, Cr, Zr, Nb, Mo, Hf, Ta and W,\nthe secondary particles having a center section comprising the aggregation of plural primary particles, the center section having a solid structure or hollow structure provided with a hollow part at its inside, an outer-shell section comprising the aggregation of plural primary particles and located on the outside of the center section, at least a hollow section located between the center section and the outer-shell section where there are no primary particles, and a connecting section electrically connecting between the outer-shell section and the center section;\nthe average value of the ratio of the center section outer diameter with respect to the particle size of the secondary particles being 30% to 80%, and the average value of the ratio of the outer-shell section radial direction thickness with respect to the particle size being 5% to 25%; and\nthe secondary particles having an average particle size of 1 \u03bcm to 15 \u03bcm, and an index [(d90\u2212d10)/average particle size] that indicates the extent of the particle size distribution of 0.7 or less.",
"measurement_extractions": [
{
"quantity": "1 \u03bcm to 15 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "the secondary particles",
"measured_property": "average particle size"
},
{
"quantity": "0.7 or less",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "US10424787B2_1",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "2. Cathode active material for a non-aqueous electrolyte rechargeable battery comprising secondary particles that are formed by an aggregation of plural primary particles,\nthe cathode active material comprising layered hexagonal crystal lithium nickel manganese composite oxide particles that are expressed by the general expression (B): Li1+uNixMnyCozMtO2, where \u22120.05\u2264u\u22640.50, x+y+z+t=1, 0.3\u2264x\u22640.95, 0.05\u2264y\u22640.55, 0\u2264z\u22640.4, 0\u2264t\u22640.1, and M is one or more additional element that is selected from among Mg, Ca, Al, Ti, V, Cr, Zr, Nb, Mo, Hf, Ta and W,\nthe secondary particles comprising a center section comprising the aggregation of plural primary particles, the center section having a solid structure or hollow structure provided with a hollow part at its inside, an outer-shell section comprising the aggregation of plural primary particles and located on the outside of the center section, a hollow section located between the center section, and outer-shell section where there are no primary particles, at least one inner-shell section comprising the aggregation of plural primary particles and located between the center section and the outer-shell section, the at least one inner-shell section separated from the center section and the outer-shell section by the hollow section, and a connecting section electrically connecting among the outer-shell section, the inner-shell section and the center section; and\nthe secondary particles having an average particle size of 1 \u03bcm to 15 \u03bcm, and an index [(d90\u2212d10)/average particle size] that indicates the extent of the particle size distribution of 0.7 or less.",
"measurement_extractions": [
{
"quantity": "1 \u03bcm to 15 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "the secondary particles",
"measured_property": "average particle size"
},
{
"quantity": "0.7 or less",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "US10424787B2_2",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "4. The cathode active material for a non-aqueous electrolyte rechargeable battery according to claim 1, wherein the specific surface area is 0.7 m2/g to 3.0 m2/g.",
"measurement_extractions": [
{
"quantity": "0.7 m2/g to 3.0 m2/g",
"unit": "m2/g",
"measured_entity": "cathode active material",
"measured_property": "specific surface area"
}
],
"split": "val",
"docId": "US10424787B2_4",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "12. Pulverulent compound according to claim 1, characterized in that the normalized width of the particle size distribution, measured according to the Formula (1)\nD\ue89e\ue89e90-D\ue89e\ue89e10D\ue89e\ue89e50(1)\nin which D denotes the diameter of the secondary particles, is less than 1.4.",
"measurement_extractions": [
{
"quantity": "less than 1.4",
"unit": null,
"measured_entity": "the secondary particles",
"measured_property": "width of the particle size distribution"
}
],
"split": "val",
"docId": "US20090314985A1_12",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "13. Pulverulent compound according to claim 1, characterized in that the normalized width of the particle size distribution, measured according to the Formula (1)\nD\ue89e\ue89e90-D\ue89e\ue89e10D\ue89e\ue89e50(1)\nin which D denotes the diameter of the secondary particles, is less than 1.2.",
"measurement_extractions": [
{
"quantity": "less than 1.2",
"unit": null,
"measured_entity": "secondary particles",
"measured_property": "width of the particle size distribution"
}
],
"split": "val",
"docId": "US20090314985A1_13",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "14. Pulverulent compound according to claim 1, characterized in that it has a compressed density of at least 3.2 g/cm3at a compression pressure of 200 MPa.",
"measurement_extractions": [
{
"quantity": "at least 3.2 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "compressed density"
}
],
"split": "val",
"docId": "US20090314985A1_14",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "15. Pulverulent compound according to claim 1, characterized in that it has a tapped density measured according to ASTM B 527, of at least 2.2 g/cm3.",
"measurement_extractions": [
{
"quantity": "at least 2.2 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "tapped density"
}
],
"split": "val",
"docId": "US20090314985A1_15",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "16. Pulverulent compound according to claim 1, characterized in that it has a tapped density measured according to ASTM B 527, of at least 2.4 g/cm3.",
"measurement_extractions": [
{
"quantity": "at least 2.4 g/cm3",
"unit": "g/cm3",
"measured_entity": "Pulverulent compound",
"measured_property": "tapped density"
}
],
"split": "val",
"docId": "US20090314985A1_16",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "13. The precursor material of claim 1, wherein a sodium level within the precursor material is less than 500 ppm.",
"measurement_extractions": [
{
"quantity": "less than 500 ppm",
"unit": "ppm",
"measured_entity": "precursor material",
"measured_property": "sodium level"
}
],
"split": "val",
"docId": "US20130168600A1_10",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "14. The precursor material of claim 13, wherein a sodium level within the precursor material is less than 300 ppm.",
"measurement_extractions": [
{
"quantity": "less than 300 ppm",
"unit": "ppm",
"measured_entity": "precursor material",
"measured_property": "sodium level"
}
],
"split": "val",
"docId": "US20130168600A1_11",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "21. The method of claim 16, wherein the alkaline hydroxide maintains the solution at a pH in the range from about 11-13.",
"measurement_extractions": [
{
"quantity": "in the range from about 11-13",
"unit": null,
"measured_entity": "the alkaline hydroxide maintains the solution",
"measured_property": "pH"
}
],
"split": "val",
"docId": "US20130168600A1_16",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "26. The method of claim 16, wherein the amnmoia:metal molar ratio of the solution is in the range from about 0.1-3.0.",
"measurement_extractions": [
{
"quantity": "in the range from about 0.1-3.0",
"unit": null,
"measured_entity": "amnmoia",
"measured_property": "molar ratio of the solution"
}
],
"split": "val",
"docId": "US20130168600A1_21",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "27. The method of claim 26, wherein the ammonia:metal molar ratio of the solution is in the range from about 0.5-1.5.",
"measurement_extractions": [
{
"quantity": "in the range from about 0.5-1.5",
"unit": null,
"measured_entity": "ammonia",
"measured_property": "molar ratio of the solution"
}
],
"split": "val",
"docId": "US20130168600A1_22",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "28. The method of claim 16, wherein the co-precipitation is conducted at a temperature in the reactors at a temperature in the range from about 50-70\u00b0 C.",
"measurement_extractions": [
{
"quantity": "in the range from about 50-70\u00b0 C",
"unit": "\u00b0 C",
"measured_entity": "co-precipitation",
"measured_property": "temperature"
}
],
"split": "val",
"docId": "US20130168600A1_23",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "29. The method of claim 16, wherein the precursor material has an average particle size (D50) in the range from 3-30 microns.",
"measurement_extractions": [
{
"quantity": "3-30 microns",
"unit": "microns",
"measured_entity": "the precursor material",
"measured_property": "average particle size (D50"
}
],
"split": "val",
"docId": "US20130168600A1_24",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "30. The method of claim 29, wherein the precursor material has an average particle size (D50) in the range from 7-13 microns.",
"measurement_extractions": [
{
"quantity": "in the range from 7-13 microns",
"unit": "microns",
"measured_entity": "the precursor material",
"measured_property": "average particle size (D50"
}
],
"split": "val",
"docId": "US20130168600A1_25",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "31. The method of claim 16, wherein the precursor material has a tap density in the range from 0.8-2.8/cm3.",
"measurement_extractions": [
{
"quantity": "in the range from 0.8-2.8/cm3",
"unit": "/cm3",
"measured_entity": "the precursor material",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "US20130168600A1_26",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "32. The method of claim 31, wherein the precursor material has a tap density in the range from 1.8-2.3 g/cm3.",
"measurement_extractions": [
{
"quantity": "in the range from 1.8-2.3 g/cm3",
"unit": null,
"measured_entity": "the precursor material",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "US20130168600A1_27",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "33. The method of claim 16, wherein the precursor material has a surface area in the range from 2-20 nm/g.",
"measurement_extractions": [
{
"quantity": "in the range from 2-20 nm/g",
"unit": "nm/g",
"measured_entity": "the precursor material",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "US20130168600A1_28",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "34. The method of claim 33, wherein the precursor material has a surface area in the range from 2-8 m2/g.",
"measurement_extractions": [
{
"quantity": "in the range from 2-8 m2/g",
"unit": "m2/g",
"measured_entity": "the precursor material",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "US20130168600A1_29",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "35. The method of claim 16, wherein a sodium level within the precursor material is less than 500 ppm.",
"measurement_extractions": [
{
"quantity": "less than 500 ppm",
"unit": "ppm",
"measured_entity": "the precursor material",
"measured_property": "sodium level"
}
],
"split": "val",
"docId": "US20130168600A1_30",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "36. The method of claim 35, wherein a sodium level within the precursor material is less than 300 ppm.",
"measurement_extractions": [
{
"quantity": "less than 300 ppm",
"unit": "ppm",
"measured_entity": "the precursor material",
"measured_property": "sodium level"
}
],
"split": "val",
"docId": "US20130168600A1_31",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "7. The precursor material of claim 1, wherein the precursor material has an average particle size (D50) in the range from 3-30 microns.",
"measurement_extractions": [
{
"quantity": "in the range from 3-30 microns",
"unit": "microns",
"measured_entity": "precursor material",
"measured_property": "average particle size (D50"
}
],
"split": "val",
"docId": "US20130168600A1_4",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "8. The precursor material of claim 7, wherein the precursor material has an average particle size (D50) in the range from 7-13 microns.",
"measurement_extractions": [
{
"quantity": "in the range from 7-13 microns",
"unit": "microns",
"measured_entity": "precursor material",
"measured_property": "average particle size (D50"
}
],
"split": "val",
"docId": "US20130168600A1_5",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "9. The precursor material of claim 1, wherein the precursor material has a tap density in the range from 0.8-2.8 g-cm3.",
"measurement_extractions": [
{
"quantity": "in the range from 0.8-2.8 g-cm3",
"unit": "g-cm3",
"measured_entity": "precursor material",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "US20130168600A1_6",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10. The precursor material of claim 9, wherein the precursor material has a tap density in the range from 1.8-2.3 g/cm3.",
"measurement_extractions": [
{
"quantity": "in the range from 1.8-2.3 g/cm3",
"unit": "g/cm3",
"measured_entity": "precursor material",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "US20130168600A1_7",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "11. The precursor material of claim 1, wherein the precursor material has a surface area in the range from 2-20 m2/g.",
"measurement_extractions": [
{
"quantity": "in the range from 2-20 m2/g",
"unit": "m2/g",
"measured_entity": "precursor material",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "US20130168600A1_8",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "12. The precursor material of claim 11, wherein the precursor material has a surface area in the range from 2-8 m2/g.",
"measurement_extractions": [
{
"quantity": "in the range from 2-8 m2/g",
"unit": "m2/g",
"measured_entity": "precursor material",
"measured_property": "surface area"
}
],
"split": "val",
"docId": "US20130168600A1_9",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "15. The composite cathode active material of claim 14, wherein a thickness of the primary particles is about 2\u03b80 nm or less.",
"measurement_extractions": [
{
"quantity": "about 2\u03b80 nm",
"unit": "nm",
"measured_entity": "primary particles",
"measured_property": "thickness"
}
],
"split": "val",
"docId": "US20150287990A1_14",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "31. A lithium metal oxide powder for a positive electrode material in a rechargeable battery, having the general formula Li<sub>1+a</sub>M<sub>1\u2212a</sub>O<sub>2 </sub>where M=Ni<sub>x</sub>Mn<sub>y</sub>Co<sub>z</sub>A<sub>v</sub>, A being a dopant, wherein 0.10\u2266a<0.25, 0.10\u2266x<0.30, 0.55\u2266y\u22660.80, and 0<z\u22660.30, v\u22660.05, and x+y+z+v=1, the powder having a particle size distribution with 10 \u03bcm\u2266D50\u226620 \u03bcm, a specific surface with 0.9\u2266BET\u22665, the BET being expressed in m<sup>2</sup>/g, the powder further comprising a sodium and sulfur impurity, wherein the sum (2*Na<sub>wt</sub>)+S<sub>wt </sub>of the sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content expressed in wt % is more than 0.4 wt % and less than 1.6 wt %, and wherein the sodium to sulfur molar ratio (Na/S) is 0.4<NalS<2.",
"measurement_extractions": [
{
"quantity": "10 \u03bcm\u2266D50\u226620 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "the powder",
"measured_property": "particle size distribution"
},
{
"quantity": "0.9\u2266BET\u22665, the BET being expressed in m<sup>2</sup>/g",
"unit": "m<sup>2</sup>/g",
"measured_entity": "the powder",
"measured_property": "specific surface"
},
{
"quantity": "more than 0.4 wt %",
"unit": "wt %",
"measured_entity": "the powder",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
},
{
"quantity": "less than 1.6 wt %",
"unit": "wt %",
"measured_entity": "the powder",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
}
],
"split": "val",
"docId": "US20170309909A1_12",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "32. A method for preparing a carbonate precursor compound according to claim 21, comprising:\nproviding a feed solution comprising Ni-, Mn- and Co-ions, and a source of A, wherein the Ni-, Mn-, Co-and A-ions are present in a water soluble sulfate compound,\nproviding an ionic solution comprising a carbonate solution and Na-ions, wherein the CO<sub>3</sub>/SO<sub>4 </sub>rate is selected so as to obtain a Na/S molar ratio with 0.4<Na/S<2 and the sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content expressed in wt % yield a sum (2*Na<sub>wt</sub>)+S<sub>wt </sub>of more than 0.4 wt % and less than 1.6 wt %,\nproviding a slurry comprising seeds comprising M\u2032-ions, wherein M\u2032=NixMnyCozA\u2032n, A\u2032 being a dopant, with 0\u2266x\u2032\u22661, 0\u2266y\u2032\u22661, 0\u2266z\u2032\u22661, 0\u2266n\u2032\u22661 and x\u2032+y\u2032+z\u2032+n\u2032=1,\nmixing the feed solution, the ionic solution and the slurry in the reactor, thereby obtaining a reactive liquid mixture,\nprecipitating a carbonate onto the seeds in the reactive liquid mixture, thereby obtaining a reacted liquid mixture and the carbonate precursor, and\nseparating the carbonate precursor from the reacted liquid mixture.",
"measurement_extractions": [
{
"quantity": "more than 0.4 wt %",
"unit": "wt %",
"measured_entity": "sulfur",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
},
{
"quantity": "less than 1.6 wt %",
"unit": "wt %",
"measured_entity": "sulfur",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
}
],
"split": "val",
"docId": "US20170309909A1_13",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "36. The method according to claim 32, wherein the concentration of NH3in the reactor is less than 5.0 g/L.",
"measurement_extractions": [
{
"quantity": "less than 5.0 g/L",
"unit": null,
"measured_entity": "NH3in the reactor",
"measured_property": "concentration"
}
],
"split": "val",
"docId": "US20170309909A1_17",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "21. A carbonate precursor compound for manufacturing a lithium metal (M)-oxide powder usable as an active positive electrode material in lithium-ion batteries, M comprising 20 to 90 mol % Ni, 10 to 70 mol % Mn and 10 to 40 mol % Co, the precursor further comprising a sodium and sulfur impurity, wherein the sodium to sulfur molar ratio (Na/S) is 0.4<Na/S<2, and wherein the sum (2*Na<sub>wt</sub>)+S<sub>wt </sub>of the sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content expressed in wt % is more than 0.4 wt % and less than 1.6 wt %.",
"measurement_extractions": [
{
"quantity": "more than 0.4 wt %",
"unit": "wt %",
"measured_entity": "sodium and sulfur impurity",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
},
{
"quantity": "less than 1.6 wt %",
"unit": "wt %",
"measured_entity": "sodium and sulfur impurity",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
}
],
"split": "val",
"docId": "US20170309909A1_2",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "39. The method according to claim 32, wherein the seeds have a median particle size D50 between 0.1 and 3 \u03bcm.",
"measurement_extractions": [
{
"quantity": "between 0.1 and 3 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "the seeds",
"measured_property": "median particle size D50"
}
],
"split": "val",
"docId": "US20170309909A1_20",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "25. The carbonate precursor compound of claim 21, wherein the sodium content is between 0.1 and 0.7 wt %, and the sulfur content is between 0.2 and 0.9 wt %.",
"measurement_extractions": [
{
"quantity": "between 0.1 and 0.7 wt %",
"unit": "wt %",
"measured_entity": "carbonate precursor",
"measured_property": "sodium content"
},
{
"quantity": "between 0.2 and 0.9 wt %",
"unit": "wt %",
"measured_entity": "carbonate precursor",
"measured_property": "sulfur content"
}
],
"split": "val",
"docId": "US20170309909A1_6",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "26. A lithium metal oxide powder for a positive electrode material in a rechargeable battery, having the general formula Li<sub>1+a</sub>M<sub>1\u2212a</sub>O<sub>2 </sub>where M=Ni<sub>x</sub>Mn<sub>y</sub>Co<sub>z</sub>A<sub>v</sub>, A being a dopant, wherein \u22120.05\u2266a\u22660.25, 0.20\u2266x\u22660.90, 0.10\u2266y\u22660.67, and 0.10\u2266z\u22660.40, v\u22660.05, and x+y+z+v=1, the powder having a particle size distribution with 10 \u03bcm\u2266D50\u226620 \u03bcm, a specific surface with 0.9\u2266BET\u22665, the BET being expressed in m<sup>2</sup>/g, the powder further comprising a sodium and sulfur impurity, wherein the sum (2*Na<sub>wt</sub>)+S<sub>wt </sub>of the sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content expressed in wt % is more than 0.4 wt % and less than 1.6 wt %, and wherein the sodium to sulfur molar ratio (Na/S) is 0.4<Na/S<2.",
"measurement_extractions": [
{
"quantity": "10 \u03bcm\u2266D50\u226620 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "the powder",
"measured_property": "particle size distribution"
},
{
"quantity": "0.9\u2266BET\u22665, the BET being expressed in m<sup>2</sup>/g",
"unit": "m<sup>2</sup>/g",
"measured_entity": "the powder",
"measured_property": "specific surface"
},
{
"quantity": "more than 0.4 wt %",
"unit": "wt %",
"measured_entity": "the powder",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
},
{
"quantity": "less than 1.6 wt %",
"unit": "wt %",
"measured_entity": "the powder",
"measured_property": "sodium (Na<sub>wt</sub>) and sulfur (S<sub>wt</sub>) content"
}
],
"split": "val",
"docId": "US20170309909A1_7",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "5. The method of claim 3, wherein, in preparing of the metal precursor, a metal salt solution is added to the reactor to allow a reaction to occur until a metal precursor having a particle size in a range of 3 micrometers (\u03bcm) to 15 \u03bcm and a tap density in a range of 1.8 grams per cubic centimeter (g/cc) to 2.0 g/cc is obtained.",
"measurement_extractions": [
{
"quantity": "in a range of 3 micrometers (\u03bcm) to 15 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "precursor",
"measured_property": "particle size"
},
{
"quantity": "in a range of 1.8 grams per cubic centimeter (g/cc) to 2.0 g/cc",
"unit": "g/cc",
"measured_entity": "precursor",
"measured_property": "tap density"
}
],
"split": "val",
"docId": "US20180145319A1_5",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "7. The method of claim 3, wherein, before adding of the hydroxide of the doped material M\u2032, a pH of the solution comprising the metal precursor is adjusted to a range of 10 to 12, and after adding of the hydroxide of the doped material M\u2032, the pH is gradually adjusted to a range of 9 to 10 during co-deposition.",
"measurement_extractions": [
{
"quantity": "a range of 10 to 12",
"unit": null,
"measured_entity": "the solution",
"measured_property": "pH"
},
{
"quantity": "a range of 9 to 10",
"unit": null,
"measured_entity": "the solution",
"measured_property": "pH"
}
],
"split": "val",
"docId": "US20180145319A1_7",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "1. A positive-electrode active material precursor for a nonaqueous electrolyte secondary battery, the positive-electrode active material precursor comprising:\na nickel-cobalt-manganese carbonate composite represented by a general formula of NixCoyMnzMtCO3where x+y+z+t=1, 0.05\u2264x\u22640.3, 0.1\u2264y\u22640.4, 0.55\u2264z\u22640.8, and 0\u2264t\u22640.1 are satisfied; and M represents one or more additive elements selected from among Mg, Ca, Al, Ti, V, Cr, Zr, Nb, Mo, and W,\nwherein the positive-electrode active material precursor includes secondary particles having an average particle diameter greater than or equal to 4 \u03bcm and less than or equal to 9 \u03bcm, and\nwherein the secondary particle includes a sparse central portion and a dense outer shell portion outside of the central portion, formed of primary particles.",
"measurement_extractions": [
{
"quantity": "greater than or equal to 4 \u03bcm and less than or equal to 9 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "secondary particles",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "US20190013519A1_1",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "3. A positive-electrode active material for a nonaqueous electrolyte secondary battery, the positive-electrode active material comprising:\na lithium-metal compound oxide represented by a general formula of Li1+\u03b1NixCoyMnzMtO2where 0.25\u2264\u03b1\u22640.55, x+y+z+t=1, 0.05\u2264x\u22640.3, 0.1\u2264y\u22640.4, 0.55\u2264z\u22640.8, and 0\u2264t\u22640.1 are satisfied; and M represents one or more additive elements selected from among Mg, Ca, Al, Ti, V, Cr, Zr, Nb, Mo, and W,\nwherein the positive-electrode active material precursor includes secondary particles having an average particle diameter greater than or equal to 4 \u03bcm and less than or equal to 8 \u03bcm, and\nwherein the secondary particle has a particle shape including an outer shell portion and a hollow portion surrounded by the outer shell portion.",
"measurement_extractions": [
{
"quantity": "greater than or equal to 4 \u03bcm and less than or equal to 8 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "secondary particles",
"measured_property": "average particle diameter"
}
],
"split": "val",
"docId": "US20190013519A1_3",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "6. A method for manufacturing a positive-electrode active material precursor for a nonaqueous electrolyte secondary battery containing a nickel-cobalt-manganese carbonate compound represented by a general formula of NixCoyMnzMtCO3where x+y+z+t=1, 0.05\u2264x\u22640.3, 0.1\u2264y\u22640.4, 0.55\u2264z\u22640.8, and 0\u2264t\u22640.1 are satisfied; and M represents one or more additive elements selected from among Mg, Ca, Al, Ti, V, Cr, Zr, Nb, Mo, and W, the method comprising:\nan initial aqueous solution preparation process of preparing an initial aqueous solution that contains an ammonium ion supplier and water, in which a pH value is controlled to be greater than or equal to 9.0 and less than or equal to 12.0 by an alkaline aqueous solution at a reference reaction temperature of 25\u00b0 C., and a liquid temperature is set greater than or equal to 25\u00b0 C. and less than or equal to 50\u00b0 C.;\na nucleation process of forming nuclei by adding and mixing, under presence of carbonate ions, an aqueous solution that contains nickel as a metal component, an aqueous solution that contains cobalt as a metal component, an aqueous solution that contains manganese as a metal component, and an ammonium ion supplier, with the initial aqueous solution so as to form a mixed aqueous solution; and\na nucleus growth process of growing the nuclei by adding and mixing, under presence of carbonate ions, an aqueous solution that contains nickel as a metal component, an aqueous solution that contains cobalt as a metal component, an aqueous solution that contains manganese as a metal component, and an ammonium ion supplier, with the mixed aqueous solution formed in the nucleation process,\nwherein in the nucleation process, a pH value of the mixed aqueous solution is controlled to be greater than or equal to 8.0 at the reference reaction temperature of 25\u00b0 C., by adding an alkaline aqueous solution,\nwherein in the nucleus growth process, the pH value of the mixed aqueous solution is controlled to be greater than or equal to 6.0 and less than or equal to 7.5 at the reference reaction temperature of 25\u00b0 C., by adding the alkaline aqueous solution, and\nwherein the nucleation process takes a time greater than or equal to 1/20 and less than or equal to 3/10 of a combined time of the nucleation process and the nucleus growth process, to add the aqueous solution that contains nickel as the metal component, the aqueous solution that contains cobalt as the metal component, the aqueous solution that contains manganese as the metal component, and the ammonium ion supplier, to the initial aqueous solution.",
"measurement_extractions": [
{
"quantity": "greater than or equal to 9.0 and less than or equal to 12.0",
"unit": null,
"measured_entity": "process of preparing",
"measured_property": "pH value"
},
{
"quantity": "25\u00b0 C",
"unit": "\u00b0 C",
"measured_entity": "process of preparing",
"measured_property": "reaction temperature"
},
{
"quantity": "greater than or equal to 25\u00b0 C",
"unit": "\u00b0 C",
"measured_entity": "process of preparing",
"measured_property": "liquid temperature"
},
{
"quantity": "greater than or equal to 8.0",
"unit": null,
"measured_entity": "the nucleation process",
"measured_property": "pH value"
},
{
"quantity": "25\u00b0 C",
"unit": "\u00b0 C",
"measured_entity": "the nucleation process",
"measured_property": "reaction temperature"
},
{
"quantity": "greater than or equal to 6.0 and less than or equal to 7.5",
"unit": null,
"measured_entity": "the nucleus growth process",
"measured_property": "pH value"
},
{
"quantity": "25\u00b0 C",
"unit": "\u00b0 C",
"measured_entity": "the nucleus growth process",
"measured_property": "reaction temperature"
}
],
"split": "val",
"docId": "US20190013519A1_6",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "9. The method for manufacturing the positive-electrode active material precursor for the nonaqueous electrolyte secondary battery as claimed in claim 6, wherein during processes ranging from the initial aqueous solution preparation process to the nucleus growth process, an ammonia concentration of the initial aqueous solution and the mixed aqueous solution is controlled to be greater than or equal to 3 g/L and less than or equal to 15 g/L.",
"measurement_extractions": [
{
"quantity": "greater than or equal to 3 g/L and less than or equal to 15 g/L",
"unit": "g/L",
"measured_entity": "ammonia",
"measured_property": "ammonia concentration"
}
],
"split": "val",
"docId": "US20190013519A1_9",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "13. Particulate transition metal (oxy)hydroxide according to claim 11 or 12 having a specific surface according to BET in the range of from 2 to 70 m2/g.",
"measurement_extractions": [
{
"quantity": "in the range of from 2 to 70 m2/g",
"unit": "m2/g",
"measured_entity": "Particulate transition metal (oxy)hydroxide",
"measured_property": "specific surface according to BET"
}
],
"split": "val",
"docId": "WO2020207901A1_13",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "14. Particulate transition metal (oxy) hydroxide according to any of the claims 11 to 13 wherein the particle size distribution [(D90) - (D10)] divided by (D50) is in the range of from 0.5 to 2.",
"measurement_extractions": [
{
"quantity": "is in the range of from 0.5 to 2",
"unit": null,
"measured_entity": "Particulate transition metal (oxy) hydroxide",
"measured_property": "particle size distribution [(D90) - (D10)] divided by (D50)"
}
],
"split": "val",
"docId": "WO2020207901A1_14",
"dataset": "bm"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "21. Cathode active material according to any of claims 18 to 20 wherein the primary particle size distribution has a span [(D90) - (D10)] divided by (D50), is in the range of from 0.5 to 1.1.",
"measurement_extractions": [
{
"quantity": "in the range of from 0.5 to 1.1",
"unit": null,
"measured_entity": "the primary",
"measured_property": "particle size distribution"
}
],
"split": "val",
"docId": "WO2020207901A1_21",
"dataset": "bm"
}
] |