File size: 33,045 Bytes
6b3ba3d 23941f8 6b3ba3d 23941f8 6b3ba3d | 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 | {
"architectures": [
"ASTForAudioClassification"
],
"attention_probs_dropout_prob": 0.0,
"dtype": "float32",
"frequency_stride": 10,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.0,
"hidden_size": 768,
"id2label": {
"0": "FSK441",
"1": "B-Netz",
"2": "Relocatable Over-the-Horizon Radar (ROTHR)",
"3": "LEOSAR Downlink",
"4": "Inmarsat IsatM2M",
"5": "CLOVER-II",
"6": "BPC",
"7": "SKiYMET",
"8": "WEFAX",
"9": "Secondary surveillance radar (SSR)",
"10": "Single frequency russian overhead power line telemetry system",
"11": "PACTOR IV",
"12": "CRY2001 Voice Scrambler",
"13": "49MHz RC Car Controller",
"14": "Multi Frequency Shift Keying (MFSK)",
"15": "PLUTO II OTH Radar",
"16": "CAS-4A/B Satellite Telemetry",
"17": "Jim Creek (NLK)",
"18": "Emergency Managers Weather Information Network (EMWIN) - Repeater",
"19": "Datawell Buoy HF Link",
"20": "CIS-50-50",
"21": "Factory installed alarm system Land Rover Discovery 4",
"22": "2G CDMA (IS-95)",
"23": "GRAW DFM-09 Weather Balloon (Radiosonde)",
"24": "Chinese Multitonal Jammer",
"25": "GOES Rebroadcast (GRB)",
"26": "Digital Private Mobile Radio (dPMR)",
"27": "High Frequency Data Link (HFDL)",
"28": "PSK-AM",
"29": "Total Access Communication System (TACS)",
"30": "Continuous Tone-Coded Squelch System (CTCSS)",
"31": "Digital-Coded Squelch (DCS)",
"32": "Israeli VFT",
"33": "CIS-11",
"34": "SAS/SRC",
"35": "Japanese Slot Machine (XSL)",
"36": "Chinese-64 MFSK",
"37": "THOR",
"38": "John Deere RTK Radio 450",
"39": "Wireless Hydrophone System (WHS)",
"40": "GRAVES",
"41": "North Korean Siren Jammer",
"42": "1G Advanced Mobile Phone System (AMPS)",
"43": "DoD Fire Alarm Control Panel",
"44": "CIS MFSK-16 XPA2",
"45": "Q15X25",
"46": "PSK Paging link",
"47": "Automatic Link Establishment (3G ALE ARCS)",
"48": "RDL",
"49": "Lockheed Martin LMS-6 (Radiosonde)",
"50": "WinDRM",
"51": "Automatic Vehicle Monitoring (AVM)",
"52": "Ultra Low Latency (ULL) Electronic Trading Network",
"53": "MDC-4800",
"54": "Chinese 160kHz-wide OTH radar",
"55": "Thales Syst\u00e8me 3000 HF Modem",
"56": "DUP-ARQ",
"57": "CIS-14",
"58": "VHF Omnidirectional Range (VOR)",
"59": "CIS-1280",
"60": "RUM-FEC",
"61": "ECG Telemetry",
"62": "CDMA2000 (3G physical layer)",
"63": "The Alarm",
"64": "HD Radio (AM)",
"65": "SP-14 (XP)",
"66": "T-230-1A 'Mahovik'",
"67": "ELEKTRO-L GGAK-E Direct Broadcast",
"68": "STANAG 5065",
"69": "BPM",
"70": "Digisonde",
"71": "AFSK Paging Link",
"72": "HP Laptop",
"73": "Terrestrial Trunked Radio (TETRA)",
"74": "Gonets",
"75": "AIST 2D",
"76": "Hellschreiber",
"77": "DUP-FEC-2",
"78": "DUP-ARQ-2",
"79": "Motorola ASTRO 25 HPD Air Interface",
"80": "Israeli Navy Hybrid Modem (188-110 MOD)",
"81": "CIS 3x144 VFT",
"82": "Enhanced Digital Access Communications System (EDACS)",
"83": "Distributed Power Unit (DPU)",
"84": "Wettersonde E084 (Radiosonde)",
"85": "Adam H Secure Communication (AHSC)",
"86": "HFGCS (High Frequency Global Communications System)",
"87": "Chinese Firedrake Jammer",
"88": "FST4W",
"89": "CCIR 493-4 Selcall",
"90": "Serdolik",
"91": "OPERA Beacon and Data",
"92": "CV-786",
"93": "CIS FTM-4",
"94": "CHU",
"95": "CIS 3x100 VFT",
"96": "JT65",
"97": "Russian Diplo VFT PSK 64Bd",
"98": "CLOVER-I",
"99": "Israeli Intelligence VFT",
"100": "The 'Air Horn'",
"101": "Alps Electric Co. TWB1U840 Key Fob",
"102": "Russian Intelligence 200bd 1000Hz FSK",
"103": "Yugoslavian 20-Tone Modem",
"104": "STANAG 4481",
"105": "Next Generation Digital Narrowband (NXDN)",
"106": "GM2100 (R&S)",
"107": "Radio Telephone Network C (C-Netz)",
"108": "Nissan Car Key",
"109": "SHR",
"110": "Motorola MOSCAD SCADA telemetry",
"111": "Bluetooth",
"112": "Induction cooker interference",
"113": "HC-265 Voice Scrambler",
"114": "STANAG 4197",
"115": "Distress Radiobeacon (Analog)",
"116": "Saab Grintek MHF-50 MFSK Modem",
"117": "Contestia",
"118": "Schneider Trio E-Series Modem",
"119": "PSK2K",
"120": "IRA-ARQ",
"121": "SiriusXM Satellite Radio",
"122": "Dual Tone Multi Frequency (DTMF)",
"123": "Piccolo",
"124": "SSTV",
"125": "Iranian Navy QPSK Modem",
"126": "Beta",
"127": "\u00c9lectricit\u00e9 de France HNZ",
"128": "SITOR-A",
"129": "LTE-M",
"130": "RBU",
"131": "North Korean Diplo FSK",
"132": "ALE-400",
"133": "HORYU-4 Telemetry",
"134": "Acer X222W monitor, sleep pulse",
"135": "DB0UPB research beacon",
"136": "GOES Data Collection System (DCS)",
"137": "CIS-20",
"138": "Meteomodem M10 Weather Balloon (Radiosonde)",
"139": "Radio Data System (RDS)",
"140": "WinLink Global Email Radio System (WGERS)",
"141": "CIS MFSK-68",
"142": "CIS-300",
"143": "MSF",
"144": "Improved Automatic Link Set-up (ALIS-2)",
"145": "NTSC Broadcast",
"146": "Wireless Temperature Sensor",
"147": "Russian overhead power line telemetry system",
"148": "PACKET",
"149": "RTS-9TS Russian spacecraft telemetry system",
"150": "MPT 1327",
"151": "GYN2 GBR",
"152": "Digital Audio Broadcasting (DAB)",
"153": "Cuban Jammer",
"154": "RTTYM",
"155": "8PSK",
"156": "CIS OFDM HDR Modem",
"157": "AUTOSPEC",
"158": "VOICE",
"159": "Automatic Identification System (AIS)",
"160": "DeltaFix",
"161": "VHF Data Link - Mode 2 (VDL-M2)",
"162": "MRZ-N1 Weather Balloon (radiosonde)",
"163": "BR-6028",
"164": "VARA HF",
"165": "CCIR Selcall",
"166": "Siemens CHX-200 FSK Modem",
"167": "WSPR",
"168": "Multitone Paging",
"169": "ASCII",
"170": "VISEL",
"171": "FLASH-OFDM",
"172": "EFR Teleswitch",
"173": "Duga 3",
"174": "Motorola Type II",
"175": "Emergency Alert System (EAS)",
"176": "NOAA Direct Sounder Broadcast (DSB)",
"177": "Radar altimeter",
"178": "NB-IOT",
"179": "CIS-12",
"180": "FUNcube-1 Telemetry",
"181": "MFJ-269C Antenna SWR Analyzer",
"182": "Rain Master sprinkler control",
"183": "AMSAT-P3D",
"184": "MIL-STD-188-110 Serial",
"185": "Toyota Car Key",
"186": "MD-522",
"187": "Ionosonde",
"188": "NOV",
"189": "UK GOV MIL WINDRM51",
"190": "Electric Fence Remote Control",
"191": "Radioteknicheskaya Systema Dalyoloiy Navigatsii (RSDN-20)",
"192": "Golay Paging (GSC)",
"193": "DominoEX",
"194": "Vaisala RS92-SGP Weather Balloon (Radiosonde)",
"195": "Digital NBTV",
"196": "FSQ",
"197": "Mazda SKE126-01 Key Fob",
"198": "MDC1200",
"199": "Transit 5B-5",
"200": "Glenayre Paging Link",
"201": "FLEX",
"202": "Inmarsat-C TDM",
"203": "THROB",
"204": "Primex Wireless Time Sync",
"205": "OrbComm Mobile Telephony",
"206": "ISM Band Weather sensor",
"207": "STP403 Bus PIT System",
"208": "BMW Key-Code signal",
"209": "RF heating and welding interference",
"210": "Vietnamese Siren Jammer",
"211": "Meteomodem PilotSonde Weather Balloon",
"212": "CIS 3xBaudot-50 VFT",
"213": "FT8",
"214": "Marconi Selenia 25-Tone Modem",
"215": "JT9",
"216": "Frequency Division Multiplex Digital Voice (FDMDV)",
"217": "NATEL",
"218": "Adam H Image Capable Digital Mode (AHICDM)",
"219": "ARQ-M2-342",
"220": "GSM TCH traffic channels non frequency hopping",
"221": "PACTOR III",
"222": "MIL-STD-110-342",
"223": "CIS-36-50",
"224": "High Frequency Active Auroral Research Program (HAARP)",
"225": "AKKORD-SS-PD",
"226": "MSM-1250 Modem",
"227": "NFM Voice",
"228": "Federal Signal Modem-MSK",
"229": "VDEW",
"230": "Single Sideband Voice",
"231": "Mazielka (X06)",
"232": "Delfi-C3 Telemetry",
"233": "TT2300",
"234": "Vaisala RS92-KL Weather Balloon (Radiosonde)",
"235": "ARQ-M4-342",
"236": "HNG-FEC",
"237": "SkyOFDM",
"238": "MSK144",
"239": "MPT1394 Keyfob",
"240": "UHF Vehicle Location System",
"241": "Motorola SECURENET",
"242": "4G LTE Network",
"243": "NPM",
"244": "FT4",
"245": "JT6M",
"246": "Q65",
"247": "Lentus",
"248": "Kia SVI-JFRGE04 Key Fob",
"249": "Supervisory Control And Data Acquisition (SCADA)",
"250": "WLO",
"251": "CIS-40.5",
"252": "RAC-ARQ",
"253": "M20 Radiosonde",
"254": "STANAG 4285",
"255": "Switching Electronic Interference",
"256": "ARQ-N",
"257": "Kiwi",
"258": "Integrated Digital Enhanced Network (iDEN)",
"259": "Olivia",
"260": "Smart TV Interference",
"261": "ZVEI Selcall",
"262": "PAX",
"263": "CIS MFSK-20 XPA",
"264": "Gandalf MDT",
"265": "CHIP",
"266": "CLOVER 2500",
"267": "D-STAR",
"268": "Futuba RC Controller",
"269": "SAS3",
"270": "LoJack",
"271": "Digital Enhanced Cordless Telecommunications (DECT)",
"272": "Graw DFM-17 (Radiosonde)",
"273": "MT63",
"274": "Global System for Mobile Communications (GSM)",
"275": "FST4",
"276": "Russian OTH 'Ghadir' type",
"277": "FM Broadcast Radio",
"278": "VEZHA-S",
"279": "OOK RC Car Remote Control",
"280": "EIA",
"281": "PAL Broadcast",
"282": "CIS-128",
"283": "Meteosat WEFAX",
"284": "IS-54 & IS-136 D-AMPS",
"285": "DominoF",
"286": "Yugoslavian 16-Tone Modem",
"287": "MODAT",
"288": "GMDSS Digital Selective Calling",
"289": "29B6 'Kontayner' OTH Radar",
"290": "FM NBTV",
"291": "Automatic Dependent Surveillance-Broadcast (ADS-B)",
"292": "TWINPLEX",
"293": "HD Radio (FM)",
"294": "MOBITEX",
"295": "'OTH-SW' OTH Radar",
"296": "Russian MFSK-OFDM-chirp hybrid modem",
"297": "Digital Mobile Radio (DMR)",
"298": "DisplayPort Interference",
"299": "Chinese 4+4",
"300": "KG-STV",
"301": "European Radio Message System (ERMES)",
"302": "Global Positioning System (GPS)",
"303": "Coherent BPSK",
"304": "Redundant Digital File Transfer (RDFT)",
"305": "ARQ-M2-242",
"306": "SIGFOX",
"307": "FEC-A",
"308": "Nordic Mobile Telephone (NMT)",
"309": "Portable Traffic Lights",
"310": "STANAG 4415",
"311": "ISCAT",
"312": "3G WCDMA",
"313": "CCITT",
"314": "Thales SALAMANDRE (HFXL)",
"315": "Pursuit Wireless Car Key",
"316": "OpenSky",
"317": "WiMAX",
"318": "Amplitude Modulation Signalling System (AMSS)",
"319": "Digital Video Broadcasting \u2014 Terrestrial (DVB-T)",
"320": "SPREAD",
"321": "Amplitude Modulation (AM)",
"322": "2006 Kia Grand Carnival Keyfob",
"323": "MIL-STD-188-110 Appendix B 39-Tone",
"324": "Automatic Packet Reporting System (APRS)",
"325": "Automatic Link Establishment (2G ALE)",
"326": "Radio Teletype (RTTY)",
"327": "Ground-Based Augmentation System (GBAS)",
"328": "DCF77",
"329": "802.11n",
"330": "LORAN",
"331": "SI-FEC",
"332": "ARGOS A-DCS",
"333": "Grimeton Radio (SAQ)",
"334": "CDMA420",
"335": "OFDM NBTV",
"336": "LoRa",
"337": "North Korean Diplo PSK",
"338": "POL-ARQ",
"339": "BALDR Weather Sensor Telemetry",
"340": "Yachta T-219 Voice Scrambler",
"341": "RWM",
"342": "ISM Band device",
"343": "Pulse Coded Modulated (PCM) RC Toy",
"344": "M17 RF Protocol",
"345": "Phase Shift Keying (PSK)",
"346": "One Beep, Two Beeps",
"347": "CIS MFSK-21-13",
"348": "Driftnet Buoy Radio Beacon",
"349": "ARQ-E(E3)",
"350": "Powerline Over Ethernet",
"351": "RUM-MOI FEC",
"352": "CIS-112",
"353": "JJY",
"354": "Yaesu System Fusion",
"355": "Automatic Picture Transmission (APT)",
"356": "MMP-4800",
"357": "The Goose",
"358": "Logic Trunked Radio (LTR)",
"359": "MD-674",
"360": "G-TOR",
"361": "'Ghadir' OTH Radar",
"362": "CLOVER 2000",
"363": "Chinese 'Foghorn' OTH radar",
"364": "The Pip",
"365": "MIL-STD-188-110 Appendix A 16-Tone",
"366": "SNOTEL (Snow Telemetry)",
"367": "Snap Circuits SCROV-10 Remote Control",
"368": "STANAG 4539",
"369": "77Ya6 'Voronezh' radar",
"370": "FreeDV plus Video",
"371": "CIS-8181",
"372": "Positive Train Control (PTC)",
"373": "Digital Radio Mondiale (DRM)",
"374": "Non-Directional Beacon (NDB)",
"375": "Orbcomm",
"376": "Panther-H Modem",
"377": "FreeDV COHPSK",
"378": "CIS-16",
"379": "Ionized Meteor Trails",
"380": "STANAG 4529",
"381": "ICAO Selcal",
"382": "Codan Data Modem",
"383": "UIC 751-3",
"384": "Siemens 1.5T MRI Scanner",
"385": "Radio Data Link Access Procedure (RD-LAP)",
"386": "LTE Uplink",
"387": "QO-100-modem",
"388": "Q-MAC HF Modem",
"389": "PACTOR II",
"390": "RS80",
"391": "Tire Pressure Monitoring System (TPMS)",
"392": "PRC-16",
"393": "Vaisala RS41-SG Weather Balloon (Radiosonde)",
"394": "MONITOR-2(RS39S)",
"395": "Nokia Adaptive Message Terminal",
"396": "PACTOR I",
"397": "SAS2",
"398": "Jindalee Operational Radar Network (JORN)",
"399": "SITOR-B",
"400": "Milstar",
"401": "UTC (Coordinated Universal Time) Time Standard",
"402": "Primary Aeronautical Surveillance Radar",
"403": "CIS-48",
"404": "XMPP trails",
"405": "ARQ6-90",
"406": "Project 25 (P25)",
"407": "Thales Syst\u00e8me 3000 Voice Scrambler",
"408": "Wireless Smart Utility Networks (Wi-SUN)",
"409": "Chilean Naval Time Signal",
"410": "ReFLEX",
"411": "NWC",
"412": "Pager SSTV",
"413": "High Speed USB Noise",
"414": "Thales Syst\u00e8me 3000 Skyhopper",
"415": "Graw DFM-06 Weather Balloon (Radiosonde)",
"416": "Digital Audio Broadcasting Plus (DAB+)",
"417": "HyperFix",
"418": "5G \"New Radio\" cellular network - Downlink",
"419": "National Public Alerting System (NPAS)",
"420": "ProVoice",
"421": "Modernised High Frequency Communications System (MHFCS)",
"422": "ARQ6-98",
"423": "Automatic Link Set-up (ALIS)",
"424": "SuperDARN (Super Dual Auroral Radar Network)",
"425": "ARQ-M4-242",
"426": "Hyundai Mobis RKE-4F16 Key Fob",
"427": "Horus Binary 4FSK - v2",
"428": "ILS Marker Beacon",
"429": "Iridium",
"430": "North Korean Noise Jammer",
"431": "Broadband Global Area Network (BGAN)",
"432": "Robust PACKET",
"433": "Chinese 30-tone OFDM modem",
"434": "Globe Wireless HF Network",
"435": "Distress Radiobeacon (Digital)",
"436": "Inmarsat-D(D+) Downlink",
"437": "COFDMTV",
"438": "Link-11 (UHF)",
"439": "Denso 4EA Key Fob",
"440": "SWED-ARQ",
"441": "Japan Military 8-Channel FSK",
"442": "Tetrapol",
"443": "Instrument Landing System",
"444": "HC-ARQ",
"445": "Microsonde Mark II Weather Balloon - LORAN-C signal (Radiosonde)",
"446": "SI-ARQ",
"447": "Polish Intelligence 100bd 625Hz FSK",
"448": "Morse Code (CW)",
"449": "China digital radio (CDR)",
"450": "Slow-Scan Television (SSTV)",
"451": "Lightning Sferics",
"452": "CIS-3000",
"453": "ROS",
"454": "Inmarsat Aero",
"455": "ICV",
"456": "Aircraft Communications Addressing and Reporting System (ACARS)",
"457": "EURO",
"458": "End of Train Device (EOTD)",
"459": "UK AM Data System (UK-AMDS)",
"460": "'Vario' Airplane Data Controller",
"461": "EEA",
"462": "CODAR",
"463": "High Frequency Data and Voice Link (HFDVL)",
"464": "JS8",
"465": "CompuLert",
"466": "Aprizesat",
"467": "Automatic Transmitter Identification System (ATIS)",
"468": "Accurate positioning by Low Frequencies (ALF)",
"469": "Eurobalise downlink",
"470": "RFID",
"471": "Digital Dispatch Systems MDT",
"472": "ICARUS (International Cooperation for Animal Research Using Space)",
"473": "Autocab",
"474": "IMet-1 RS Radiosonde",
"475": "Coherent CW",
"476": "Binary Interchange of Information and Signaling (BIIS)",
"477": "NML",
"478": "The Buzzer (ZhUOZ MDZhB UZB76)",
"479": "JTMS",
"480": "POCSAG",
"481": "Tactical Air Navigation System (TACAN)",
"482": "Sonne",
"483": "Coquelet",
"484": "TDF",
"485": "CBET",
"486": "Automated Train Control System (ATCS)",
"487": "Visonic MCT-201",
"488": "Differential Global Positioning System (DGPS)",
"489": "WWVB",
"490": "Canadian Meteor Orbit Radar (CMOR)",
"491": "PI4",
"492": "Link-11",
"493": "JT4",
"494": "CIS MFSK-16 XPB"
},
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"'Ghadir' OTH Radar": 361,
"'OTH-SW' OTH Radar": 295,
"'Vario' Airplane Data Controller": 460,
"1G Advanced Mobile Phone System (AMPS)": 42,
"2006 Kia Grand Carnival Keyfob": 322,
"29B6 'Kontayner' OTH Radar": 289,
"2G CDMA (IS-95)": 22,
"3G WCDMA": 312,
"49MHz RC Car Controller": 13,
"4G LTE Network": 242,
"5G \"New Radio\" cellular network - Downlink": 418,
"77Ya6 'Voronezh' radar": 369,
"802.11n": 329,
"8PSK": 155,
"AFSK Paging Link": 71,
"AIST 2D": 75,
"AKKORD-SS-PD": 225,
"ALE-400": 132,
"AMSAT-P3D": 183,
"ARGOS A-DCS": 332,
"ARQ-E(E3)": 349,
"ARQ-M2-242": 305,
"ARQ-M2-342": 219,
"ARQ-M4-242": 425,
"ARQ-M4-342": 235,
"ARQ-N": 256,
"ARQ6-90": 405,
"ARQ6-98": 422,
"ASCII": 169,
"AUTOSPEC": 157,
"Accurate positioning by Low Frequencies (ALF)": 468,
"Acer X222W monitor, sleep pulse": 134,
"Adam H Image Capable Digital Mode (AHICDM)": 218,
"Adam H Secure Communication (AHSC)": 85,
"Aircraft Communications Addressing and Reporting System (ACARS)": 456,
"Alps Electric Co. TWB1U840 Key Fob": 101,
"Amplitude Modulation (AM)": 321,
"Amplitude Modulation Signalling System (AMSS)": 318,
"Aprizesat": 466,
"Autocab": 473,
"Automated Train Control System (ATCS)": 486,
"Automatic Dependent Surveillance-Broadcast (ADS-B)": 291,
"Automatic Identification System (AIS)": 159,
"Automatic Link Establishment (2G ALE)": 325,
"Automatic Link Establishment (3G ALE ARCS)": 47,
"Automatic Link Set-up (ALIS)": 423,
"Automatic Packet Reporting System (APRS)": 324,
"Automatic Picture Transmission (APT)": 355,
"Automatic Transmitter Identification System (ATIS)": 467,
"Automatic Vehicle Monitoring (AVM)": 51,
"B-Netz": 1,
"BALDR Weather Sensor Telemetry": 339,
"BMW Key-Code signal": 208,
"BPC": 6,
"BPM": 69,
"BR-6028": 163,
"Beta": 126,
"Binary Interchange of Information and Signaling (BIIS)": 476,
"Bluetooth": 111,
"Broadband Global Area Network (BGAN)": 431,
"CAS-4A/B Satellite Telemetry": 16,
"CBET": 485,
"CCIR 493-4 Selcall": 89,
"CCIR Selcall": 165,
"CCITT": 313,
"CDMA2000 (3G physical layer)": 62,
"CDMA420": 334,
"CHIP": 265,
"CHU": 94,
"CIS 3x100 VFT": 95,
"CIS 3x144 VFT": 81,
"CIS 3xBaudot-50 VFT": 212,
"CIS FTM-4": 93,
"CIS MFSK-16 XPA2": 44,
"CIS MFSK-16 XPB": 494,
"CIS MFSK-20 XPA": 263,
"CIS MFSK-21-13": 347,
"CIS MFSK-68": 141,
"CIS OFDM HDR Modem": 156,
"CIS-11": 33,
"CIS-112": 352,
"CIS-12": 179,
"CIS-128": 282,
"CIS-1280": 59,
"CIS-14": 57,
"CIS-16": 378,
"CIS-20": 137,
"CIS-300": 142,
"CIS-3000": 452,
"CIS-36-50": 223,
"CIS-40.5": 251,
"CIS-48": 403,
"CIS-50-50": 20,
"CIS-8181": 371,
"CLOVER 2000": 362,
"CLOVER 2500": 266,
"CLOVER-I": 98,
"CLOVER-II": 5,
"CODAR": 462,
"COFDMTV": 437,
"CRY2001 Voice Scrambler": 12,
"CV-786": 92,
"Canadian Meteor Orbit Radar (CMOR)": 490,
"Chilean Naval Time Signal": 409,
"China digital radio (CDR)": 449,
"Chinese 'Foghorn' OTH radar": 363,
"Chinese 160kHz-wide OTH radar": 54,
"Chinese 30-tone OFDM modem": 433,
"Chinese 4+4": 299,
"Chinese Firedrake Jammer": 87,
"Chinese Multitonal Jammer": 24,
"Chinese-64 MFSK": 36,
"Codan Data Modem": 382,
"Coherent BPSK": 303,
"Coherent CW": 475,
"CompuLert": 465,
"Contestia": 117,
"Continuous Tone-Coded Squelch System (CTCSS)": 30,
"Coquelet": 483,
"Cuban Jammer": 153,
"D-STAR": 267,
"DB0UPB research beacon": 135,
"DCF77": 328,
"DUP-ARQ": 56,
"DUP-ARQ-2": 78,
"DUP-FEC-2": 77,
"Datawell Buoy HF Link": 19,
"Delfi-C3 Telemetry": 232,
"DeltaFix": 160,
"Denso 4EA Key Fob": 439,
"Differential Global Positioning System (DGPS)": 488,
"Digisonde": 70,
"Digital Audio Broadcasting (DAB)": 152,
"Digital Audio Broadcasting Plus (DAB+)": 416,
"Digital Dispatch Systems MDT": 471,
"Digital Enhanced Cordless Telecommunications (DECT)": 271,
"Digital Mobile Radio (DMR)": 297,
"Digital NBTV": 195,
"Digital Private Mobile Radio (dPMR)": 26,
"Digital Radio Mondiale (DRM)": 373,
"Digital Video Broadcasting \u2014 Terrestrial (DVB-T)": 319,
"Digital-Coded Squelch (DCS)": 31,
"DisplayPort Interference": 298,
"Distress Radiobeacon (Analog)": 115,
"Distress Radiobeacon (Digital)": 435,
"Distributed Power Unit (DPU)": 83,
"DoD Fire Alarm Control Panel": 43,
"DominoEX": 193,
"DominoF": 285,
"Driftnet Buoy Radio Beacon": 348,
"Dual Tone Multi Frequency (DTMF)": 122,
"Duga 3": 173,
"ECG Telemetry": 61,
"EEA": 461,
"EFR Teleswitch": 172,
"EIA": 280,
"ELEKTRO-L GGAK-E Direct Broadcast": 67,
"EURO": 457,
"Electric Fence Remote Control": 190,
"Emergency Alert System (EAS)": 175,
"Emergency Managers Weather Information Network (EMWIN) - Repeater": 18,
"End of Train Device (EOTD)": 458,
"Enhanced Digital Access Communications System (EDACS)": 82,
"Eurobalise downlink": 469,
"European Radio Message System (ERMES)": 301,
"FEC-A": 307,
"FLASH-OFDM": 171,
"FLEX": 201,
"FM Broadcast Radio": 277,
"FM NBTV": 290,
"FSK441": 0,
"FSQ": 196,
"FST4": 275,
"FST4W": 88,
"FT4": 244,
"FT8": 213,
"FUNcube-1 Telemetry": 180,
"Factory installed alarm system Land Rover Discovery 4": 21,
"Federal Signal Modem-MSK": 228,
"FreeDV COHPSK": 377,
"FreeDV plus Video": 370,
"Frequency Division Multiplex Digital Voice (FDMDV)": 216,
"Futuba RC Controller": 268,
"G-TOR": 360,
"GM2100 (R&S)": 106,
"GMDSS Digital Selective Calling": 288,
"GOES Data Collection System (DCS)": 136,
"GOES Rebroadcast (GRB)": 25,
"GRAVES": 40,
"GRAW DFM-09 Weather Balloon (Radiosonde)": 23,
"GSM TCH traffic channels non frequency hopping": 220,
"GYN2 GBR": 151,
"Gandalf MDT": 264,
"Glenayre Paging Link": 200,
"Global Positioning System (GPS)": 302,
"Global System for Mobile Communications (GSM)": 274,
"Globe Wireless HF Network": 434,
"Golay Paging (GSC)": 192,
"Gonets": 74,
"Graw DFM-06 Weather Balloon (Radiosonde)": 415,
"Graw DFM-17 (Radiosonde)": 272,
"Grimeton Radio (SAQ)": 333,
"Ground-Based Augmentation System (GBAS)": 327,
"HC-265 Voice Scrambler": 113,
"HC-ARQ": 444,
"HD Radio (AM)": 64,
"HD Radio (FM)": 293,
"HFGCS (High Frequency Global Communications System)": 86,
"HNG-FEC": 236,
"HORYU-4 Telemetry": 133,
"HP Laptop": 72,
"Hellschreiber": 76,
"High Frequency Active Auroral Research Program (HAARP)": 224,
"High Frequency Data Link (HFDL)": 27,
"High Frequency Data and Voice Link (HFDVL)": 463,
"High Speed USB Noise": 413,
"Horus Binary 4FSK - v2": 427,
"HyperFix": 417,
"Hyundai Mobis RKE-4F16 Key Fob": 426,
"ICAO Selcal": 381,
"ICARUS (International Cooperation for Animal Research Using Space)": 472,
"ICV": 455,
"ILS Marker Beacon": 428,
"IMet-1 RS Radiosonde": 474,
"IRA-ARQ": 120,
"IS-54 & IS-136 D-AMPS": 284,
"ISCAT": 311,
"ISM Band Weather sensor": 206,
"ISM Band device": 342,
"Improved Automatic Link Set-up (ALIS-2)": 144,
"Induction cooker interference": 112,
"Inmarsat Aero": 454,
"Inmarsat IsatM2M": 4,
"Inmarsat-C TDM": 202,
"Inmarsat-D(D+) Downlink": 436,
"Instrument Landing System": 443,
"Integrated Digital Enhanced Network (iDEN)": 258,
"Ionized Meteor Trails": 379,
"Ionosonde": 187,
"Iranian Navy QPSK Modem": 125,
"Iridium": 429,
"Israeli Intelligence VFT": 99,
"Israeli Navy Hybrid Modem (188-110 MOD)": 80,
"Israeli VFT": 32,
"JJY": 353,
"JS8": 464,
"JT4": 493,
"JT65": 96,
"JT6M": 245,
"JT9": 215,
"JTMS": 479,
"Japan Military 8-Channel FSK": 441,
"Japanese Slot Machine (XSL)": 35,
"Jim Creek (NLK)": 17,
"Jindalee Operational Radar Network (JORN)": 398,
"John Deere RTK Radio 450": 38,
"KG-STV": 300,
"Kia SVI-JFRGE04 Key Fob": 248,
"Kiwi": 257,
"LEOSAR Downlink": 3,
"LORAN": 330,
"LTE Uplink": 386,
"LTE-M": 129,
"Lentus": 247,
"Lightning Sferics": 451,
"Link-11": 492,
"Link-11 (UHF)": 438,
"LoJack": 270,
"LoRa": 336,
"Lockheed Martin LMS-6 (Radiosonde)": 49,
"Logic Trunked Radio (LTR)": 358,
"M17 RF Protocol": 344,
"M20 Radiosonde": 253,
"MD-522": 186,
"MD-674": 359,
"MDC-4800": 53,
"MDC1200": 198,
"MFJ-269C Antenna SWR Analyzer": 181,
"MIL-STD-110-342": 222,
"MIL-STD-188-110 Appendix A 16-Tone": 365,
"MIL-STD-188-110 Appendix B 39-Tone": 323,
"MIL-STD-188-110 Serial": 184,
"MMP-4800": 356,
"MOBITEX": 294,
"MODAT": 287,
"MONITOR-2(RS39S)": 394,
"MPT 1327": 150,
"MPT1394 Keyfob": 239,
"MRZ-N1 Weather Balloon (radiosonde)": 162,
"MSF": 143,
"MSK144": 238,
"MSM-1250 Modem": 226,
"MT63": 273,
"Marconi Selenia 25-Tone Modem": 214,
"Mazda SKE126-01 Key Fob": 197,
"Mazielka (X06)": 231,
"Meteomodem M10 Weather Balloon (Radiosonde)": 138,
"Meteomodem PilotSonde Weather Balloon": 211,
"Meteosat WEFAX": 283,
"Microsonde Mark II Weather Balloon - LORAN-C signal (Radiosonde)": 445,
"Milstar": 400,
"Modernised High Frequency Communications System (MHFCS)": 421,
"Morse Code (CW)": 448,
"Motorola ASTRO 25 HPD Air Interface": 79,
"Motorola MOSCAD SCADA telemetry": 110,
"Motorola SECURENET": 241,
"Motorola Type II": 174,
"Multi Frequency Shift Keying (MFSK)": 14,
"Multitone Paging": 168,
"NATEL": 217,
"NB-IOT": 178,
"NFM Voice": 227,
"NML": 477,
"NOAA Direct Sounder Broadcast (DSB)": 176,
"NOV": 188,
"NPM": 243,
"NTSC Broadcast": 145,
"NWC": 411,
"National Public Alerting System (NPAS)": 419,
"Next Generation Digital Narrowband (NXDN)": 105,
"Nissan Car Key": 108,
"Nokia Adaptive Message Terminal": 395,
"Non-Directional Beacon (NDB)": 374,
"Nordic Mobile Telephone (NMT)": 308,
"North Korean Diplo FSK": 131,
"North Korean Diplo PSK": 337,
"North Korean Noise Jammer": 430,
"North Korean Siren Jammer": 41,
"OFDM NBTV": 335,
"OOK RC Car Remote Control": 279,
"OPERA Beacon and Data": 91,
"Olivia": 259,
"One Beep, Two Beeps": 346,
"OpenSky": 316,
"OrbComm Mobile Telephony": 205,
"Orbcomm": 375,
"PACKET": 148,
"PACTOR I": 396,
"PACTOR II": 389,
"PACTOR III": 221,
"PACTOR IV": 11,
"PAL Broadcast": 281,
"PAX": 262,
"PI4": 491,
"PLUTO II OTH Radar": 15,
"POCSAG": 480,
"POL-ARQ": 338,
"PRC-16": 392,
"PSK Paging link": 46,
"PSK-AM": 28,
"PSK2K": 119,
"Pager SSTV": 412,
"Panther-H Modem": 376,
"Phase Shift Keying (PSK)": 345,
"Piccolo": 123,
"Polish Intelligence 100bd 625Hz FSK": 447,
"Portable Traffic Lights": 309,
"Positive Train Control (PTC)": 372,
"Powerline Over Ethernet": 350,
"Primary Aeronautical Surveillance Radar": 402,
"Primex Wireless Time Sync": 204,
"ProVoice": 420,
"Project 25 (P25)": 406,
"Pulse Coded Modulated (PCM) RC Toy": 343,
"Pursuit Wireless Car Key": 315,
"Q-MAC HF Modem": 388,
"Q15X25": 45,
"Q65": 246,
"QO-100-modem": 387,
"RAC-ARQ": 252,
"RBU": 130,
"RDL": 48,
"RF heating and welding interference": 209,
"RFID": 470,
"ROS": 453,
"RS80": 390,
"RTS-9TS Russian spacecraft telemetry system": 149,
"RTTYM": 154,
"RUM-FEC": 60,
"RUM-MOI FEC": 351,
"RWM": 341,
"Radar altimeter": 177,
"Radio Data Link Access Procedure (RD-LAP)": 385,
"Radio Data System (RDS)": 139,
"Radio Telephone Network C (C-Netz)": 107,
"Radio Teletype (RTTY)": 326,
"Radioteknicheskaya Systema Dalyoloiy Navigatsii (RSDN-20)": 191,
"Rain Master sprinkler control": 182,
"ReFLEX": 410,
"Redundant Digital File Transfer (RDFT)": 304,
"Relocatable Over-the-Horizon Radar (ROTHR)": 2,
"Robust PACKET": 432,
"Russian Diplo VFT PSK 64Bd": 97,
"Russian Intelligence 200bd 1000Hz FSK": 102,
"Russian MFSK-OFDM-chirp hybrid modem": 296,
"Russian OTH 'Ghadir' type": 276,
"Russian overhead power line telemetry system": 147,
"SAS/SRC": 34,
"SAS2": 397,
"SAS3": 269,
"SHR": 109,
"SI-ARQ": 446,
"SI-FEC": 331,
"SIGFOX": 306,
"SITOR-A": 128,
"SITOR-B": 399,
"SKiYMET": 7,
"SNOTEL (Snow Telemetry)": 366,
"SP-14 (XP)": 65,
"SPREAD": 320,
"SSTV": 124,
"STANAG 4197": 114,
"STANAG 4285": 254,
"STANAG 4415": 310,
"STANAG 4481": 104,
"STANAG 4529": 380,
"STANAG 4539": 368,
"STANAG 5065": 68,
"STP403 Bus PIT System": 207,
"SWED-ARQ": 440,
"Saab Grintek MHF-50 MFSK Modem": 116,
"Schneider Trio E-Series Modem": 118,
"Secondary surveillance radar (SSR)": 9,
"Serdolik": 90,
"Siemens 1.5T MRI Scanner": 384,
"Siemens CHX-200 FSK Modem": 166,
"Single Sideband Voice": 230,
"Single frequency russian overhead power line telemetry system": 10,
"SiriusXM Satellite Radio": 121,
"SkyOFDM": 237,
"Slow-Scan Television (SSTV)": 450,
"Smart TV Interference": 260,
"Snap Circuits SCROV-10 Remote Control": 367,
"Sonne": 482,
"SuperDARN (Super Dual Auroral Radar Network)": 424,
"Supervisory Control And Data Acquisition (SCADA)": 249,
"Switching Electronic Interference": 255,
"T-230-1A 'Mahovik'": 66,
"TDF": 484,
"THOR": 37,
"THROB": 203,
"TT2300": 233,
"TWINPLEX": 292,
"Tactical Air Navigation System (TACAN)": 481,
"Terrestrial Trunked Radio (TETRA)": 73,
"Tetrapol": 442,
"Thales SALAMANDRE (HFXL)": 314,
"Thales Syst\u00e8me 3000 HF Modem": 55,
"Thales Syst\u00e8me 3000 Skyhopper": 414,
"Thales Syst\u00e8me 3000 Voice Scrambler": 407,
"The 'Air Horn'": 100,
"The Alarm": 63,
"The Buzzer (ZhUOZ MDZhB UZB76)": 478,
"The Goose": 357,
"The Pip": 364,
"Tire Pressure Monitoring System (TPMS)": 391,
"Total Access Communication System (TACS)": 29,
"Toyota Car Key": 185,
"Transit 5B-5": 199,
"UHF Vehicle Location System": 240,
"UIC 751-3": 383,
"UK AM Data System (UK-AMDS)": 459,
"UK GOV MIL WINDRM51": 189,
"UTC (Coordinated Universal Time) Time Standard": 401,
"Ultra Low Latency (ULL) Electronic Trading Network": 52,
"VARA HF": 164,
"VDEW": 229,
"VEZHA-S": 278,
"VHF Data Link - Mode 2 (VDL-M2)": 161,
"VHF Omnidirectional Range (VOR)": 58,
"VISEL": 170,
"VOICE": 158,
"Vaisala RS41-SG Weather Balloon (Radiosonde)": 393,
"Vaisala RS92-KL Weather Balloon (Radiosonde)": 234,
"Vaisala RS92-SGP Weather Balloon (Radiosonde)": 194,
"Vietnamese Siren Jammer": 210,
"Visonic MCT-201": 487,
"WEFAX": 8,
"WLO": 250,
"WSPR": 167,
"WWVB": 489,
"Wettersonde E084 (Radiosonde)": 84,
"WiMAX": 317,
"WinDRM": 50,
"WinLink Global Email Radio System (WGERS)": 140,
"Wireless Hydrophone System (WHS)": 39,
"Wireless Smart Utility Networks (Wi-SUN)": 408,
"Wireless Temperature Sensor": 146,
"XMPP trails": 404,
"Yachta T-219 Voice Scrambler": 340,
"Yaesu System Fusion": 354,
"Yugoslavian 16-Tone Modem": 286,
"Yugoslavian 20-Tone Modem": 103,
"ZVEI Selcall": 261,
"\u00c9lectricit\u00e9 de France HNZ": 127
},
"layer_norm_eps": 1e-12,
"max_length": 1024,
"model_type": "audio-spectrogram-transformer",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"num_mel_bins": 128,
"patch_size": 16,
"problem_type": "single_label_classification",
"qkv_bias": true,
"time_stride": 10,
"transformers_version": "4.57.1"
}
|