python / cpython

The Python programming language
https://www.python.org
Other
62.04k stars 29.82k forks source link

PyInstaller Bundled Tkinter Application Crashes on macOS When Closing Window #112427

Closed xmagedo closed 8 months ago

xmagedo commented 9 months ago

Crash report

What happened?

I'm experiencing a persistent issue with a Tkinter-based GUI application on macOS. When running the script directly in the terminal, everything functions correctly, including the feature to save data as JSON upon closing the window. However, after bundling the application with PyInstaller, the GUI opens and operates as expected until I attempt to close the window to trigger the save-as-JSON feature. At this point, the application crashes with an "Abort trap: 6" error.

Details:

Python version: 3.9.1 PyInstaller version: 6.2.0 OS: macOS 11.7.10 The application works perfectly in the terminal, but the issue arises only with the PyInstaller bundled executable. I've already tried implementing custom hooks for Tkinter in PyInstaller without success.

2023-11-25 21:19:45.749 main[2756:1146090] *** Assertion failure in -[NSTextFieldCell _objectValue:forString:errorDescription:], NSCell.m:1313
2023-11-25 21:19:45.755 main[2756:1146090] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: aString != nil'
*** First throw call stack:
(
    0   CoreFoundation                      0x00007fff20534bdb __exceptionPreprocess + 242
    1   libobjc.A.dylib                     0x00007fff2026dd92 objc_exception_throw + 48
    2   CoreFoundation                      0x00007fff2055dd52 +[NSException raise:format:arguments:] + 88
    3   Foundation                          0x00007fff2131e4e2 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 191
    4   AppKit                              0x00007fff22d01fb9 -[NSCell _objectValue:forString:errorDescription:] + 260
    5   AppKit                              0x00007fff22d01e13 -[NSCell setStringValue:] + 44
    6   AppKit                              0x00007fff22d7a87e -[NSControl setStringValue:] + 121
    7   libtk8.6.dylib                      0x000000011c8ea4ce Tk_GetSaveFileObjCmd + 1732
    8   libtcl8.6.dylib                     0x000000011c6e76af TclNRRunCallbacks + 79
    9   _tkinter.cpython-39-darwin.so       0x000000011c6bd9c0 Tkapp_Call + 480
    10  Python                              0x000000011b604d82 cfunction_call + 130
    11  Python                              0x000000011b5c40fa _PyObject_Call + 138
    12  Python                              0x000000011b6a8a70 _PyEval_EvalFrameDefault + 28832
    13  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    14  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    15  Python                              0x000000011b6ab54b call_function + 411
    16  Python                              0x000000011b6a85b9 _PyEval_EvalFrameDefault + 27625
    17  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    18  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    19  Python                              0x000000011b6ab54b call_function + 411
    20  Python                              0x000000011b6a8732 _PyEval_EvalFrameDefault + 28002
    21  Python                              0x000000011b5c43d5 function_code_fastcall + 229
    22  Python                              0x000000011b5c6842 method_vectorcall + 370
    23  Python                              0x000000011b6a8a70 _PyEval_EvalFrameDefault + 28832
    24  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    25  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    26  Python                              0x000000011b5c6842 method_vectorcall + 370
    27  _tkinter.cpython-39-darwin.so       0x000000011c6c1d6d PythonCmd + 205
    28  libtcl8.6.dylib                     0x000000011c6e76af TclNRRunCallbacks + 79
    29  libtcl8.6.dylib                     0x000000011c6e8828 TclEvalEx + 1842
    30  libtcl8.6.dylib                     0x000000011c6e80f0 Tcl_EvalEx + 26
    31  libtk8.6.dylib                      0x000000011c8ff933 TkWmProtocolEventProc + 180
    32  libtk8.6.dylib                      0x000000011c84b800 Tk_HandleEvent + 1010
    33  libtk8.6.dylib                      0x000000011c8ff443 TkGenWMDestroyEvent + 116
    34  libtk8.6.dylib                      0x000000011c8ff3c0 -[TKApplication(TKWindowEvent) windowShouldClose:] + 30
    35  AppKit                              0x00007fff230540d9 __19-[NSWindow __close]_block_invoke + 153
    36  AppKit                              0x00007fff23054033 -[NSWindow __close] + 284
    37  AppKit                              0x00007fff22ee3bcb -[NSApplication(NSResponder) sendAction:to:from:] + 288
    38  AppKit                              0x00007fff22ee3a6f -[NSControl sendAction:to:] + 86
    39  AppKit                              0x00007fff22ee39a1 __26-[NSCell _sendActionFrom:]_block_invoke + 131
    40  AppKit                              0x00007fff22ee38a8 -[NSCell _sendActionFrom:] + 171
    41  AppKit                              0x00007fff22ee37ee -[NSButtonCell _sendActionFrom:] + 96
    42  AppKit                              0x00007fff22ee08d7 NSControlTrackMouse + 1820
    43  AppKit                              0x00007fff22ee0193 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 130
    44  AppKit                              0x00007fff22ee005a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 697
    45  AppKit                              0x00007fff22edf382 -[NSControl mouseDown:] + 722
    46  AppKit                              0x00007fff22edd76e -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 4961
    47  AppKit                              0x00007fff22e4cf88 -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2594
    48  AppKit                              0x00007fff22e4c346 -[NSWindow(NSEventRouting) sendEvent:] + 347
    49  AppKit                              0x00007fff22e4a754 -[NSApplication(NSEvent) sendEvent:] + 352
    50  libtk8.6.dylib                      0x000000011c8fba55 -[TKApplication(TKNotify) sendEvent:] + 41
    51  libtk8.6.dylib                      0x000000011c8fbe9d TkMacOSXEventsCheckProc + 453
    52  libtcl8.6.dylib                     0x000000011c78fd76 Tcl_DoOneEvent + 305
    53  _tkinter.cpython-39-darwin.so       0x000000011c6bfae7 _tkinter_tkapp_mainloop + 343
    54  Python                              0x000000011b5ccc4c method_vectorcall_FASTCALL + 140
    55  Python                              0x000000011b6ab54b call_function + 411
    56  Python                              0x000000011b6a85b9 _PyEval_EvalFrameDefault + 27625
    57  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    58  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    59  Python                              0x000000011b5c679c method_vectorcall + 204
    60  Python                              0x000000011b6ab54b call_function + 411
    61  Python                              0x000000011b6a85d6 _PyEval_EvalFrameDefault + 27654
    62  Python                              0x000000011b5c43d5 function_code_fastcall + 229
    63  Python                              0x000000011b6ab54b call_function + 411
    64  Python                              0x000000011b6a8680 _PyEval_EvalFrameDefault + 27824
    65  Python                              0x000000011b5c43d5 function_code_fastcall + 229
    66  Python                              0x000000011b5c6842 method_vectorcall + 370
    67  Python                              0x000000011b6a8a70 _PyEval_EvalFrameDefault + 28832
    68  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    69  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    70  Python                              0x000000011b5c6842 method_vectorcall + 370
    71  _tkinter.cpython-39-darwin.so       0x000000011c6c1d6d PythonCmd + 205
    72  libtcl8.6.dylib                     0x000000011c6e76af TclNRRunCallbacks + 79
    73  libtk8.6.dylib                      0x000000011c8689ad ButtonWidgetObjCmd + 467
    74  libtcl8.6.dylib                     0x000000011c6e76af TclNRRunCallbacks + 79
    75  libtcl8.6.dylib                     0x000000011c6e8828 TclEvalEx + 1842
    76  libtcl8.6.dylib                     0x000000011c6e80f0 Tcl_EvalEx + 26
    77  libtk8.6.dylib                      0x000000011c83e4ed Tk_BindEvent + 5542
    78  libtk8.6.dylib                      0x000000011c844320 TkBindEventProc + 334
    79  libtk8.6.dylib                      0x000000011c84b76f Tk_HandleEvent + 865
    80  libtk8.6.dylib                      0x000000011c84bd0a WindowEventProc + 96
    81  libtcl8.6.dylib                     0x000000011c78faec Tcl_ServiceEvent + 139
    82  libtcl8.6.dylib                     0x000000011c78fd84 Tcl_DoOneEvent + 319
    83  _tkinter.cpython-39-darwin.so       0x000000011c6bfae7 _tkinter_tkapp_mainloop + 343
    84  Python                              0x000000011b5ccc4c method_vectorcall_FASTCALL + 140
    85  Python                              0x000000011b6ab54b call_function + 411
    86  Python                              0x000000011b6a85b9 _PyEval_EvalFrameDefault + 27625
    87  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    88  Python                              0x000000011b5c42e0 _PyFunction_Vectorcall + 256
    89  Python                              0x000000011b5c679c method_vectorcall + 204
    90  Python                              0x000000011b6ab54b call_function + 411
    91  Python                              0x000000011b6a85d6 _PyEval_EvalFrameDefault + 27654
    92  Python                              0x000000011b5c43d5 function_code_fastcall + 229
    93  Python                              0x000000011b6ab54b call_function + 411
    94  Python                              0x000000011b6a8680 _PyEval_EvalFrameDefault + 27824
    95  Python                              0x000000011b6ac414 _PyEval_EvalCode + 2852
    96  Python                              0x000000011b6a1900 PyEval_EvalCode + 64
    97  main                                0x00000001030126b9 main + 18105
    98  main                                0x0000000103012cf8 main + 19704
    99  libdyld.dylib                       0x00007fff203ddf3d start + 1
    100 ???                                 0x0000000000000001 0x0 + 1
)
libc++abi: terminating with uncaught exception of type NSException
Abort trap: 6
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

[Process completed]

CPython versions tested on:

3.9

Operating systems tested on:

macOS

Output from running 'python -VV' on the command line:

No response

ned-deily commented 9 months ago

With the information provided, it is only possible to provide a guess at the issue you are seeing. You don't indicate from where you obtained the Python 3.9.1 you are using - the output of python3.9 -VV or, better, the output of python3.9 -m test.pythoninfo would help as would a complete listing of the crash trace which may be available through the macOS Console app. But it appears the crash is originating via a call inside of Tk and it is very likely that the version of Tk in use here is old. Be aware that Python 3.9.1 is also very old and long superceded by newer releases of Python 3.9 which may provide newer versions of Tk. For example, the last release of Python 3.9 with macOS binary installers on python.org was Python 3.9.13. (Python 3.9 is now in the security-fix only phase of its life cycle so no further binary installers from python.org are provided. If possible, you should consider using a more recent and fully-supported release of Python.)

ronaldoussoren commented 9 months ago

Also: Please ask the PyInstaller maintainers about this. You indicate that the program works when run from the terminal but fails when packaged using PyInstaller. This might be an issue caused by PyInstaller.

xmagedo commented 9 months ago

With the information provided, it is only possible to provide a guess at the issue you are seeing. You don't indicate from where you obtained the Python 3.9.1 you are using - the output of python3.9 -VV or, better, the output of python3.9 -m test.pythoninfo would help as would a complete listing of the crash trace which may be available through the macOS Console app. But it appears the crash is originating via a call inside of Tk and it is very likely that the version of Tk in use here is old. Be aware that Python 3.9.1 is also very old and long superceded by newer releases of Python 3.9 which may provide newer versions of Tk. For example, the last release of Python 3.9 with macOS binary installers on python.org was Python 3.9.13. (Python 3.9 is now in the security-fix only phase of its life cycle so no further binary installers from python.org are provided. If possible, you should consider using a more recent and fully-supported release of Python.)

  1. Python Version and Origin: I am currently using Python 3.9.8, which I downloaded from python.org. This version was chosen based on recommendations to address known Tkinter issues on macOS, specifically related to file dialog crashes. https://www.python.org/download/mac/tcltk/

  2. Tk Version: My Tkinter version is 8.6.11. I understand that this is an important detail since Tkinter's behavior can vary significantly between versions, especially on macOS.

  3. Crash Trace: I can provide the crash trace from the macOS Console app. Here it is

Process:               main [11704]
Path:                  /Users/USER/Documents/*/main
Identifier:            main
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        bash [11686]
Responsible:           Terminal [1173]
User ID:               501

Date/Time:             2023-11-27 19:30:03.225 +0300
OS Version:            macOS 11.7.10 (20G1427)
Report Version:        12
Anonymous UUID:        80E73721-AEC7-9190-3C7B-1362125A5088

Sleep/Wake UUID:       6E602543-0B9F-471E-801F-7872BB55EEF0

Time Awake Since Boot: 95000 seconds
Time Since Wake:       850 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib          0x00007fff2039390e __pthread_kill + 10
1   libsystem_pthread.dylib         0x00007fff203c25bd pthread_kill + 263
2   libsystem_c.dylib               0x00007fff202a6bd5 raise + 26
3   main                            0x000000010823bed1 0x108237000 + 20177
4   libdyld.dylib                   0x00007fff203ddf3d start + 1

Thread 1:
0   libsystem_pthread.dylib         0x00007fff203be420 start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib         0x00007fff203be420 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000127ef9e00  rcx: 0x00007ffee79c7d58  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ffee79c7d80  rsp: 0x00007ffee79c7d58
   r8: 0x000000000000802b   r9: 0x0000000000000000  r10: 0x0000000127ef9e00  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x00007fb149809400  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff2039390e  rfl: 0x0000000000000246  cr2: 0x000000010c4cc000

Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.

Binary Images:
       0x108237000 -        0x108242fff +main (0) <BAF5853C-20D3-3034-AA5A-5E81DCEE8027> /Users/USER/Documents/*/main
       0x127e22000 -        0x127ebdfff  dyld (852.2) <BD607394-9008-33B9-B98B-A5886668E52C> /usr/lib/dyld
    0x7fff200fa000 -     0x7fff200fbfff  libsystem_blocks.dylib (79) <F5B25F38-FC21-3BF5-A147-3B913DA098BE> /usr/lib/system/libsystem_blocks.dylib
    0x7fff200fc000 -     0x7fff20131fff  libxpc.dylib (2038.120.1.701.2) <151C64CA-CA6F-3989-A558-796EB6ED0C11> /usr/lib/system/libxpc.dylib
    0x7fff20132000 -     0x7fff20149fff  libsystem_trace.dylib (1277.120.1) <1F20357C-395F-3095-B525-AD9403290A92> /usr/lib/system/libsystem_trace.dylib
    0x7fff2014a000 -     0x7fff201e7fff  libcorecrypto.dylib (1000.140.4) <BDD3FF5E-34F8-3AC0-A05C-F9AC17C88BBF> /usr/lib/system/libcorecrypto.dylib
    0x7fff201e8000 -     0x7fff20214fff  libsystem_malloc.dylib (317.140.5) <3AB4C7E9-C49C-3EB7-9370-370F3F655024> /usr/lib/system/libsystem_malloc.dylib
    0x7fff20215000 -     0x7fff20259fff  libdispatch.dylib (1271.120.2) <5D824C33-C5E2-38A8-BD00-D934443DBDAB> /usr/lib/system/libdispatch.dylib
    0x7fff2025a000 -     0x7fff20293fff  libobjc.A.dylib (824.1) <A0961DED-3477-3856-A6BC-CFE2475CB2F4> /usr/lib/libobjc.A.dylib
    0x7fff20294000 -     0x7fff20296fff  libsystem_featureflags.dylib (28.60.1) <2BAC8770-AFC8-3FE2-B6C6-27CE44B2B2BA> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff20297000 -     0x7fff2031ffff  libsystem_c.dylib (1439.141.1) <BC8BCEEA-CA52-32C7-9FF5-E444CF9EF66A> /usr/lib/system/libsystem_c.dylib
    0x7fff20320000 -     0x7fff20375fff  libc++.1.dylib (905.6) <5BA6B5ED-7842-3B13-86B0-00EB511CE2FE> /usr/lib/libc++.1.dylib
    0x7fff20376000 -     0x7fff2038bfff  libc++abi.dylib (905.6) <B96FC1DD-0056-3E11-862A-C0BB8239FEA0> /usr/lib/libc++abi.dylib
    0x7fff2038c000 -     0x7fff203bbfff  libsystem_kernel.dylib (7195.141.49.702.12) <BA061E84-6D44-3037-832D-E86D783FA917> /usr/lib/system/libsystem_kernel.dylib
    0x7fff203bc000 -     0x7fff203c7fff  libsystem_pthread.dylib (454.120.2.700.1) <409239A7-2E4E-31C7-87EB-EE50B7981204> /usr/lib/system/libsystem_pthread.dylib
    0x7fff203c8000 -     0x7fff20403fff  libdyld.dylib (852.2) <FD8DB5BC-F199-3524-9DC4-DAEC0E94712F> /usr/lib/system/libdyld.dylib
    0x7fff20404000 -     0x7fff2040dfff  libsystem_platform.dylib (254.80.2) <52A77346-8AA5-3BB7-906D-C7503B491CF9> /usr/lib/system/libsystem_platform.dylib
    0x7fff2040e000 -     0x7fff20439fff  libsystem_info.dylib (542.40.4) <406353B2-E48A-3D20-B08F-0AB26ED8A0B3> /usr/lib/system/libsystem_info.dylib
    0x7fff2043a000 -     0x7fff208d7fff  com.apple.CoreFoundation (6.9 - 1778.105) <B4B8042A-9415-3F26-91AC-735C968B0D95> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff208d8000 -     0x7fff20b0ffff  com.apple.LaunchServices (1122.45 - 1122.45) <42ED2E08-904B-3B62-B0B6-DACBE4988AAB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20b10000 -     0x7fff20be4fff  com.apple.gpusw.MetalTools (1.0 - 1) <72285C8A-5F98-31A0-9CA1-30CF4387584B> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20be5000 -     0x7fff20e41fff  libBLAS.dylib (1336.140.1) <D4B16233-BAE7-3D63-BB59-5DCEC63345EB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20e42000 -     0x7fff20e8ffff  com.apple.Lexicon-framework (1.0 - 86.2) <09EC8AE4-7FC7-3D2D-A6DD-C484B664B1D5> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20e90000 -     0x7fff20efefff  libSparse.dylib (106) <0FD77742-B7DB-3296-9D0F-0DEF7EB4FF7D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20eff000 -     0x7fff20f7cfff  com.apple.SystemConfiguration (1.20 - 1.20) <D59BEA1F-BD5D-383A-8977-64F5B72F16C4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff20f7d000 -     0x7fff20fb1fff  libCRFSuite.dylib (50) <2DADF4F9-0BD3-33CF-9939-979E69F2453C> /usr/lib/libCRFSuite.dylib
    0x7fff20fb2000 -     0x7fff211eafff  libmecabra.dylib (929.10) <58AA4922-A668-3165-802C-5FB4DF848E40> /usr/lib/libmecabra.dylib
    0x7fff211eb000 -     0x7fff21549fff  com.apple.Foundation (6.9 - 1778.105) <4F4709DD-C198-3AA1-86A0-71D2F2FDD65D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff2154a000 -     0x7fff21632fff  com.apple.LanguageModeling (1.0 - 247.3) <EAAF99AF-2D5F-3EC5-B7F7-41D7236A09F3> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff21633000 -     0x7fff21769fff  com.apple.CoreDisplay (237.4 - 237.4) <CDD47724-D213-3665-BD34-A51F374AE94F> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2176a000 -     0x7fff219dafff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72.5) <541A108B-D52C-3F7B-B004-F31E16243BAF> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff219db000 -     0x7fff21bc0fff  com.apple.CoreText (677.6.0.4 - 677.6.0.4) <1E81E372-02B3-3E9C-BB48-33DC80E49158> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21bc1000 -     0x7fff22252fff  com.apple.audio.CoreAudio (5.0 - 5.0) <A5ED9C97-E177-388F-AED8-D760C6963377> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff22253000 -     0x7fff225aafff  com.apple.security (7.0 - 59754.141.1.702.3) <5A52B8E8-B1AF-3F29-AC97-5DBEE8C6A6AC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff225ab000 -     0x7fff2280afff  libicucore.A.dylib (66112.1) <9F2A881A-25DA-3386-9DCE-D2B67C2A4141> /usr/lib/libicucore.A.dylib
    0x7fff2280b000 -     0x7fff22814fff  libsystem_darwin.dylib (1439.141.1) <75592BEC-777B-381F-8C07-15B8A4C712A7> /usr/lib/system/libsystem_darwin.dylib
    0x7fff22815000 -     0x7fff22b00fff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <76566083-9F9C-3055-812A-079693A69D32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22b01000 -     0x7fff22b3ffff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <66BDFBFC-32CC-3015-B7B7-A44800B7C864> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22b40000 -     0x7fff22b7afff  com.apple.CSStore (1122.45 - 1122.45) <65919E05-BE7E-39AC-8768-B32E41E325C0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22b7b000 -     0x7fff22c29fff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <A395F442-1253-3CA9-953F-7A235EEB7F67> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22c2a000 -     0x7fff22c35fff  libsystem_notify.dylib (279.40.4) <02E22D9D-01E2-361C-BB9A-B5BE18D28280> /usr/lib/system/libsystem_notify.dylib
    0x7fff22c84000 -     0x7fff239cffff  com.apple.AppKit (6.9 - 2022.70.111) <FA68A033-FD64-3F0B-8869-5C42CB9C6BE4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff239d0000 -     0x7fff23c1efff  com.apple.UIFoundation (1.0 - 729) <55B6D90D-A0ED-38D7-B858-1068A31C1C09> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23c1f000 -     0x7fff23c31fff  com.apple.UniformTypeIdentifiers (637 - 637) <CD0F9B05-DF9A-3961-AAF8-78A0A63C9BA9> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff2409c000 -     0x7fff24722fff  libnetwork.dylib (2288.140.9) <2DE517EE-E318-366B-A7FA-AD5F62D007CB> /usr/lib/libnetwork.dylib
    0x7fff24723000 -     0x7fff24bc0fff  com.apple.CFNetwork (1240.0.4.5 - 1240.0.4.5) <83B8DEAA-82EE-36DD-ADF8-45E8A807BC21> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24bc1000 -     0x7fff24bcffff  libsystem_networkextension.dylib (1295.140.4.701.1) <9C5A85AC-C593-34FD-8481-5CFC05DE3897> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24bd0000 -     0x7fff24bd0fff  libenergytrace.dylib (22.100.1) <EDE247D7-22AC-3339-AC3E-04A5BD13E3F2> /usr/lib/libenergytrace.dylib
    0x7fff24bd1000 -     0x7fff24c2dfff  libMobileGestalt.dylib (978.140.1) <AC0BF1F3-5052-3FD8-808D-CBF55B3F7551> /usr/lib/libMobileGestalt.dylib
    0x7fff24c2e000 -     0x7fff24c44fff  libsystem_asl.dylib (385.0.2) <88F4051D-1CF5-314E-A952-247C38996E16> /usr/lib/system/libsystem_asl.dylib
    0x7fff24c45000 -     0x7fff24c5dfff  com.apple.TCC (1.0 - 1) <898C8BE6-EBC0-3BEB-B898-2EF336802530> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24c5e000 -     0x7fff24fc3fff  com.apple.SkyLight (1.600.0 - 588.11) <370EFABF-8439-32C8-9136-0CB058CEE1A1> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff24fc4000 -     0x7fff2564dfff  com.apple.CoreGraphics (2.0 - 1463.19.1) <C911B812-7401-3EAF-B365-A9B7B98B708A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2564e000 -     0x7fff25745fff  com.apple.ColorSync (4.13.0 - 3473.8.1) <B66E5ABE-B72B-3607-8FB6-3CE54142829A> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff25746000 -     0x7fff257a1fff  com.apple.HIServices (1.22 - 716) <76A6ECCF-9098-3A1F-A80B-40408A9AA4A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25b48000 -     0x7fff25f67fff  com.apple.CoreData (120 - 1048) <6D7D0B7E-7646-3F79-8108-0C1D11821749> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff25f68000 -     0x7fff25f7dfff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <6EC4B8BC-C44A-3211-A0B5-A7298518231B> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff25f7e000 -     0x7fff26132fff  libsqlite3.dylib (321.4) <2CBF5CD2-BECF-331B-904C-A88A54C6F6ED> /usr/lib/libsqlite3.dylib
    0x7fff261b0000 -     0x7fff261c7fff  com.apple.commonutilities (8.0 - 900) <4D28711F-3425-31EB-A9D5-3FA489461EA3> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff261c8000 -     0x7fff26247fff  com.apple.BaseBoard (526 - 526) <8ABD1C28-584C-33E7-8BE8-4EFC5EEF1575> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff26248000 -     0x7fff26290fff  com.apple.RunningBoardServices (1.0 - 505.100.9) <BE0AEF0C-A31A-32F1-8157-9560A1A24633> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff26291000 -     0x7fff26305fff  com.apple.AE (918.6 - 918.6) <677BFC57-B830-3090-9470-A21CB2A77C76> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff26306000 -     0x7fff2630cfff  libdns_services.dylib (1310.140.1) <EABE9A6A-96DE-3A2E-B0E0-17F277A65757> /usr/lib/libdns_services.dylib
    0x7fff2630d000 -     0x7fff26314fff  libsystem_symptoms.dylib (1431.140.1) <E9CB193F-260B-3835-B76E-A2209343FA1E> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff26315000 -     0x7fff264a0fff  com.apple.Network (1.0 - 1) <6A3C9CBC-DE8E-3D0A-BA52-316E70255DCD> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff264a1000 -     0x7fff264d0fff  com.apple.analyticsd (1.0 - 1) <23CB7B45-967B-37B3-AF21-21B4885790CC> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff264d1000 -     0x7fff264d3fff  libDiagnosticMessagesClient.dylib (112) <8CE0D64A-597F-3048-80C3-590D866D067A> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff264d4000 -     0x7fff26520fff  com.apple.spotlight.metadata.utilities (1.0 - 2150.30) <9B61E5D5-27C3-3282-A650-A2D15FA76FF7> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff26521000 -     0x7fff265bbfff  com.apple.Metadata (10.7.0 - 2150.30) <FEBC2256-7D84-3F2E-A770-A8665F62E20A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff265bc000 -     0x7fff265c2fff  com.apple.DiskArbitration (2.7 - 2.7) <21325211-A5F7-3AB9-BDFE-6B6DC06E587E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff265c3000 -     0x7fff26c2afff  com.apple.vImage (8.1 - 544.6) <1DD123D7-ACC3-3FCB-838E-C91C6E4D31B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26c2b000 -     0x7fff26f08fff  com.apple.QuartzCore (1.11 - 927.24) <C2F144F0-B972-390B-B0DC-51B79F3B4DF2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26f09000 -     0x7fff26f4afff  libFontRegistry.dylib (309.0.0.2) <D13D1774-9FC2-3A3B-BFD0-8ABFAF9AE1E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff26f4b000 -     0x7fff2708bfff  com.apple.coreui (2.1 - 692.1) <0E2AE064-FD25-31B4-97EC-BA0AC0C16169> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff27178000 -     0x7fff27183fff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <24DDF51B-8405-30AF-9879-5172C325BF0C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff27184000 -     0x7fff27193fff  com.apple.OpenDirectory (11.7 - 230.40.1) <B7BB547E-B00F-37B3-A4A8-AF414F029E64> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff27194000 -     0x7fff271b3fff  com.apple.CFOpenDirectory (11.7 - 230.40.1) <E4682D99-DD7C-3C74-A0A1-E561B6E616C6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff271b4000 -     0x7fff271c0fff  com.apple.CoreServices.FSEvents (1290.120.6 - 1290.120.6) <78184C84-4633-3867-AACD-8F0256F40D5A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff271c1000 -     0x7fff271e5fff  com.apple.coreservices.SharedFileList (144 - 144) <243CAB7D-EA1A-3322-9833-B4B24F63AB3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff271e6000 -     0x7fff271e8fff  libapp_launch_measurement.dylib (14.1) <2AE731D8-757E-3A23-8375-9D266B762CC3> /usr/lib/libapp_launch_measurement.dylib
    0x7fff271e9000 -     0x7fff27230fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <32846C89-8FED-3225-B370-34FB1DA82A85> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff27231000 -     0x7fff27313fff  libxml2.2.dylib (34.26) <29CE75F5-D4D3-35BD-9B89-3B8970980C55> /usr/lib/libxml2.2.dylib
    0x7fff27314000 -     0x7fff27361fff  com.apple.CoreVideo (1.8 - 0.0) <FE8A9F52-4140-36D8-BE09-800E75857EAD> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff27362000 -     0x7fff27364fff  com.apple.loginsupport (1.0 - 1) <FF0F8335-44A1-30C6-A005-5B50FAEC72CF> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff2831c000 -     0x7fff2832cfff  libsystem_containermanager.dylib (318.100.4.700.1) <45445167-AFC7-3406-A858-9AE8D8F45907> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff2832d000 -     0x7fff2833efff  com.apple.IOSurface (290.8.2 - 290.8.2) <B98B7126-FFF8-343F-BE66-32212DE3BEBE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff2833f000 -     0x7fff28348fff  com.apple.IOAccelerator (442.10 - 442.10) <19FBA808-F918-3BB2-BE78-A1B0D10D724D> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28349000 -     0x7fff2846cfff  com.apple.Metal (244.303 - 244.303) <A9397F90-E221-397B-BA10-B52135A72D68> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff2846d000 -     0x7fff28489fff  com.apple.audio.caulk (1.0 - 70) <A8D1B95D-91AF-3FF5-9CD7-93661045C83A> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff2848a000 -     0x7fff28574fff  com.apple.CoreMedia (1.0 - 2780.10.4.1.1) <237F9A0B-FE1F-3E4D-BE4D-8E27989EA845> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff28575000 -     0x7fff286d1fff  libFontParser.dylib (305.6.0.6) <E2A105F9-8B39-3A45-94CE-6BF2DB31EB25> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff286d2000 -     0x7fff289cdfff  com.apple.HIToolbox (2.1.1 - 1062) <621A473B-BE8A-3381-970A-25F253BE208A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff289ce000 -     0x7fff289e1fff  com.apple.framework.DFRFoundation (1.0 - 267) <C10A9E83-76B8-35E7-9604-F29855DD76D8> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff289e2000 -     0x7fff289e5fff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.2) <41D5117E-E262-3638-B01E-494487E7DB39> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff289e6000 -     0x7fff28a0ffff  com.apple.CoreSVG (1.0 - 149) <6215F1BD-17B3-3B6E-8FB1-3C0AD5AD3C26> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28a10000 -     0x7fff28c4dfff  com.apple.ImageIO (3.3.0 - 2130.16.2) <15C8679A-DFE6-3664-977F-A82A97FD59C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28c4e000 -     0x7fff28fc9fff  com.apple.CoreImage (16.3.0 - 1140.2) <3C2DE86C-89FA-3EC1-ACFE-6BE95F54B123> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff28fca000 -     0x7fff29030fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <02F2E0C6-0C0F-3390-A63B-189832967015> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff29031000 -     0x7fff29034fff  libsystem_configuration.dylib (1109.140.1) <53B71513-3009-3A8C-A5AA-9C15DD0AB54E> /usr/lib/system/libsystem_configuration.dylib
    0x7fff29035000 -     0x7fff29039fff  libsystem_sandbox.dylib (1441.141.13.701.2) <1E19BC49-484C-32BB-8BB7-99D41C63F86E> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff2903a000 -     0x7fff2903bfff  com.apple.AggregateDictionary (1.0 - 1) <CD5E6E8F-7AB6-345E-9243-D5D674DC0225> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff2903c000 -     0x7fff2903ffff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <15CBB967-FAAE-3A22-A87F-4833A9D835E3> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff29040000 -     0x7fff29041fff  liblangid.dylib (136) <D6DDBEB6-7A9A-3F00-8DEF-18934CFC0A08> /usr/lib/liblangid.dylib
    0x7fff29042000 -     0x7fff290e6fff  com.apple.CoreNLP (1.0 - 245.2) <F40C2289-9A6D-3C55-A6DA-FFAD41636415> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff290e7000 -     0x7fff290edfff  com.apple.LinguisticData (1.0 - 399) <E6DC793D-3133-3D9B-BCF8-E4A628E45586> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff290ee000 -     0x7fff29796fff  libBNNS.dylib (288.100.5) <1E45AC70-6C75-3F27-9252-40DF6B2D674A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff29797000 -     0x7fff29969fff  libvDSP.dylib (760.100.3) <7F1276C0-C9F6-3C6F-A0F7-1EB4EA666BD8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2996a000 -     0x7fff2997bfff  com.apple.CoreEmoji (1.0 - 128.4) <011AA15B-6988-3F36-81A3-2B52B561D6E0> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff2997c000 -     0x7fff29986fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <28991DA2-1726-3F77-A9C5-4BB5AAEFA166> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29c7f000 -     0x7fff29c8ffff  com.apple.AssertionServices (1.0 - 505.100.9) <1B805E53-D42F-3019-88F0-64D3BD287DDB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29c90000 -     0x7fff29d1bfff  com.apple.securityfoundation (6.0 - 55240.40.4) <D1E23625-27EF-37F4-93B8-E3162C1943BA> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29d1c000 -     0x7fff29d25fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <8CF5B495-3026-3CE1-9EFC-8D7D71380A43> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29d26000 -     0x7fff29d2afff  com.apple.xpc.ServiceManagement (1.0 - 1) <D561E8B7-690C-3D18-A1E8-C4B01B8B9C11> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29d2b000 -     0x7fff29d2dfff  libquarantine.dylib (119.40.4) <21C63859-6DFB-3463-9ADF-BB44FB28067C> /usr/lib/system/libquarantine.dylib
    0x7fff29d2e000 -     0x7fff29d39fff  libCheckFix.dylib (31) <1C2B822D-29D6-36E2-BBA3-F72DE49E038B> /usr/lib/libCheckFix.dylib
    0x7fff29d3a000 -     0x7fff29d51fff  libcoretls.dylib (169.100.1) <FC8265A0-9659-35D9-BA6F-6507A44742FE> /usr/lib/libcoretls.dylib
    0x7fff29d52000 -     0x7fff29d62fff  libbsm.0.dylib (68.40.1) <0CF67F8A-268D-320A-A3A4-D7C2D9AB8027> /usr/lib/libbsm.0.dylib
    0x7fff29d63000 -     0x7fff29dacfff  libmecab.dylib (929.10) <47A982DF-1436-366E-AC45-1DA068832AED> /usr/lib/libmecab.dylib
    0x7fff29dad000 -     0x7fff29db2fff  libgermantok.dylib (24) <189F508A-723B-345D-918F-178CF15077F3> /usr/lib/libgermantok.dylib
    0x7fff29db3000 -     0x7fff29dc8fff  libLinearAlgebra.dylib (1336.140.1) <27358E5F-256F-309F-AAC8-BAC4A56C7BF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29dc9000 -     0x7fff29fe7fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <B7F8218A-2DA2-35A4-9200-3BD52CCF125C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff29fe8000 -     0x7fff2a037fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <3993AC67-62B4-3E49-B5BF-E8F814CE6C97> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a038000 -     0x7fff2a199fff  com.apple.MLCompute (1.0 - 1) <6026D664-0453-321F-81FE-A40AD902849E> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a19a000 -     0x7fff2a1d0fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <A194A321-8DD9-3051-97EC-3C4630946007> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a1d1000 -     0x7fff2a227fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <A72429D4-3BED-34DD-BEDE-322A0975A8BC> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a228000 -     0x7fff2a2b8fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <0B333F06-FAD5-3689-9017-15334AD4F51C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a2b9000 -     0x7fff2a2c8fff  com.apple.AppleFSCompression (125 - 1.0) <1C5279EE-8F78-386E-9E4D-24A3785CACA2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a2c9000 -     0x7fff2a2d5fff  libbz2.1.0.dylib (44) <6E82D414-3810-36CF-94FF-B1BDF48DB501> /usr/lib/libbz2.1.0.dylib
    0x7fff2a2d6000 -     0x7fff2a2dafff  libsystem_coreservices.dylib (127.1) <6D84FA08-CB2B-34E1-9AB4-A54E82CB9161> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a2db000 -     0x7fff2a308fff  com.apple.CoreServices.OSServices (1122.45 - 1122.45) <097586DB-22C5-323A-BC5C-5AF75613846D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a4d7000 -     0x7fff2a4e9fff  libz.1.dylib (76.140.1) <A2FF8D14-1632-3047-9829-CC90239F97FF> /usr/lib/libz.1.dylib
    0x7fff2a4ea000 -     0x7fff2a531fff  libsystem_m.dylib (3186.100.3) <1836B380-C579-3195-BC3F-77404D432186> /usr/lib/system/libsystem_m.dylib
    0x7fff2a532000 -     0x7fff2a532fff  libcharset.1.dylib (59) <3A46C22D-E678-356B-9BAD-6E837704D662> /usr/lib/libcharset.1.dylib
    0x7fff2a533000 -     0x7fff2a538fff  libmacho.dylib (980) <F7BDAFE5-4E49-39DD-8F94-CD5E49C91A90> /usr/lib/system/libmacho.dylib
    0x7fff2a539000 -     0x7fff2a554fff  libkxld.dylib (7195.141.49.702.12) <6585C769-FACC-3E47-844B-C7011292F3C5> /usr/lib/system/libkxld.dylib
    0x7fff2a555000 -     0x7fff2a560fff  libcommonCrypto.dylib (60178.120.3) <B057F752-3057-394D-A3F6-AA11A04A6392> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a561000 -     0x7fff2a56bfff  libunwind.dylib (201) <9D6A6228-8DC3-3521-B458-4EDE4A9F5E65> /usr/lib/system/libunwind.dylib
    0x7fff2a56c000 -     0x7fff2a573fff  liboah.dylib (203.58) <AC9E8A76-FCAA-3F97-802A-D22EF770463B> /usr/lib/liboah.dylib
    0x7fff2a574000 -     0x7fff2a57efff  libcopyfile.dylib (173.40.2) <BD7EAE7B-28C1-36DF-96B8-F506D50DFF28> /usr/lib/system/libcopyfile.dylib
    0x7fff2a57f000 -     0x7fff2a586fff  libcompiler_rt.dylib (102.2) <BA910DC2-C697-3DAD-9A70-7C8CD5217AC3> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a587000 -     0x7fff2a589fff  libsystem_collections.dylib (1439.141.1) <21F2EF42-56ED-3E0F-9C29-94E0888DC52C> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a58a000 -     0x7fff2a58cfff  libsystem_secinit.dylib (87.60.1) <E976428F-F9E2-334B-AA91-9AAD40234718> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a58d000 -     0x7fff2a58ffff  libremovefile.dylib (49.120.1) <5AC9F8EC-F0E8-3D8A-ADB5-96B5FB581896> /usr/lib/system/libremovefile.dylib
    0x7fff2a590000 -     0x7fff2a590fff  libkeymgr.dylib (31) <9FBE08F6-0679-3976-AFDC-1EAF40C3958F> /usr/lib/system/libkeymgr.dylib
    0x7fff2a591000 -     0x7fff2a598fff  libsystem_dnssd.dylib (1310.140.1) <8C4D6C93-285F-3587-A986-5BB96A1C664F> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a599000 -     0x7fff2a59efff  libcache.dylib (83) <56DCEFF5-111E-32FD-B4E9-E148507C4FEC> /usr/lib/system/libcache.dylib
    0x7fff2a59f000 -     0x7fff2a5a0fff  libSystem.B.dylib (1292.120.1) <A8E7368E-58FA-31E5-8D4D-FC2FED6100E6> /usr/lib/libSystem.B.dylib
    0x7fff2a5a1000 -     0x7fff2a5a4fff  libfakelink.dylib (3) <6002BC93-3627-366E-8D21-A552D56CB215> /usr/lib/libfakelink.dylib
    0x7fff2a5a5000 -     0x7fff2a5a5fff  com.apple.SoftLinking (1.0 - 1) <3D0CEDFD-B263-39CA-8B31-E0A498D05EB3> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a5a6000 -     0x7fff2a5ddfff  libpcap.A.dylib (98.100.3) <236EE73F-6D38-38E0-9BC0-B427DEB7F9FD> /usr/lib/libpcap.A.dylib
    0x7fff2a5de000 -     0x7fff2a6cefff  libiconv.2.dylib (59) <DEE0153A-BDF9-33CA-B8C7-3C39DB906B5E> /usr/lib/libiconv.2.dylib
    0x7fff2a6cf000 -     0x7fff2a6e0fff  libcmph.dylib (8) <83A69507-07D1-387F-9D06-1011E7909EAC> /usr/lib/libcmph.dylib
    0x7fff2a6e1000 -     0x7fff2a752fff  libarchive.2.dylib (83.100.2) <45B577F5-0064-3E73-89B8-BE4A121B214F> /usr/lib/libarchive.2.dylib
    0x7fff2a753000 -     0x7fff2a7bafff  com.apple.SearchKit (1.4.1 - 1.4.1) <7C264603-379D-38BF-A3EC-49C01059C5E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a7bb000 -     0x7fff2a7bcfff  libThaiTokenizer.dylib (3) <BA265C01-176E-3F7D-97F6-7FAABB0CAEC8> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a7bd000 -     0x7fff2a7dffff  com.apple.applesauce (1.0 - 16.28) <EAFF4FEC-51F3-3D0D-9D99-E62E75937F1B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a7e0000 -     0x7fff2a7f7fff  libapple_nghttp2.dylib (1.41) <AC9520D7-D54F-3031-9503-FEA5A5ED5E56> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a7f8000 -     0x7fff2a80efff  libSparseBLAS.dylib (1336.140.1) <7D926256-F187-33CA-87D6-74F1660C438A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a80f000 -     0x7fff2a810fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <9BFE310E-E910-3228-BDF5-21A7C4468D89> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a811000 -     0x7fff2a816fff  libpam.2.dylib (28.40.1.700.1) <564320AF-69E5-3FEE-BE3A-E500B9B6786F> /usr/lib/libpam.2.dylib
    0x7fff2a817000 -     0x7fff2a836fff  libcompression.dylib (96.120.1) <F36054C1-6074-3A22-82EF-6F4A2A52599C> /usr/lib/libcompression.dylib
    0x7fff2a837000 -     0x7fff2a83cfff  libQuadrature.dylib (7) <256CB21E-2878-3F22-B4B5-E1FB60D64C9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a83d000 -     0x7fff2abdafff  libLAPACK.dylib (1336.140.1) <02F2D4D1-8763-32D1-B5F9-9DD439EFC8E8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2abdb000 -     0x7fff2ac2afff  com.apple.DictionaryServices (1.2 - 341) <FB843860-C7D5-3060-B50E-303A3CBAE9A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ac2b000 -     0x7fff2ac43fff  liblzma.5.dylib (16) <455C9083-014D-3037-AC54-1395F3796734> /usr/lib/liblzma.5.dylib
    0x7fff2ac44000 -     0x7fff2ac45fff  libcoretls_cfhelpers.dylib (169.100.1) <6760D250-2628-3DA2-A8A4-6F438E09527A> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ac46000 -     0x7fff2ad41fff  com.apple.APFS (1677.141.3 - 1677.141.3) <E4B0DF0F-E1A5-3FEF-A2A6-8105AD54D95A> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ad42000 -     0x7fff2ad50fff  libxar.1.dylib (452.140.1) <9E460111-1BBC-31FE-8CAF-FA8AEC22C1E9> /usr/lib/libxar.1.dylib
    0x7fff2ad51000 -     0x7fff2ad54fff  libutil.dylib (58.40.3) <B5961283-0856-3D78-AE9C-EAFB6A903569> /usr/lib/libutil.dylib
    0x7fff2ad55000 -     0x7fff2ad7dfff  libxslt.1.dylib (17.10) <52B300FD-B3F6-3689-9554-98B543A298C7> /usr/lib/libxslt.1.dylib
    0x7fff2ad7e000 -     0x7fff2ad88fff  libChineseTokenizer.dylib (37.1) <62BC78D3-1400-3366-A04E-C8BEE6AC00B5> /usr/lib/libChineseTokenizer.dylib
    0x7fff2ad89000 -     0x7fff2ae46fff  libvMisc.dylib (760.100.3) <560739C2-D16B-36CA-89F4-BD4DD2192333> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2ae47000 -     0x7fff2aedefff  libate.dylib (3.0.6) <CCD85C79-E892-339A-B0AB-E385D4F635F5> /usr/lib/libate.dylib
    0x7fff2aedf000 -     0x7fff2aee6fff  libIOReport.dylib (64.100.1) <0997845A-1FF3-35B3-A5ED-2FB16D07F624> /usr/lib/libIOReport.dylib
    0x7fff2b07c000 -     0x7fff2b0cffff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <1D2A99E8-473C-3C56-BD50-98549FDC8932> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b0d0000 -     0x7fff2b0e9fff  libexpat.1.dylib (26.141.1) <0416D6BA-2AEB-3BBA-8584-FA28E62E8007> /usr/lib/libexpat.1.dylib
    0x7fff2b0ea000 -     0x7fff2b0f3fff  libheimdal-asn1.dylib (597.140.4) <60E659ED-BF63-3853-868D-D82D981AA955> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b0f4000 -     0x7fff2b108fff  com.apple.IconFoundation (479.4 - 479.4) <71915E97-2F3E-36EE-B000-0EE7B258DD29> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b109000 -     0x7fff2b175fff  com.apple.IconServices (479.4 - 479.4) <C3E66299-D698-3AF5-B34D-D2782F91E106> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b176000 -     0x7fff2b214fff  com.apple.MediaExperience (1.0 - 1) <F5328457-1856-3DA3-B254-EC4FBBA7799F> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b215000 -     0x7fff2b23dfff  com.apple.persistentconnection (1.0 - 1.0) <CF93C3EC-D1D1-3BAE-92B1-5D85A969F748> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b23e000 -     0x7fff2b24cfff  com.apple.GraphVisualizer (1.0 - 100.1) <928039C0-8548-38A0-BBE9-6AA807CCE7B7> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b24d000 -     0x7fff2b668fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <13FFCD22-55DB-301B-9C6F-03C94266591B> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b669000 -     0x7fff2b6b0fff  com.apple.OTSVG (1.0 - 677.6.0.4) <F89F3381-E8B0-3964-995E-6213AD6955B2> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b6b1000 -     0x7fff2b6b7fff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1.701.2) <C50E01B1-3B25-3237-A424-0E1FEBC3A890> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b6b8000 -     0x7fff2b6cafff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <24525668-9221-3A7B-8C64-CDAE418049DA> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b6cb000 -     0x7fff2b6cdfff  libspindump.dylib (295.3) <E090FDF1-6C64-39B9-A750-63EC6AB7E0C1> /usr/lib/libspindump.dylib
    0x7fff2b6ce000 -     0x7fff2b78efff  com.apple.Heimdal (4.0 - 2.0) <52976F1C-2F22-397A-8F21-38BEB3061DC2> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b92e000 -     0x7fff2b96afff  com.apple.bom (14.0 - 235.3) <B849E4CE-F977-3F27-857C-8000AD4FE041> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2b96b000 -     0x7fff2b9b4fff  com.apple.AppleJPEG (1.0 - 1) <2A8FF19B-B937-3F0B-A59B-A9A8B24F53E6> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2b9b5000 -     0x7fff2ba94fff  libJP2.dylib (2130.16.2) <967ABC46-39E1-38CC-8BE5-FDE37AFB77BD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2ba95000 -     0x7fff2ba98fff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <2907CD2F-A115-34CF-BB9D-DCFEBAEE78F3> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2ba99000 -     0x7fff2bacffff  com.apple.MultitouchSupport.framework (4440.3.1 - 4440.3.1) <9F19F332-ADC4-3D35-A9ED-C62AC334A704> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bad0000 -     0x7fff2bc2efff  com.apple.VideoToolbox (1.0 - 2780.10.4.1.1) <774F6519-3AF4-3B1C-BCA8-72B287B8CF05> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bc2f000 -     0x7fff2bc62fff  libAudioToolboxUtility.dylib (1181.72.5) <F1E3759E-BE9B-30CE-97F0-669ECD0F012F> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bc63000 -     0x7fff2bc83fff  libPng.dylib (2130.16.2) <BE17D73D-2A4F-3A46-85DE-A523D58A82F5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bc84000 -     0x7fff2bce5fff  libTIFF.dylib (2130.16.2) <48B3B58D-BC6F-3D7B-988C-729475BFACCA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bce6000 -     0x7fff2bd02fff  com.apple.IOPresentment (58 - 37) <BA4B88DD-52FF-3F07-82E2-533E7D6548C0> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bd03000 -     0x7fff2bd0afff  com.apple.GPUWrangler (6.3.6 - 6.3.6) <D41B27C4-9FC6-3F2F-8C65-06F9ED6EE43D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bd0b000 -     0x7fff2bd0efff  libRadiance.dylib (2130.16.2) <5B7B2CA5-D6ED-3A8E-97BC-A3D99EE023F9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bd0f000 -     0x7fff2bd14fff  com.apple.DSExternalDisplay (3.1 - 380) <85C7B7A3-8E61-3773-A7A1-0E594C390144> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bd15000 -     0x7fff2bd39fff  libJPEG.dylib (2130.16.2) <164FF5FC-2979-394D-8474-D35A20394794> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bd3a000 -     0x7fff2bd69fff  com.apple.ATSUI (1.0 - 1) <D64FE353-AFFA-3B55-8E85-F222434E2FC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2bd6a000 -     0x7fff2bd6efff  libGIF.dylib (2130.16.2) <3EDEAB7F-7268-3DA5-898D-1C21579DC859> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2bd6f000 -     0x7fff2bd78fff  com.apple.CMCaptureCore (1.0 - 82.6) <E96DDCE5-8BCF-392D-84C6-87D76BC9DF9A> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2bd79000 -     0x7fff2bdc0fff  com.apple.print.framework.PrintCore (16.1 - 531.1) <D8F84239-11A0-311F-A66C-99C87F99D879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bdc1000 -     0x7fff2be8efff  com.apple.TextureIO (3.10.9 - 3.10.9) <3AC1D19C-DACE-33A7-9C89-BDD3D38A7080> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2be8f000 -     0x7fff2be97fff  com.apple.InternationalSupport (1.0 - 61.1) <D4CAEFD9-602F-3112-AD33-A674F2A6EC7F> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2be98000 -     0x7fff2bf12fff  com.apple.datadetectorscore (8.0 - 674) <3B902938-2B3E-31A5-A57B-151BBB5D8BC8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2bf13000 -     0x7fff2bf70fff  com.apple.UserActivity (439 - 439) <59BC012A-4927-3FB9-9AEF-75F0096A1548> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2cbde000 -     0x7fff2cc0ffff  libSessionUtility.dylib (76.69) <9CA8B6AC-ADC8-3805-A7AE-2532B3C0EBB0> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2cc10000 -     0x7fff2cd44fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <99F6F2D8-189D-398C-A38C-B6B49F66A6E8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2cd45000 -     0x7fff2cdaafff  com.apple.audio.AudioSession (1.0 - 76.69) <85C29DF5-2A9A-3029-8AF5-91E83074C414> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2cdab000 -     0x7fff2cdbdfff  libAudioStatistics.dylib (27.64) <C46ED1DB-C7F4-3E56-B992-25821F9B1CE1> /usr/lib/libAudioStatistics.dylib
    0x7fff2cdbe000 -     0x7fff2cdcdfff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <1746AB65-AAAA-3BAB-AAD3-C158FB532798> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2cdce000 -     0x7fff2ce3afff  com.apple.ApplicationServices.ATS (377 - 516) <484D4858-74A8-3541-91E5-2C74F70A3824> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2ce3b000 -     0x7fff2ce53fff  libresolv.9.dylib (68.2) <78461752-674E-35D5-94D6-17E627802577> /usr/lib/libresolv.9.dylib
    0x7fff2cf86000 -     0x7fff2d065fff  libSMC.dylib (20) <038349BC-2D55-3E20-B3C3-BFEEA36E730A> /usr/lib/libSMC.dylib
    0x7fff2d066000 -     0x7fff2d0c5fff  libcups.2.dylib (494.7) <0006C772-A113-37BC-A8AD-A7B96DE21EE2> /usr/lib/libcups.2.dylib
    0x7fff2d0c6000 -     0x7fff2d0d5fff  com.apple.LangAnalysis (1.7.0 - 254) <EEF814D5-A3F9-3FF4-8F1B-D6083AFAEC52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d0d6000 -     0x7fff2d0e0fff  com.apple.NetAuth (6.2 - 6.2) <2FB90509-3BD8-39CF-BE6A-5490F84FF284> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d0e1000 -     0x7fff2d0e8fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <00861A68-F725-3E01-BDB9-64823636DD90> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d0e9000 -     0x7fff2d0f4fff  com.apple.QD (4.0 - 416) <AAE33CA8-0995-3BA3-B5CE-4ED19706BB44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d0f5000 -     0x7fff2d749fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <09E26A64-0C70-38AD-B9C9-7F8847E1F09F> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d74a000 -     0x7fff2d755fff  com.apple.perfdata (1.0 - 67.40.1) <4A3F192A-2416-3D16-B318-A160264359DE> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d756000 -     0x7fff2d764fff  libperfcheck.dylib (41) <7D626792-9A87-3A1F-BE6E-C7D8FE62B800> /usr/lib/libperfcheck.dylib
    0x7fff2d765000 -     0x7fff2d774fff  com.apple.Kerberos (3.0 - 1) <69B24A09-0788-3ACA-A01C-358746980694> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d775000 -     0x7fff2d7c5fff  com.apple.GSS (4.0 - 2.0) <5C6BCBC8-F041-3588-AC99-94CD85737E2B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d7c6000 -     0x7fff2d7d6fff  com.apple.CommonAuth (4.0 - 2.0) <82E6D81F-8B40-3986-B5F2-CF151AD8C06C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d9a7000 -     0x7fff2d9a7fff  liblaunch.dylib (2038.120.1.701.2) <B79B00B1-954F-3EC4-9E22-A24E25CAE88D> /usr/lib/system/liblaunch.dylib
    0x7fff2fbd6000 -     0x7fff2fbfdfff  com.apple.RemoteViewServices (2.0 - 163) <960463A4-6F65-3E89-8918-FA77BF9F6ADC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fbfe000 -     0x7fff2fc0dfff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <08338B73-5E68-33E3-93DC-F5BAF287CF82> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fc0e000 -     0x7fff2fc15fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <927F7D7F-8BD2-3EF2-A239-C20010C2149E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fe43000 -     0x7fff2fe43fff  libsystem_product_info_filter.dylib (8.40.1) <BB06C92C-6BD7-310C-A176-DC0DCE8D9F2B> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2ff1b000 -     0x7fff2ff1bfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F46E0ACF-7524-3CA3-A64A-5DDF6081EB67> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2ff41000 -     0x7fff2ff41fff  com.apple.CoreServices (1122.45 - 1122.45) <05DA2462-9BFC-38D9-820A-8842710471D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff300fd000 -     0x7fff300fdfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <3D8DECC6-19B3-3A32-98CF-EB07536D1635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff32ec7000 -     0x7fff32ecafff  com.apple.help (1.3.8 - 71) <745DA416-7B89-391F-9D7B-EBD78DB63056> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff33130000 -     0x7fff33130fff  com.apple.ApplicationServices (48 - 50) <59E17F70-AB03-320D-B955-8F87F2C40898> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff33445000 -     0x7fff33445fff  libHeimdalProxy.dylib (79) <69042CA5-B0DE-392D-8B32-51446EA228C5> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff363c9000 -     0x7fff363ecfff  com.apple.openscripting (1.7 - 190.1) <D0430B21-C855-3DE4-A512-0708FC1CB9AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff363ed000 -     0x7fff363f0fff  com.apple.securityhi (9.0 - 55008) <4A0776E2-2CA9-3EFE-8653-1E96644D9B43> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff363f1000 -     0x7fff363f4fff  com.apple.ink.framework (10.15 - 227) <FDCF3900-B1C0-32E2-8C9B-C8E6D43B1374> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff363f5000 -     0x7fff363f8fff  com.apple.CommonPanels (1.2.6 - 101) <5A909E1B-3060-3C41-8B93-EB2CAD9BAA61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff363f9000 -     0x7fff36400fff  com.apple.ImageCapture (1711.5.2.1 - 1711.5.2.1) <321754DF-D200-39D3-A184-FF13D4802A70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff3c955000 -     0x7fff3c958fff  com.apple.print.framework.Print (15 - 271) <C3581434-D285-320A-977F-77070BFC5F3B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3c959000 -     0x7fff3c95cfff  com.apple.Carbon (160 - 164) <C916A7BB-B2B4-3248-B3EA-5A59C066D68B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3cc0f000 -     0x7fff3cc2efff  com.apple.private.SystemPolicy (1.0 - 1) <89781097-BA30-3186-B368-3830D1FE4FC0> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3d56c000 -     0x7fff3d57efff  libmis.dylib (274.140.2) <D8990A31-A5AE-3535-BE5E-3EE9A8D0C9F9> /usr/lib/libmis.dylib
    0x7fff6b8ce000 -     0x7fff6b8d4fff  libCoreFSCache.dylib (200.12) <B6360761-3B05-35AE-8E0C-F819414FD093> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6b8d5000 -     0x7fff6b8d9fff  libCoreVMClient.dylib (200.12) <4D617E02-85B8-3BC2-82FE-5CEA77809181> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6b8da000 -     0x7fff6b8e9fff  com.apple.opengl (18.5.9 - 18.5.9) <610E765C-8C0D-3422-AD6E-636D3EBD2AD0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6b8ea000 -     0x7fff6b8ecfff  libCVMSPluginSupport.dylib (18.5.9) <C7B33518-2685-3985-ABCB-FC3B0105748C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6b8ed000 -     0x7fff6b8f5fff  libGFXShared.dylib (18.5.9) <AD53ED9A-C694-3EF4-863E-898E88F6D84C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6b8f6000 -     0x7fff6b929fff  libGLImage.dylib (18.5.9) <6C478ED9-E513-3E43-B9F1-D15A20A0EE85> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6b92a000 -     0x7fff6b966fff  libGLU.dylib (18.5.9) <D5473328-FD13-36A5-9CAC-CF4F59CDAA29> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6bafb000 -     0x7fff6bb05fff  libGL.dylib (18.5.9) <08A0476A-D04F-3816-AA4D-11EC2467F748> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6cf45000 -     0x7fff6cf9dfff  com.apple.opencl (4.6 - 4.6) <8C87D26C-12C6-33E8-AE32-45B699667DB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)
Writable regions: Total=401.6M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=401.6M(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
Dispatch continuations            64.0M        1 
Kernel Alloc Once                    8K        1 
MALLOC                            88.1M       24 
MALLOC guard page                   24K        5 
MALLOC_MEDIUM (reserved)         240.0M        2         reserved VM address space (unallocated)
STACK GUARD                       56.0M        3 
Stack                             9232K        3 
VM_ALLOCATE                         24K        4 
__DATA                            10.4M      254 
__DATA_CONST                      10.8M      149 
__DATA_DIRTY                       511K       88 
__FONT_DATA                          4K        1 
__LINKEDIT                       882.7M        5 
__OBJC_RO                         70.3M        1 
__OBJC_RW                         2496K        2 
__TEXT                           170.2M      258 
__UNICODE                          588K        1 
mapped file                       31.0M        4 
shared memory                     1256K       13 
===========                     =======  ======= 
TOTAL                              1.6G      820 
TOTAL, minus reserved VM space     1.4G      820 
ronaldoussoren commented 9 months ago

Do you get an error message when starting the application from the terminal (something like .../main.app/Contents/MacOS/main)?

One think I notice in the crash log is that tcl and tk are not mentioned at all in the Binary Images section and neither is the Python framework.

xmagedo commented 9 months ago

Below is txt file which was generated to show the libraries that were not included, I checked if the tcl/tk is among them or not. but they are not .

PyInstaller Missing Modules

`This file lists modules PyInstaller was not able to find. This does not necessarily mean this module is required for running your program. Python and Python 3rd-party packages include a lot of conditional or optional modules. For example the module 'ntpath' only exists on Windows, whereas the module 'posixpath' only exists on Posix systems. Types if import: * top-level: imported at the top-level - look at these first * conditional: imported within an if-statement * delayed: imported within a function * optional: imported within a try-except-statement IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for tracking down the missing module yourself. Thanks! missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional) missing module named org - imported by pickle (optional) missing module named urllib.FancyURLopener - imported by urllib (conditional, optional), pygments.lexers._sourcemod_builtins (conditional, optional) missing module named urllib.urlretrieve - imported by urllib (conditional, optional), pygments.lexers._php_builtins (conditional, optional) missing module named urllib.quote - imported by urllib (optional), send2trash.plat_other (optional) missing module named urllib.quote_plus - imported by urllib (optional), prometheus_client.exposition (optional) missing module named urllib.urlopen - imported by urllib (delayed, optional), lxml.html (delayed, optional), pygments.lexers._lua_builtins (conditional, optional), pygments.lexers._postgres_builtins (conditional, optional) missing module named urllib.unquote - imported by urllib (conditional), jsonschema.compat (conditional) missing module named urllib.pathname2url - imported by urllib (conditional), jsonschema.compat (conditional) missing module named urllib.urlencode - imported by urllib (delayed, conditional, optional), IPython.lib.display (delayed, conditional, optional), lxml.html (delayed, optional), requests_toolbelt._compat (conditional) missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) missing module named pep517 - imported by importlib.metadata (delayed) missing module named nt - imported by shutil (conditional), ntpath (optional), pathlib (conditional), os (delayed, conditional, optional), ctypes (delayed, conditional) missing module named _winapi - imported by encodings (delayed, conditional, optional), subprocess (optional), multiprocessing.connection (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.reduction (conditional), multiprocessing.shared_memory (conditional), multiprocessing.heap (conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level), jupyter_client.launcher (delayed, conditional, optional), ipykernel.parentpoller (delayed, optional), test.support (delayed, conditional), multiprocess.connection (optional), multiprocess.spawn (delayed, conditional), multiprocess.reduction (conditional), multiprocess.shared_memory (conditional), multiprocess.heap (conditional), multiprocess.popen_spawn_win32 (top-level) missing module named msvcrt - imported by subprocess (optional), getpass (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level), prompt_toolkit.input.win32 (top-level), _pyio (conditional), IPython.core.page (conditional), filelock (optional), click._winconsole (top-level), click._termui_impl (conditional), test.support (delayed, conditional, optional), multiprocess.spawn (delayed, conditional), multiprocess.popen_spawn_win32 (top-level), datasets.utils.filelock (optional) missing module named vms_lib - imported by platform (delayed, optional) missing module named 'java.lang' - imported by platform (delayed, optional) missing module named java - imported by xml.sax._exceptions (conditional) missing module named _winreg - imported by platform (delayed, optional), nbconvert.preprocessors.svg2pdf (conditional, optional), pkg_resources._vendor.appdirs (delayed, conditional), pygments.formatters.img (optional) missing module named winreg - imported by mimetypes (optional), urllib.request (delayed, conditional, optional), platform (delayed, optional), distutils.msvc9compiler (top-level), distutils._msvccompiler (top-level), numpy.distutils.cpuinfo (delayed, optional), IPython.utils.path (delayed, conditional, optional), requests.utils (delayed, conditional, optional), nbconvert.preprocessors.svg2pdf (conditional, optional), jedi.api.environment (delayed), dill._dill (optional), matplotlib.font_manager (delayed), matplotlib (delayed, conditional), torch._appdirs (delayed), pkg_resources._vendor.appdirs (delayed, conditional), setuptools.msvc (conditional), pygments.formatters.img (optional) missing module named __builtin__ - imported by pyparsing (conditional), ipython_genutils.py3compat (conditional), ptyprocess.ptyprocess (optional), pkg_resources._vendor.pyparsing (conditional), setuptools._vendor.pyparsing (conditional) missing module named ordereddict - imported by pyparsing (optional), pkg_resources._vendor.pyparsing (optional), setuptools._vendor.pyparsing (optional) missing module named _manylinux - imported by pkg_resources._vendor.packaging.tags (delayed, optional), packaging._manylinux (delayed, optional), setuptools._vendor.packaging.tags (delayed, optional) missing module named 'setuptools.extern.pyparsing' - imported by setuptools._vendor.packaging.markers (top-level), setuptools._vendor.packaging.requirements (top-level) missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level), transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (top-level) missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level), transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (top-level), loguru._logger (top-level) missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) missing module named multiprocessing.current_process - imported by multiprocessing (top-level), loguru._logger (top-level) missing module named multiprocessing.Queue - imported by multiprocessing (top-level), transformers.benchmark.benchmark_utils (top-level) missing module named multiprocessing.Pipe - imported by multiprocessing (top-level), transformers.benchmark.benchmark_utils (top-level) missing module named multiprocessing.cpu_count - imported by multiprocessing (top-level), transformers.data.processors.squad (top-level) missing module named multiprocessing.Manager - imported by multiprocessing (top-level), datasets.utils.py_utils (top-level) missing module named multiprocessing.RLock - imported by multiprocessing (delayed, conditional, optional), tqdm.std (delayed, conditional, optional), datasets.utils.py_utils (top-level) missing module named multiprocessing.Pool - imported by multiprocessing (delayed, conditional), scipy._lib._util (delayed, conditional), datasets.utils.py_utils (top-level), transformers.data.processors.squad (top-level), transformers.models.nougat.tokenization_nougat_fast (top-level), transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (top-level) missing module named multiprocessing.Process - imported by multiprocessing (top-level), jupyter_client.ssh.tunnel (top-level), transformers.benchmark.benchmark_utils (top-level) missing module named 'setuptools.extern.more_itertools' - imported by setuptools.dist (top-level), setuptools.msvc (top-level) missing module named 'setuptools.extern.packaging.version' - imported by setuptools.config (top-level), setuptools.msvc (top-level) missing module named usercustomize - imported by site (delayed, optional) missing module named sitecustomize - imported by site (delayed, optional) missing module named 'setuptools.extern.packaging.utils' - imported by setuptools.wheel (top-level) missing module named 'setuptools.extern.packaging.tags' - imported by setuptools.wheel (top-level) missing module named 'pkg_resources.extern.pyparsing' - imported by pkg_resources._vendor.packaging.markers (top-level), pkg_resources._vendor.packaging.requirements (top-level) missing module named 'com.sun' - imported by torch._appdirs (delayed, conditional, optional), pkg_resources._vendor.appdirs (delayed, conditional, optional) missing module named win32api - imported by IPython.utils._process_win32 (delayed, optional), jupyter_core.paths (delayed), torch._appdirs (delayed, conditional, optional), pkg_resources._vendor.appdirs (delayed, conditional, optional) missing module named 'win32com.shell' - imported by torch._appdirs (conditional, optional), pkg_resources._vendor.appdirs (delayed, conditional, optional) missing module named pkg_resources.extern.packaging - imported by pkg_resources.extern (top-level), pkg_resources (top-level) missing module named pkg_resources.extern.appdirs - imported by pkg_resources.extern (top-level), pkg_resources (top-level) missing module named 'setuptools.extern.packaging.specifiers' - imported by setuptools.config (top-level) missing module named setuptools.extern.ordered_set - imported by setuptools.extern (top-level), setuptools.dist (top-level) missing module named setuptools.extern.packaging - imported by setuptools.extern (top-level), setuptools.dist (top-level), setuptools.command.egg_info (top-level) missing module named pyimod02_importers - imported by /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py (delayed), /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py (delayed) missing module named 'IPython.kernel.zmq' - imported by IPython (delayed) missing module named traitlets.config.Application - imported by traitlets.config (delayed, conditional), traitlets.log (delayed, conditional), ipykernel.kernelspec (top-level), notebook.base.handlers (top-level) missing module named IPython.utils.warn - imported by IPython.utils (delayed), IPython.testing.tools (delayed) missing module named asyncio.timeout - imported by asyncio (conditional), websockets.legacy.compatibility (conditional) missing module named _overlapped - imported by asyncio.windows_events (top-level) missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional) missing module named colorama - imported by tornado.log (optional), jedi.debug (conditional, optional), IPython.terminal.interactiveshell (delayed), tqdm.utils (conditional, optional), click._compat (delayed, conditional), torch._inductor.utils (delayed, optional), loguru._colorama (delayed) missing module named win32evtlog - imported by logging.handlers (delayed, optional) missing module named win32evtlogutil - imported by logging.handlers (delayed, optional) missing module named 'gi.repository' - imported by ipykernel.gui.gtk3embed (top-level), send2trash.plat_gio (top-level) missing module named gi - imported by matplotlib.cbook (delayed, conditional), ipykernel.gui.gtk3embed (top-level) missing module named gtk - imported by ipykernel.gui.gtkembed (top-level) missing module named gobject - imported by ipykernel.gui.gtkembed (top-level) missing module named wx - imported by IPython.lib.guisupport (delayed), ipykernel.eventloops (delayed) missing module named PySide2 - imported by IPython.external.qt_loaders (delayed), qtpy (conditional, optional) missing module named sip - imported by IPython.external.qt_loaders (delayed, optional), qtpy (conditional, optional) missing module named 'tornado.platform.select' - imported by zmq.eventloop.minitornado.ioloop (delayed) missing module named 'tornado.platform.kqueue' - imported by zmq.eventloop.minitornado.ioloop (delayed, conditional) missing module named 'tornado.platform.epoll' - imported by zmq.eventloop.minitornado.ioloop (delayed, conditional) missing module named monotime - imported by zmq.eventloop.minitornado.platform.auto (optional) missing module named thread - imported by cffi.lock (conditional, optional), cffi.cparser (conditional, optional), zmq.eventloop.minitornado.ioloop (optional) missing module named 'tornado.stack_context' - imported by zmq.eventloop.zmqstream (optional) missing module named zmq.ETERM - imported by zmq (delayed), zmq.error (delayed, conditional), zmq.eventloop._deprecated (top-level) missing module named zmq.ZMQError - imported by zmq (delayed, optional), zmq.sugar.attrsettr (delayed, optional), zmq.eventloop._deprecated (top-level), jupyter_client.channels (top-level) missing module named 'ipyparallel.serialize' - imported by ipykernel.datapub (optional), ipykernel.serialize (optional), ipykernel.pickleutil (optional) missing module named ipyparallel - imported by ipykernel.zmqshell (delayed, conditional, optional) missing module named System - imported by IPython.utils._process_cli (top-level) missing module named clr - imported by IPython.utils._process_cli (top-level) missing module named pygments.formatters.HtmlFormatter - imported by pygments.formatters (delayed), IPython.lib.display (delayed), nbconvert.filters.highlight (delayed), nbconvert.filters.markdown_mistune (top-level), nbconvert.preprocessors.csshtmlheader (delayed), IPython.core.oinspect (top-level) missing module named pygments.formatters.LatexFormatter - imported by pygments.formatters (delayed), IPython.lib.display (delayed), nbconvert.filters.highlight (delayed), nbconvert.preprocessors.latex (delayed) missing module named pygments.lexers.PythonLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level), IPython.core.oinspect (top-level) missing module named pygments.lexers.TexLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.Python3Lexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.PerlLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.RubyLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.JavascriptLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.HtmlLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named pygments.lexers.BashLexer - imported by pygments.lexers (top-level), IPython.lib.lexers (top-level) missing module named PIL._imagingagg - imported by PIL (delayed, conditional, optional), PIL.ImageDraw (delayed, conditional, optional) missing module named ctags - imported by pygments.formatters.html (optional) missing module named six.moves.range - imported by six.moves (top-level), dateutil.rrule (top-level) missing module named six.moves.winreg - imported by six.moves (top-level), dateutil.tz.win (top-level) runtime module named six.moves - imported by cycler (top-level), dateutil.tz.tz (top-level), dateutil.tz._factories (top-level), dateutil.tz.win (top-level), dateutil.rrule (top-level) missing module named six.moves.zip - imported by six.moves (top-level), cycler (top-level) missing module named StringIO - imported by six (conditional), urllib3.packages.six (conditional), pydub.audio_segment (optional) missing module named dateutil.tz.tzfile - imported by dateutil.tz (top-level), dateutil.zoneinfo (top-level) missing module named trio - imported by ipykernel.trio_runner (top-level), IPython.core.async_helpers (delayed), httpx._utils (delayed, conditional), httpx._transports.asgi (delayed, conditional), httpcore._synchronization (optional), httpcore._backends.trio (top-level), anyio._backends._trio (optional) missing module named repr - imported by IPython.core.debugger (delayed, optional) missing module named _subprocess - imported by jupyter_client.launcher (delayed, conditional, optional), ipykernel.parentpoller (delayed, optional) missing module named numpy.power - imported by numpy (top-level), scipy.stats._kde (top-level) missing module named numpy.hypot - imported by numpy (top-level), scipy.stats._morestats (top-level) missing module named numpy.sinh - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.cosh - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.tanh - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.expm1 - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.log1p - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.ceil - imported by numpy (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.NINF - imported by numpy (top-level), scipy.stats._distn_infrastructure (top-level) missing module named numpy.log - imported by numpy (top-level), scipy.stats._distn_infrastructure (top-level), scipy.stats._discrete_distns (top-level), scipy.stats._morestats (top-level) missing module named numpy.logical_and - imported by numpy (top-level), scipy.stats._distn_infrastructure (top-level) missing module named numpy.double - imported by numpy (top-level), scipy.optimize._nnls (top-level) missing module named numpy.greater - imported by numpy (top-level), scipy.optimize._minpack_py (top-level) missing module named numpy.sign - imported by numpy (top-level), scipy.linalg._matfuncs (top-level) missing module named numpy.conjugate - imported by numpy (top-level), scipy.linalg._matfuncs (top-level) missing module named numpy.logical_not - imported by numpy (top-level), scipy.linalg._matfuncs (top-level) missing module named numpy.single - imported by numpy (top-level), scipy.linalg._decomp_schur (top-level) missing module named numpy.floor - imported by numpy (top-level), scipy.special._basic (top-level), scipy.special._orthogonal (top-level), scipy.stats._distn_infrastructure (top-level), scipy.stats._discrete_distns (top-level) missing module named numpy.arcsin - imported by numpy (top-level), scipy.linalg._decomp_svd (top-level) missing module named numpy.arccos - imported by numpy (top-level), scipy.linalg._decomp_svd (top-level), scipy.special._orthogonal (top-level) missing module named numpy.conj - imported by numpy (top-level), scipy.linalg._decomp (top-level), scipy.io._mmio (top-level) missing module named numpy.inexact - imported by numpy (top-level), scipy.linalg._decomp (top-level), scipy.special._basic (top-level), scipy.optimize._minpack_py (top-level) missing module named numpy.testing.knownfailureif - imported by numpy.testing (optional), IPython.external.decorators (optional) missing module named numpy.testing.KnownFailure - imported by numpy.testing (optional), IPython.external.decorators (optional) missing module named psutil - imported by numpy.testing._private.utils (delayed, optional), scipy._lib._testutils (delayed, optional), transformers.trainer_utils (delayed), transformers.modeling_utils (delayed, optional), transformers.benchmark.benchmark_utils (conditional), torch.testing._internal.common_device_type (optional) missing module named _dummy_thread - imported by cffi.lock (conditional, optional), numpy.core.arrayprint (optional), torch._jit_internal (optional) missing module named numpy.core.result_type - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.float_ - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.number - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.object_ - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) missing module named numpy.core.all - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) missing module named numpy.core.bool_ - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.inf - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.array2string - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.signbit - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.isscalar - imported by numpy.core (delayed), numpy.testing._private.utils (delayed), numpy.lib.polynomial (top-level) missing module named win32pdh - imported by numpy.testing._private.utils (delayed, conditional) missing module named numpy.core.isinf - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) missing module named numpy.core.errstate - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) missing module named numpy.core.isfinite - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) missing module named numpy.core.isnan - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) missing module named numpy.core.array - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.isnat - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) missing module named numpy.core.ndarray - imported by numpy.core (top-level), numpy.testing._private.utils (top-level), numpy.lib.utils (top-level) missing module named numpy.core.array_repr - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) missing module named numpy.core.arange - imported by numpy.core (top-level), numpy.testing._private.utils (top-level), numpy.fft.helper (top-level) missing module named numpy.core.empty - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level), numpy.fft.helper (top-level) missing module named numpy.core.float32 - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) missing module named numpy.core.intp - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level) missing module named numpy.core.linspace - imported by numpy.core (top-level), numpy.lib.index_tricks (top-level) missing module named numpy.core.iinfo - imported by numpy.core (top-level), numpy.lib.twodim_base (top-level) missing module named numpy.core.transpose - imported by numpy.core (top-level), numpy.lib.function_base (top-level) missing module named numpy.random.randn - imported by numpy.random (top-level), scipy (top-level) missing module named numpy.random.rand - imported by numpy.random (top-level), scipy (top-level) missing module named numpy.core.asarray - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.utils (top-level), numpy.fft._pocketfft (top-level), numpy.fft.helper (top-level) missing module named numpy.core.integer - imported by numpy.core (top-level), numpy.fft.helper (top-level) missing module named numpy.core.sqrt - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) missing module named numpy.core.conjugate - imported by numpy.core (top-level), numpy.fft._pocketfft (top-level) missing module named numpy.core.swapaxes - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) missing module named numpy.core.zeros - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) missing module named numpy.core.reciprocal - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.sort - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.argsort - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.sign - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.count_nonzero - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.divide - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.matmul - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.asanyarray - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.atleast_2d - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.product - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.amax - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.amin - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.moveaxis - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.geterrobj - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.finfo - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.sum - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.fastCopyAndTranspose - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.multiply - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.add - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.dot - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.Inf - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.newaxis - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.complexfloating - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.inexact - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.cdouble - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.csingle - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.double - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.single - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.intc - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.empty_like - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) missing module named numpy.core.ufunc - imported by numpy.core (top-level), numpy.lib.utils (top-level) missing module named numpy.core.ones - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.hstack - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.atleast_1d - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) missing module named numpy.core.atleast_3d - imported by numpy.core (top-level), numpy.lib.shape_base (top-level) missing module named numpy.core.vstack - imported by numpy.core (top-level), numpy.lib.shape_base (top-level) missing module named pickle5 - imported by numpy.compat.py3k (optional) missing module named numpy.eye - imported by numpy (delayed), numpy.core.numeric (delayed), scipy.optimize._optimize (top-level), scipy.linalg._decomp (top-level), scipy.optimize._minpack_py (top-level), scipy.interpolate._pade (top-level) missing module named numpy.recarray - imported by numpy (top-level), numpy.ma.mrecords (top-level) missing module named numpy.expand_dims - imported by numpy (top-level), numpy.ma.core (top-level) missing module named numpy.array - imported by numpy (top-level), numpy.ma.core (top-level), numpy.ma.extras (top-level), numpy.ma.mrecords (top-level), dill._objects (optional), scipy.sparse.linalg._isolve.utils (top-level), scipy.linalg._decomp (top-level), scipy.linalg._decomp_schur (top-level), scipy.optimize._lbfgsb_py (top-level), scipy.optimize._tnc (top-level), scipy.optimize._slsqp_py (top-level), scipy.stats._stats_py (top-level), scipy.interpolate._interpolate (top-level), scipy.interpolate._fitpack_impl (top-level), scipy.interpolate._fitpack2 (top-level), scipy.integrate._ode (top-level), scipy.misc._common (top-level), scipy.stats._morestats (top-level), scipy.io._netcdf (top-level) missing module named numpy.iscomplexobj - imported by numpy (top-level), numpy.ma.core (top-level), scipy.linalg._decomp (top-level), scipy.linalg._decomp_ldl (top-level) missing module named numpy.amin - imported by numpy (top-level), numpy.ma.core (top-level), scipy.stats._morestats (top-level) missing module named numpy.amax - imported by numpy (top-level), numpy.ma.core (top-level), scipy.linalg._matfuncs (top-level), scipy.stats._morestats (top-level) missing module named numpy.float64 - imported by numpy (top-level), numpy.array_api._typing (top-level), scipy.optimize._lbfgsb_py (top-level) missing module named numpy.float32 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.uint64 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.uint32 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.uint16 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.uint8 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.int64 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.int32 - imported by numpy (top-level), numpy.array_api._typing (top-level), dill._objects (optional) missing module named numpy.int16 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy.int8 - imported by numpy (top-level), numpy.array_api._typing (top-level) missing module named numpy._typing._ufunc - imported by numpy._typing (conditional) missing module named numpy.bytes_ - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.str_ - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.void - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.object_ - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.datetime64 - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.timedelta64 - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.number - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.complexfloating - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.floating - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.integer - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ctypeslib (top-level) missing module named numpy.unsignedinteger - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.bool_ - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ma.core (top-level), numpy.ma.mrecords (top-level) missing module named numpy.generic - imported by numpy (top-level), numpy._typing._array_like (top-level) missing module named numpy.dtype - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.array_api._typing (top-level), numpy.ma.mrecords (top-level), numpy.ctypeslib (top-level), dill._dill (delayed), scipy.optimize._minpack_py (top-level), scipy.io._netcdf (top-level) missing module named numpy.ndarray - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ma.core (top-level), numpy.ma.extras (top-level), numpy.ma.mrecords (top-level), numpy.ctypeslib (top-level), IPython.core.magics.namespace (delayed, conditional, optional), dill._dill (delayed), scipy.stats._distn_infrastructure (top-level), scipy.stats._mstats_basic (top-level), scipy.stats._mstats_extras (top-level), pandas.compat.numpy.function (top-level), scipy.io._mmio (top-level), pytesseract.pytesseract (conditional), roboflow.core.workspace (top-level) missing module named numpy.ufunc - imported by numpy (top-level), numpy._typing (top-level), dill._dill (delayed), dill._objects (optional) missing module named numpy.histogramdd - imported by numpy (delayed), numpy.lib.twodim_base (delayed) missing module named cloudpickle - imported by ipykernel.pickleutil (delayed), pyarrow.serialization (optional) missing module named _gdbm - imported by dbm.gnu (top-level) missing module named diff - imported by dill._dill (delayed, conditional, optional) missing module named dill.diff - imported by dill (delayed, conditional, optional), dill._dill (delayed, conditional, optional) missing module named version - imported by dill (optional), multiprocess (optional) missing module named ipykernel.connect_qtconsole - imported by ipykernel (top-level), ipykernel.zmqshell (top-level) missing module named ipykernel.get_connection_info - imported by ipykernel (top-level), ipykernel.zmqshell (top-level) missing module named ipykernel.get_connection_file - imported by ipykernel (top-level), ipykernel.zmqshell (top-level) missing module named ntsecuritycon - imported by jupyter_core.paths (delayed) missing module named win32security - imported by jupyter_core.paths (delayed) missing module named netifaces - imported by jupyter_client.localinterfaces (delayed) missing module named paramiko - imported by jupyter_client.ssh.tunnel (optional) missing module named gevent - imported by zmq.green.poll (top-level), zmq.green.core (top-level) missing module named 'gevent.core' - imported by zmq.green.core (delayed, optional) missing module named 'gevent.hub' - imported by zmq.green.core (top-level) missing module named 'gevent.event' - imported by zmq.green.core (top-level) missing module named zmq.EVENTS - imported by zmq (top-level), zmq._future (top-level) missing module named zmq.backend.zmq_errno - imported by zmq.backend (delayed), zmq.error (delayed, conditional) missing module named zmq.backend.strerror - imported by zmq.backend (delayed), zmq.error (delayed) missing module named zmq.backend.zmq_version_info - imported by zmq.backend (top-level), zmq.sugar.version (top-level) missing module named zmq.backend.Frame - imported by zmq.backend (top-level), zmq.sugar.frame (top-level), zmq.sugar.tracker (top-level) missing module named dummy_thread - imported by cffi.lock (conditional, optional) missing module named cStringIO - imported by cPickle (top-level), cffi.ffiplatform (optional) missing module named copy_reg - imported by cPickle (top-level), cStringIO (top-level) missing module named cPickle - imported by pycparser.ply.yacc (delayed, optional), pickleshare (optional) missing module named cffi._pycparser - imported by cffi (optional), cffi.cparser (optional) missing module named zmq.backend.Socket - imported by zmq.backend (top-level), zmq.sugar.socket (top-level) missing module named zmq.backend.zmq_poll - imported by zmq.backend (top-level), zmq.sugar.poll (top-level) missing module named pyczmq - imported by zmq.sugar.context (delayed) missing module named zmq.backend.Context - imported by zmq.backend (top-level), zmq.sugar.context (top-level) missing module named zmq.backend.has - imported by zmq.backend (top-level), zmq.sugar.constants (top-level) missing module named zmq.backend.constants - imported by zmq.backend (top-level), zmq.sugar.constants (top-level) missing module named zmq.zmq_version_info - imported by zmq (delayed, conditional), zmq.error (delayed, conditional) missing module named zmq.zmq_version - imported by zmq (delayed, conditional), zmq.error (delayed, conditional) missing module named zmq.EAGAIN - imported by zmq (delayed), zmq.error (delayed, conditional) missing module named zmq.libzmq - imported by zmq (delayed, optional) missing module named pysqlite2 - imported by IPython.core.history (optional), nbformat.sign (optional), notebook.services.sessions.sessionmanager (optional) missing module named fastjsonschema - imported by nbformat.json_compat (optional) missing module named simplejson - imported by requests.compat (conditional, optional), huggingface_hub.utils._fixes (optional) missing module named dummy_threading - imported by requests.cookies (optional) runtime module named urllib3.packages.six.moves - imported by http.client (top-level), urllib3.util.response (top-level), urllib3.connectionpool (top-level), 'urllib3.packages.six.moves.urllib' (top-level), urllib3.util.queue (top-level) missing module named brotli - imported by urllib3.util.request (optional), urllib3.response (optional), httpx._compat (optional), aiohttp.http_parser (optional) missing module named brotlicffi - imported by urllib3.util.request (optional), urllib3.response (optional), httpx._compat (optional) missing module named Queue - imported by urllib3.util.queue (conditional), requests_toolbelt._compat (conditional) missing module named "'urllib3.packages.six.moves.urllib'.parse" - imported by urllib3.request (top-level), urllib3.poolmanager (top-level) missing module named socks - imported by urllib3.contrib.socks (optional) missing module named 'typing.io' - imported by importlib.resources (top-level) missing module named cryptography - imported by urllib3.contrib.pyopenssl (top-level), requests (conditional, optional) missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed) missing module named 'cryptography.x509' - imported by urllib3.contrib.pyopenssl (delayed, optional) missing module named 'cryptography.hazmat' - imported by urllib3.contrib.pyopenssl (top-level) missing module named 'OpenSSL.SSL' - imported by urllib3.contrib.pyopenssl (top-level) missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level) missing module named urllib3_secure_extra - imported by urllib3 (optional) missing module named functools32 - imported by jsonschema.compat (conditional) missing module named urllib2 - imported by jsonschema.compat (conditional), prometheus_client.exposition (optional), lxml.ElementInclude (optional), lxml.html.html5parser (optional) missing module named urlparse - imported by jsonschema.compat (conditional), lxml.html (optional), prometheus_client.exposition (optional), terminado.websocket (optional), requests_toolbelt._compat (conditional), lxml.ElementInclude (optional), lxml.html.html5parser (optional) missing module named UserDict - imported by attr._compat (conditional), pytz.lazy (optional) missing module named uritemplate - imported by jsonschema._format (optional) missing module named jsonpointer - imported by jsonschema._format (optional) missing module named webcolors - imported by jsonschema._format (optional) missing module named rfc3339_validator - imported by jsonschema._format (optional) missing module named strict_rfc3339 - imported by jsonschema._format (optional) missing module named rfc3986_validator - imported by jsonschema._format (optional) missing module named rfc3987 - imported by jsonschema._format (optional) missing module named SocketServer - imported by prometheus_client.exposition (optional) missing module named BaseHTTPServer - imported by prometheus_client.exposition (optional) missing module named jinja2.contextfilter - imported by jinja2 (top-level), nbconvert.exporters.html (top-level) missing module named json_logging - imported by notebook.notebookapp (delayed, conditional, optional) missing module named winpty - imported by terminado.management (optional) missing module named backports - imported by entrypoints (conditional) missing module named pathlib2 - imported by pickleshare (optional), testpath.asserts (optional) missing module named xmlrpclib - imported by defusedxml.xmlrpc (conditional) missing module named 'pyppeteer.util' - imported by nbconvert.exporters.webpdf (delayed, optional) missing module named pyppeteer - imported by nbconvert.exporters.webpdf (delayed, optional) missing module named 'prompt_toolkit.key_binding.key_bindings.vi' - imported by prompt_toolkit.key_binding.vi_state (conditional) missing module named prompt_toolkit.filters.is_searching - imported by prompt_toolkit.filters (top-level), prompt_toolkit.search (top-level), prompt_toolkit.key_binding.bindings.search (top-level), prompt_toolkit.key_binding.bindings.vi (top-level) missing module named prompt_toolkit.filters.vi_mode - imported by prompt_toolkit.filters (top-level), prompt_toolkit.document (top-level), prompt_toolkit.key_binding.bindings.page_navigation (top-level), prompt_toolkit.widgets.toolbars (top-level), IPython.terminal.shortcuts (top-level) missing module named prompt_toolkit.filters.is_done - imported by prompt_toolkit.filters (top-level), prompt_toolkit.layout.menus (top-level), prompt_toolkit.widgets.base (top-level), prompt_toolkit.shortcuts.progress_bar.base (top-level), prompt_toolkit.shortcuts.prompt (top-level) missing module named prompt_toolkit.filters.has_completions - imported by prompt_toolkit.filters (top-level), prompt_toolkit.layout.menus (top-level), prompt_toolkit.widgets.toolbars (top-level), prompt_toolkit.widgets.dialogs (top-level), IPython.terminal.shortcuts (top-level) missing module named prompt_toolkit.filters.vi_insert_mode - imported by prompt_toolkit.filters (top-level), prompt_toolkit.layout.containers (top-level), prompt_toolkit.key_binding.bindings.basic (top-level), IPython.terminal.shortcuts (top-level), IPython.terminal.debugger (top-level) missing module named prompt_toolkit.filters.emacs_insert_mode - imported by prompt_toolkit.filters (top-level), prompt_toolkit.layout.containers (top-level), prompt_toolkit.key_binding.bindings.basic (top-level), prompt_toolkit.key_binding.bindings.emacs (top-level), IPython.terminal.shortcuts (top-level), IPython.terminal.debugger (top-level) missing module named 'backports.functools_lru_cache' - imported by wcwidth.wcwidth (optional) missing module named black - imported by IPython.terminal.interactiveshell (delayed) missing module named win32clipboard - imported by IPython.lib.clipboard (delayed, optional) missing module named prompt_toolkit.filters.vi_insert_multiple_mode - imported by prompt_toolkit.filters (top-level), prompt_toolkit.layout.processors (top-level) missing module named matplotlib.axes.Axes - imported by matplotlib.axes (delayed), matplotlib.legend (delayed), matplotlib.projections.geo (top-level), matplotlib.projections.polar (top-level), mpl_toolkits.mplot3d.axes3d (top-level), matplotlib.figure (top-level), matplotlib.pyplot (top-level), pandas.plotting._core (conditional), pandas.plotting._misc (conditional), pandas.plotting._matplotlib.tools (conditional), pandas.plotting._matplotlib.misc (conditional), pandas.plotting._matplotlib.timeseries (conditional), pandas.plotting._matplotlib.core (conditional), pandas.plotting._matplotlib.boxplot (conditional), pandas.plotting._matplotlib.hist (conditional) missing module named 'numpy.exceptions' - imported by matplotlib.cbook (optional) missing module named setuptools_scm - imported by matplotlib (delayed, conditional), pyarrow (optional), tqdm.version (optional) missing module named numpydoc - imported by jedi.inference.docstrings (delayed) missing module named 'coverage.html' - imported by IPython.testing.iptestcontroller (delayed, conditional) missing module named coverage - imported by IPython.testing.iptestcontroller (delayed, conditional) missing module named 'nose.util' - imported by IPython.testing.iptest (top-level), IPython.testing.plugin.ipdoctest (top-level) missing module named 'nose.core' - imported by IPython.testing.iptest (top-level) missing module named 'nose.plugins' - imported by IPython.testing.iptest (top-level), IPython.testing.plugin.ipdoctest (top-level), IPython.external.decorators._numpy_testing_noseclasses (top-level) missing module named nose - imported by IPython.testing.iptest (top-level), IPython.external.decorators._decorators (delayed), IPython.testing.decorators (delayed) missing module named 'nose.tools' - imported by IPython.testing.tools (delayed, optional), IPython.testing.decorators (delayed) missing module named curio - imported by IPython.core.async_helpers (delayed), httpx._utils (delayed, conditional) missing module named docrepr - imported by IPython.core.interactiveshell (optional) missing module named 'IPython.html.widgets' - imported by tqdm.notebook (conditional, optional) missing module named pandas.Float64Index - imported by pandas (conditional), pandas.core.dtypes.generic (conditional), pandas.core.internals.blocks (conditional), pandas.core.internals.array_manager (conditional), pandas.core.indexes.datetimes (conditional) missing module named sparse - imported by scipy.sparse.linalg._expm_multiply (delayed, conditional), scipy.sparse.linalg._matfuncs (delayed, conditional), pyarrow.serialization (delayed, optional) missing module named pytest - imported by scipy._lib._testutils (delayed), pandas._testing._io (delayed), pandas._testing (delayed), networkx.testing.test (delayed), torch.testing._internal.common_utils (delayed, conditional) missing module named scipy.linalg._fblas_64 - imported by scipy.linalg (optional), scipy.linalg.blas (optional) missing module named scipy.linalg._cblas - imported by scipy.linalg (optional), scipy.linalg.blas (optional) missing module named scipy.linalg._flapack_64 - imported by scipy.linalg (optional), scipy.linalg.lapack (optional) missing module named scipy.linalg._clapack - imported by scipy.linalg (optional), scipy.linalg.lapack (optional) missing module named scipy.linalg.qr_insert - imported by scipy.linalg (top-level), scipy.sparse.linalg._isolve._gcrotmk (top-level) missing module named scipy.special.sph_jn - imported by scipy.special (delayed, conditional, optional), sympy.functions.special.bessel (delayed, conditional, optional) missing module named scipy.special.gammainc - imported by scipy.special (top-level), scipy.stats._qmc (top-level) missing module named scipy.special.ndtri - imported by scipy.special (top-level), scipy.stats._resampling (top-level), scipy.stats._binomtest (top-level), scipy.stats._relative_risk (top-level) missing module named scipy.special.ndtr - imported by scipy.special (top-level), scipy.stats._resampling (top-level) missing module named scipy.special.betaln - imported by scipy.special (top-level), scipy.stats._discrete_distns (top-level), scipy.stats._multivariate (top-level) missing module named scipy.special.beta - imported by scipy.special (top-level), scipy.stats._tukeylambda_stats (top-level) missing module named scipy.special.ive - imported by scipy.special (top-level), scipy.stats._distn_infrastructure (top-level) missing module named scipy.special.entr - imported by scipy.special (top-level), scipy.stats._distn_infrastructure (top-level), scipy.stats._discrete_distns (top-level), scipy.stats._multivariate (top-level) missing module named scipy.special.chndtr - imported by scipy.special (top-level), scipy.stats._distn_infrastructure (top-level) missing module named scipy.special.xlogy - imported by scipy.special (top-level), scipy.interpolate._rbf (top-level), scipy.stats._distn_infrastructure (top-level), scipy.stats._multivariate (top-level) missing module named scipy.special.rel_entr - imported by scipy.special (top-level), scipy.spatial.distance (top-level) missing module named scipy.special.loggamma - imported by scipy.special (top-level), scipy.fft._fftlog (top-level) missing module named _typeshed - imported by scipy.optimize._direct_py (conditional), anyio._core._fileio (conditional), httpx._transports.wsgi (conditional) missing module named scipy.spatial.Voronoi - imported by scipy.spatial (top-level), scipy.stats._qmc (top-level) missing module named sphinx - imported by scipy._lib._docscrape (delayed, conditional) missing module named uarray - imported by scipy._lib.uarray (conditional, optional) missing module named scipy.stats.iqr - imported by scipy.stats (delayed), scipy.stats._hypotests (delayed) missing module named scipy.interpolate.PPoly - imported by scipy.interpolate (top-level), scipy.interpolate._cubic (top-level), scipy.spatial.transform._rotation_spline (delayed), scipy.integrate._bvp (delayed) missing module named 'scikits.umfpack' - imported by scipy.optimize._linprog_ip (optional) missing module named 'sksparse.cholmod' - imported by scipy.optimize._linprog_ip (optional) missing module named sksparse - imported by scipy.optimize._trustregion_constr.projections (optional), scipy.optimize._linprog_ip (optional) missing module named scipy.special.gammaln - imported by scipy.special (top-level), scipy.special._spfun_stats (top-level), scipy.integrate._quadrature (top-level), scipy.stats._discrete_distns (top-level), scipy.stats._hypotests (top-level), scipy.stats._multivariate (top-level), scipy.optimize._dual_annealing (top-level) missing module named scipy.special.airy - imported by scipy.special (top-level), scipy.special._orthogonal (top-level) missing module named scipy.linalg.bandwidth - imported by scipy.linalg (top-level), scipy.linalg._matfuncs (top-level) missing module named scikits - imported by scipy.sparse.linalg._dsolve.linsolve (optional) missing module named scipy.sparse.linalg.onenormest - imported by scipy.sparse.linalg (top-level), scipy.linalg._matfuncs_inv_ssq (top-level) missing module named 'torch._C._distributed_c10d' - imported by torch.distributed (conditional), torch.distributed.distributed_c10d (top-level), torch.distributed.constants (top-level), torch.distributed.rpc (conditional), torch.distributed._shard.sharded_tensor.reshard (top-level), torch.distributed._shard.sharding_spec.chunk_sharding_spec_ops.embedding_bag (top-level), torch._dynamo.variables.distributed (delayed) missing module named tabulate - imported by torch.ao.ns.fx.n_shadows_utils (delayed, optional), torch._inductor.wrapper_benchmark (delayed), torch.utils.flop_counter (delayed), torch._dynamo.utils (delayed, optional), torch.fx.graph (delayed, optional), torch._dynamo.backends.distributed (delayed, conditional, optional) missing module named torch.nn.Module - imported by torch.nn (top-level), torch.jit._recursive (top-level), torch.jit._script (top-level), torch.jit._trace (top-level), torch.distributed.nn.api.remote_module (top-level), torch.optim.swa_utils (top-level), torch._dynamo.mutation_guard (top-level), torch.fx.passes.utils.common (top-level), torch.ao.quantization.fake_quantize (top-level) missing module named pydot - imported by networkx.drawing.nx_pydot (delayed), torch.fx.passes.graph_drawer (optional) missing module named 'torch._C._distributed_rpc' - imported by torch.distributed.rpc (conditional), torch.distributed.rpc.api (top-level), torch.distributed.rpc.internal (top-level), torch.distributed.rpc.constants (top-level), torch.distributed.rpc.options (top-level), torch._jit_internal (conditional) missing module named 'torch._C._jit_tree_views' - imported by torch._sources (top-level), torch.jit.frontend (top-level) missing module named 'torch._C._distributed_autograd' - imported by torch.distributed.autograd (conditional) missing module named 'torch._C._functorch' - imported by torch._functorch.pyfunctorch (top-level), torch._functorch.vmap (top-level), torch._functorch.utils (top-level), torch._subclasses.meta_utils (top-level), torch._functorch.autograd_function (top-level), torch._functorch.eager_transforms (top-level) missing module named astunparse - imported by torch.jit.frontend (optional), torch._dynamo.guards (conditional, optional) missing module named 'torch._C._dynamo' - imported by torch._dynamo.types (conditional), torch._dynamo.decorators (conditional), torch._dynamo.eval_frame (conditional) missing module named 'torch.fb' - imported by torch._dynamo.exc (conditional) missing module named 'torch._C._lazy_ts_backend' - imported by torch._lazy.ts_backend (top-level) missing module named 'torch._C._lazy' - imported by torch._lazy (top-level), torch._lazy.device_context (top-level), torch._lazy.metrics (top-level) missing module named hypothesis - imported by torch.testing._internal.common_utils (optional) missing module named 'numba.cuda' - imported by torch.testing._internal.common_cuda (conditional) missing module named 'caffe2.python' - imported by torch.utils.tensorboard.writer (delayed, conditional), torch.utils.tensorboard._caffe2_graph (top-level), torch.testing._internal.common_utils (delayed, optional) missing module named 'xmlrunner.result' - imported by torch.testing._internal.common_utils (delayed, conditional) missing module named xmlrunner - imported by torch.testing._internal.common_utils (delayed, conditional) missing module named torch.nn.Sequential - imported by torch.nn (top-level), torch.testing._internal.common_utils (top-level) missing module named torch.nn.ParameterList - imported by torch.nn (top-level), torch.testing._internal.common_utils (top-level) missing module named torch.nn.ParameterDict - imported by torch.nn (top-level), torch.testing._internal.common_utils (top-level) missing module named torch.nn.ModuleList - imported by torch.nn (top-level), torch.testing._internal.common_utils (top-level) missing module named torch.nn.ModuleDict - imported by torch.nn (top-level), torch.testing._internal.common_utils (top-level) missing module named expecttest - imported by torch.testing._internal.common_utils (top-level) missing module named 'monkeytype.tracing' - imported by torch.jit._monkeytype_config (optional) missing module named 'monkeytype.db' - imported by torch.jit._monkeytype_config (optional) missing module named 'monkeytype.config' - imported by torch.jit._monkeytype_config (optional) missing module named monkeytype - imported by torch.jit._monkeytype_config (optional) missing module named foo - imported by torch._functorch.compilers (delayed) missing module named pygraphviz - imported by networkx.drawing.nx_agraph (delayed, optional) missing module named osgeo - imported by networkx.readwrite.nx_shp (delayed, optional) missing module named htmlentitydefs - imported by lxml.html.soupparser (optional) missing module named BeautifulSoup - imported by lxml.html.soupparser (optional) missing module named cchardet - imported by bs4.dammit (optional), aiohttp.client_reqrep (optional) missing module named bs4.builder.HTMLParserTreeBuilder - imported by bs4.builder (top-level), bs4 (top-level) missing module named 'html5lib.treebuilders' - imported by bs4.builder._html5lib (optional), lxml.html._html5builder (top-level), lxml.html.html5parser (top-level) missing module named 'html5lib.constants' - imported by bs4.builder._html5lib (top-level) missing module named html5lib - imported by bs4.builder._html5lib (top-level), lxml.html.html5parser (top-level) missing module named cssselect - imported by lxml.cssselect (optional) missing module named z3 - imported by torch.fx.experimental.validator (optional) missing module named gmpy2 - imported by mpmath.libmp.backend (conditional, optional), sympy.polys.domains.groundtypes (conditional), sympy.ntheory.primetest (delayed, conditional), sympy.testing.runtests (delayed, conditional) missing module named gmpy - imported by mpmath.libmp.backend (conditional, optional), sympy.testing.runtests (delayed, conditional) missing module named pyglet - imported by sympy.plotting.pygletplot.plot (optional), sympy.plotting.pygletplot.plot_axes (top-level), sympy.printing.preview (delayed, conditional, optional), sympy.testing.runtests (delayed, conditional) missing module named 'pyglet.gl' - imported by sympy.plotting.pygletplot.plot_axes (top-level), sympy.plotting.pygletplot.util (top-level), sympy.plotting.pygletplot.plot_window (top-level), sympy.plotting.pygletplot.plot_camera (top-level), sympy.plotting.pygletplot.plot_rotation (top-level), sympy.plotting.pygletplot.plot_curve (top-level), sympy.plotting.pygletplot.plot_mode_base (top-level), sympy.plotting.pygletplot.plot_surface (top-level) missing module named 'pyglet.window' - imported by sympy.plotting.pygletplot.managed_window (top-level), sympy.plotting.pygletplot.plot_controller (top-level), sympy.printing.preview (delayed, optional) missing module named 'pyglet.clock' - imported by sympy.plotting.pygletplot.managed_window (top-level) missing module named 'sage.libs' - imported by mpmath.libmp.backend (conditional, optional), mpmath.libmp.libelefun (conditional, optional), mpmath.libmp.libmpf (conditional, optional), mpmath.libmp.libmpc (conditional, optional), mpmath.libmp.libhyper (delayed, conditional), mpmath.ctx_mp (conditional) missing module named sage - imported by mpmath.libmp.backend (conditional, optional) missing module named 'pyglet.image' - imported by sympy.printing.preview (delayed, optional) missing module named all - imported by sympy.testing.runtests (delayed, optional) missing module named 'IPython.Shell' - imported by sympy.interactive.session (delayed, conditional) missing module named 'IPython.frontend.terminal' - imported by sympy.interactive.printing (delayed, conditional, optional), sympy.interactive.session (delayed, conditional) missing module named 'IPython.iplib' - imported by sympy.interactive.printing (delayed, optional) missing module named py - imported by mpmath.tests.runtests (delayed, conditional) missing module named pysat - imported by sympy.logic.algorithms.minisat22_wrapper (delayed) missing module named pycosat - imported by sympy.logic.algorithms.pycosat_wrapper (delayed) missing module named 'sage.all' - imported by sympy.core.function (delayed) missing module named 'sage.interfaces' - imported by sympy.core.basic (delayed) missing module named 'torchrec.sparse' - imported by torch._dynamo.variables.user_defined (delayed) missing module named torchrec - imported by torch._dynamo.variables.user_defined (delayed, optional) missing module named intel_extension_for_pytorch - imported by transformers.utils.import_utils (delayed), transformers.trainer (delayed) missing module named torch_npu - imported by transformers.utils.import_utils (delayed) missing module named 'torch_xla.core' - imported by transformers.trainer_utils (delayed, conditional), transformers.utils.import_utils (delayed, conditional, optional), transformers.training_args (conditional), transformers.trainer_pt_utils (delayed, conditional), transformers.trainer (conditional), transformers.benchmark.benchmark_args (conditional) missing module named tensorflow - imported by transformers.feature_extraction_utils (delayed, conditional), transformers.trainer_utils (delayed, conditional), transformers.utils.generic (delayed, conditional), datasets.utils.py_utils (delayed, conditional), datasets.features.features (delayed, conditional), datasets.formatting.tf_formatter (delayed, conditional), datasets.utils.tf_utils (delayed, conditional), datasets.arrow_dataset (delayed, conditional, optional), transformers.tokenization_utils_base (delayed, conditional), transformers.image_transforms (conditional), transformers.modelcard (delayed, conditional), transformers.pipelines.base (conditional), transformers.modeling_tf_utils (top-level), transformers.activations_tf (top-level), transformers.tf_utils (top-level), safetensors.tensorflow (top-level), transformers.modeling_tf_pytorch_utils (delayed, optional), transformers.pipelines.conversational (conditional), transformers.models.encoder_decoder.modeling_tf_encoder_decoder (top-level), transformers.modeling_tf_outputs (top-level), transformers.models.roformer.modeling_roformer (delayed, optional), transformers.models.roformer.modeling_tf_roformer (top-level), transformers.models.bert.modeling_bert (delayed, optional), transformers.models.bert.modeling_tf_bert (top-level), transformers.models.bert.tokenization_bert_tf (top-level), transformers.data.data_collator (delayed, conditional), transformers.data.processors.utils (delayed, conditional), transformers.data.processors.glue (conditional), transformers.data.processors.squad (conditional), transformers.generation.tf_logits_process (top-level), transformers.generation.tf_utils (top-level), transformers.onnx.convert (delayed), transformers.models.albert.modeling_albert (delayed, optional), transformers.models.albert.modeling_tf_albert (top-level), transformers.models.bart.modeling_tf_bart (top-level), transformers.models.big_bird.modeling_big_bird (delayed, optional), transformers.models.blenderbot_small.modeling_tf_blenderbot_small (top-level), transformers.models.blenderbot.modeling_tf_blenderbot (top-level), transformers.models.blip.modeling_tf_blip (top-level), transformers.models.blip.modeling_tf_blip_text (top-level), transformers.models.camembert.modeling_tf_camembert (top-level), transformers.models.canine.modeling_canine (delayed, optional), transformers.models.clip.modeling_tf_clip (top-level), transformers.models.codegen.tokenization_codegen (conditional), transformers.models.codegen.tokenization_codegen_fast (conditional), transformers.models.conditional_detr.image_processing_conditional_detr (delayed, conditional), transformers.models.convbert.modeling_convbert (delayed, optional), transformers.models.convbert.modeling_tf_convbert (top-level), transformers.models.convnext.modeling_tf_convnext (top-level), transformers.models.convnextv2.modeling_tf_convnextv2 (top-level), transformers.models.ctrl.modeling_tf_ctrl (top-level), transformers.models.cvt.modeling_tf_cvt (top-level), transformers.models.data2vec.modeling_tf_data2vec_vision (top-level), transformers.models.deberta.modeling_tf_deberta (top-level), transformers.models.deberta_v2.modeling_tf_deberta_v2 (top-level), transformers.models.decision_transformer.modeling_decision_transformer (delayed, optional), transformers.models.deformable_detr.image_processing_deformable_detr (delayed, conditional), transformers.models.deit.modeling_tf_deit (top-level), transformers.models.deta.image_processing_deta (delayed, conditional), transformers.models.detr.image_processing_detr (delayed, conditional), transformers.models.distilbert.modeling_tf_distilbert (top-level), transformers.models.dpr.modeling_tf_dpr (top-level), transformers.models.efficientformer.modeling_tf_efficientformer (top-level), transformers.models.electra.modeling_electra (delayed, optional), transformers.models.electra.modeling_tf_electra (top-level), transformers.models.esm.modeling_tf_esm (top-level), transformers.models.flaubert.modeling_tf_flaubert (top-level), transformers.models.funnel.modeling_funnel (delayed, optional), transformers.models.funnel.modeling_tf_funnel (top-level), transformers.models.gpt2.modeling_gpt2 (delayed, optional), transformers.models.gpt2.modeling_tf_gpt2 (top-level), transformers.models.gpt2.tokenization_gpt2_tf (top-level), transformers.models.gpt_neo.modeling_gpt_neo (delayed, optional), transformers.models.gptj.modeling_tf_gptj (top-level), transformers.models.groupvit.modeling_tf_groupvit (top-level), transformers.models.hubert.modeling_tf_hubert (top-level), transformers.models.imagegpt.modeling_imagegpt (delayed, optional), transformers.models.jukebox.tokenization_jukebox (delayed, conditional), transformers.models.layoutlm.modeling_tf_layoutlm (top-level), transformers.models.layoutlmv3.modeling_tf_layoutlmv3 (top-level), transformers.models.xlm_roberta.modeling_tf_xlm_roberta (top-level), transformers.models.led.modeling_tf_led (top-level), transformers.models.longformer.modeling_tf_longformer (top-level), transformers.models.lxmert.modeling_lxmert (delayed, optional), transformers.models.lxmert.modeling_tf_lxmert (top-level), transformers.models.marian.modeling_tf_marian (top-level), transformers.models.swin.modeling_tf_swin (top-level), transformers.models.mbart.modeling_tf_mbart (top-level), transformers.models.megatron_bert.modeling_megatron_bert (delayed, optional), transformers.models.mobilebert.modeling_mobilebert (delayed, optional), transformers.models.mobilebert.modeling_tf_mobilebert (top-level), transformers.models.mobilenet_v1.modeling_mobilenet_v1 (delayed, optional), transformers.models.mobilenet_v2.modeling_mobilenet_v2 (delayed, optional), transformers.models.mobilevit.modeling_tf_mobilevit (top-level), transformers.models.mpnet.modeling_tf_mpnet (top-level), transformers.models.t5.modeling_t5 (delayed, optional), transformers.models.t5.modeling_tf_t5 (top-level), transformers.models.mt5.modeling_mt5 (delayed, optional), transformers.models.nezha.modeling_nezha (delayed, optional), transformers.models.openai.modeling_tf_openai (top-level), transformers.models.opt.modeling_tf_opt (top-level), transformers.models.owlv2.processing_owlv2 (delayed, conditional), transformers.models.owlvit.processing_owlvit (delayed, conditional), transformers.models.pegasus.modeling_tf_pegasus (top-level), transformers.models.qdqbert.modeling_qdqbert (delayed, optional), transformers.models.rag.modeling_tf_rag (top-level), transformers.models.realm.modeling_realm (delayed, optional), transformers.models.regnet.modeling_tf_regnet (top-level), transformers.models.rembert.modeling_rembert (delayed, optional), transformers.models.rembert.modeling_tf_rembert (top-level), transformers.models.resnet.modeling_tf_resnet (top-level), transformers.models.roberta.modeling_tf_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_tf_roberta_prelayernorm (top-level), transformers.models.roc_bert.modeling_roc_bert (delayed, optional), transformers.models.sam.processing_sam (conditional), transformers.models.sam.modeling_tf_sam (top-level), transformers.models.sam.image_processing_sam (conditional), transformers.models.segformer.modeling_tf_segformer (top-level), transformers.models.speech_to_text.modeling_tf_speech_to_text (top-level), transformers.models.tapas.modeling_tapas (delayed, optional), transformers.models.tapas.modeling_tf_tapas (top-level), transformers.models.transfo_xl.modeling_transfo_xl (delayed, optional), transformers.models.transfo_xl.modeling_tf_transfo_xl (top-level), transformers.models.transfo_xl.modeling_tf_transfo_xl_utilities (top-level), transformers.models.vision_encoder_decoder.modeling_tf_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_tf_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_tf_vit (top-level), transformers.models.vit_mae.modeling_tf_vit_mae (top-level), transformers.models.wav2vec2.tokenization_wav2vec2 (conditional), transformers.models.wav2vec2.modeling_tf_wav2vec2 (top-level), transformers.models.wav2vec2_phoneme.tokenization_wav2vec2_phoneme (conditional), transformers.models.whisper.modeling_tf_whisper (top-level), transformers.models.xglm.modeling_tf_xglm (top-level), transformers.models.xlm.modeling_tf_xlm (top-level), transformers.models.xlnet.modeling_xlnet (delayed, optional), transformers.models.xlnet.modeling_tf_xlnet (top-level), transformers.models.yolos.image_processing_yolos (delayed, conditional), transformers.pipelines.question_answering (conditional), transformers.pipelines.fill_mask (conditional), transformers.pipelines.image_classification (conditional), transformers.pipelines.table_question_answering (conditional), transformers.pipelines.text2text_generation (conditional), transformers.pipelines.text_generation (conditional), transformers.pipelines.token_classification (conditional), transformers.pipelines (conditional), huggingface_hub.keras_mixin (delayed, conditional), transformers.models.deprecated.trajectory_transformer.modeling_trajectory_transformer (delayed, optional), transformers.training_args_tf (conditional), transformers.benchmark.benchmark_args_tf (conditional), transformers.benchmark.benchmark_tf (conditional), transformers.keras_callbacks (top-level), transformers.optimization_tf (top-level), transformers.trainer_tf (top-level) missing module named 'jax.core' - imported by transformers.utils.generic (delayed, conditional) missing module named hf_transfer - imported by huggingface_hub.lfs (delayed, optional), huggingface_hub.file_download (delayed, conditional, optional) missing module named email_validator - imported by pydantic.networks (delayed, conditional, optional), fastapi.openapi.models (optional) missing module named pydantic.BaseModel - imported by pydantic (conditional), pydantic.deprecated.copy_internals (delayed, conditional), pydantic._internal._generate_schema (delayed, conditional), huggingface_hub._webhooks_payload (top-level), gradio.data_classes (top-level), fastapi.exceptions (top-level), fastapi.types (top-level), fastapi._compat (top-level), fastapi.openapi.models (top-level), fastapi.security.http (top-level), fastapi.utils (top-level), fastapi.encoders (top-level), fastapi.routing (top-level) missing module named rich - imported by pydantic._internal._core_utils (delayed) missing module named pydantic.PydanticSchemaGenerationError - imported by pydantic (delayed, conditional), pydantic.functional_validators (delayed, conditional), fastapi._compat (conditional) missing module named tokio - imported by aiohttp.worker (delayed) missing module named uvloop - imported by aiohttp.worker (delayed), uvicorn.loops.auto (delayed, optional), uvicorn.loops.uvloop (top-level), anyio._backends._asyncio (delayed, conditional, optional) missing module named 'gunicorn.workers' - imported by aiohttp.worker (top-level), uvicorn.workers (top-level) missing module named gunicorn - imported by aiohttp.worker (top-level) missing module named aiodns - imported by aiohttp.resolver (optional) missing module named idna_ssl - imported by aiohttp.helpers (conditional) missing module named distributed - imported by fsspec.transaction (delayed) missing module named zstandard - imported by fsspec.compression (optional), datasets.utils.extract (delayed) missing module named lz4 - imported by fsspec.compression (optional) missing module named snappy - imported by fsspec.compression (delayed, optional) missing module named lzmaffi - imported by fsspec.compression (optional) missing module named isal - imported by fsspec.compression (optional) missing module named fastai - imported by huggingface_hub.fastai_utils (delayed) missing module named toml - imported by huggingface_hub.fastai_utils (delayed, optional) missing module named ujson - imported by fastapi.responses (optional) missing module named 'trio.testing' - imported by anyio._backends._trio (delayed) missing module named 'trio.lowlevel' - imported by anyio._backends._trio (optional) missing module named 'trio.hazmat' - imported by anyio._backends._trio (optional) missing module named trio_typing - imported by anyio._backends._trio (conditional) missing module named 'trio.to_thread' - imported by anyio._backends._trio (top-level) missing module named 'trio.socket' - imported by anyio._backends._trio (top-level) missing module named outcome - imported by anyio._backends._trio (top-level) missing module named 'trio.from_thread' - imported by anyio._backends._trio (top-level) missing module named 'curio.meta' - imported by sniffio._impl (delayed, conditional) missing module named dirty_equals - imported by fastapi.utils (delayed) missing module named 'rich.table' - imported by httpx._main (top-level) missing module named 'rich.syntax' - imported by httpx._main (top-level) missing module named 'rich.progress' - imported by httpx._main (top-level) missing module named 'rich.markup' - imported by httpx._main (top-level) missing module named 'rich.console' - imported by httpx._main (top-level) missing module named socksio - imported by httpcore._sync.socks_proxy (top-level), httpcore._async.socks_proxy (top-level), httpx._transports.default (delayed, conditional, optional) missing module named 'h2.settings' - imported by httpcore._sync.http2 (top-level), httpcore._async.http2 (top-level) missing module named 'h2.exceptions' - imported by httpcore._sync.http2 (top-level), httpcore._async.http2 (top-level) missing module named 'h2.events' - imported by httpcore._sync.http2 (top-level), httpcore._async.http2 (top-level) missing module named 'h2.connection' - imported by httpcore._sync.http2 (top-level), httpcore._async.http2 (top-level) missing module named h2 - imported by httpcore._sync.http2 (top-level), httpx._client (delayed, conditional, optional) missing module named 'h2.config' - imported by httpcore._async.http2 (top-level) missing module named '_typeshed.wsgi' - imported by httpx._transports.wsgi (conditional) missing module named spaces - imported by gradio.blocks (optional) missing module named pyaudioop - imported by pydub.utils (optional) missing module named 'referencing.jsonschema' - imported by altair.utils.schemapi (delayed) missing module named referencing - imported by altair.utils.schemapi (delayed) missing module named altair_viewer - imported by altair.utils.html (delayed, conditional, optional), altair.vegalite.v5.api (delayed, optional) missing module named 'sphinx.ext' - imported by pyarrow.vendored.docscrape (delayed, conditional) missing module named vl_convert - imported by altair.utils._importers (delayed, optional) missing module named vegafusion - imported by altair.utils._importers (delayed, optional) missing module named altair_saver - imported by altair.utils.mimebundle (delayed, conditional, optional) missing module named altair.vegalite.SCHEMA_VERSION - imported by altair.vegalite (delayed, conditional), altair.utils.mimebundle (delayed, conditional) missing module named anywidget - imported by altair.jupyter (optional), altair.jupyter.jupyter_chart (top-level) missing module named altair.FacetSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelFacetSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.VConcatSpecGenericSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelVConcatSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.HConcatSpecGenericSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelHConcatSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.ConcatSpecGenericSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelConcatSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.LayerSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelLayerSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.NonNormalizedSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.UnitSpecWithFrame - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.UnitSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.FacetedUnitSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.TopLevelUnitSpec - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.ConcatChart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.VConcatChart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.HConcatChart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.LayerChart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.FacetChart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.Chart - imported by altair (top-level), altair.utils._transformed_data (top-level) missing module named altair.data_transformers - imported by altair (delayed), altair.utils._vegafusion_data (delayed), altair.utils._transformed_data (top-level) missing module named altair.vegalite_compilers - imported by altair (delayed), altair.utils._vegafusion_data (delayed) missing module named 'bokeh.embed' - imported by gradio.components.plot (delayed, conditional) missing module named bokeh - imported by gradio.components.plot (delayed, optional) missing module named skimage - imported by gradio.components.image (delayed, optional) missing module named xlwt - imported by pandas.io.excel._xlwt (delayed, conditional) missing module named xlsxwriter - imported by pandas.io.excel._xlsxwriter (delayed, conditional) missing module named 'openpyxl.cell' - imported by pandas.io.excel._openpyxl (delayed) missing module named 'openpyxl.styles' - imported by pandas.io.excel._openpyxl (delayed) missing module named 'openpyxl.workbook' - imported by pandas.io.excel._openpyxl (delayed, conditional) missing module named openpyxl - imported by pandas.io.excel._openpyxl (delayed, conditional) missing module named 'odf.config' - imported by pandas.io.excel._odswriter (delayed) missing module named 'odf.style' - imported by pandas.io.excel._odswriter (delayed) missing module named 'odf.text' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed) missing module named 'odf.table' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed) missing module named 'odf.opendocument' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed, conditional) missing module named xlrd - imported by pandas.io.excel._xlrd (delayed), pandas.io.excel._base (delayed, conditional) missing module named pyxlsb - imported by pandas.io.excel._pyxlsb (delayed) missing module named 'odf.element' - imported by pandas.io.excel._odfreader (delayed) missing module named 'odf.namespaces' - imported by pandas.io.excel._odfreader (delayed) missing module named odf - imported by pandas.io.excel._odfreader (delayed) missing module named PyQt4 - imported by qtpy (conditional, optional), pandas.io.clipboard (delayed, conditional, optional) missing module named PyQt5 - imported by qtpy (conditional, optional), pandas.io.clipboard (delayed, conditional, optional) missing module named 'PySide.QtCore' - imported by qtpy (conditional, optional), qtpy.QtCore (conditional) missing module named PySide - imported by qtpy (conditional, optional) missing module named 'PyQt4.Qt' - imported by qtpy (conditional, optional), qtpy.QtGui (conditional) missing module named 'PySide2.QtCore' - imported by qtpy (conditional, optional), qtpy.QtCore (conditional) missing module named 'PyQt5.QtCore' - imported by qtpy (conditional, optional), qtpy.QtCore (conditional) missing module named Foundation - imported by pandas.io.clipboard (delayed, conditional, optional) missing module named AppKit - imported by pandas.io.clipboard (delayed, conditional, optional) missing module named 'PyQt4.QtGui' - imported by qtpy.QtGui (conditional, optional), qtpy.QtCore (conditional), qtpy.QtWidgets (conditional), pandas.io.clipboard (delayed, optional) missing module named 'PyQt5.QtWidgets' - imported by qtpy.QtWidgets (conditional), pandas.io.clipboard (delayed, optional) missing module named 'PySide.QtGui' - imported by qtpy.QtGui (conditional), qtpy.QtCore (conditional), qtpy.QtWidgets (conditional) missing module named 'PySide2.QtWidgets' - imported by qtpy.QtWidgets (conditional) missing module named 'PyQt4.QtCore' - imported by qtpy.QtCore (conditional) missing module named 'PySide2.QtGui' - imported by qtpy.QtGui (conditional), qtpy.QtCore (conditional, optional) missing module named 'PyQt5.QtGui' - imported by qtpy.QtGui (conditional) missing module named 'sqlalchemy.engine' - imported by pandas.io.sql (delayed) missing module named 'sqlalchemy.types' - imported by pandas.io.sql (delayed, conditional) missing module named 'sqlalchemy.schema' - imported by pandas.io.sql (delayed) missing module named sqlalchemy - imported by pandas.io.sql (delayed, conditional), datasets.arrow_dataset (conditional), datasets.packaged_modules.sql.sql (delayed, conditional), datasets.io.sql (conditional) missing module named tables - imported by pandas.io.pytables (delayed, conditional) missing module named numexpr - imported by pandas.core.computation.expressions (conditional), pandas.core.computation.engines (delayed) missing module named boto3 - imported by gradio.utils (delayed, optional) missing module named a2wsgi - imported by uvicorn.middleware.wsgi (optional) missing module named 'gunicorn.arbiter' - imported by uvicorn.workers (top-level) missing module named watchgod - imported by uvicorn.supervisors.watchgodreload (top-level) missing module named watchfiles - imported by uvicorn.supervisors.watchfilesreload (top-level) missing module named 'wsproto.utilities' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level) missing module named 'wsproto.extensions' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level) missing module named 'wsproto.connection' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level) missing module named wsproto - imported by uvicorn.protocols.websockets.wsproto_impl (top-level), uvicorn.protocols.websockets.auto (optional) missing module named httptools - imported by uvicorn.protocols.http.httptools_impl (top-level), uvicorn.protocols.http.auto (optional) missing module named authlib - imported by gradio.oauth (delayed, optional) missing module named 'itsdangerous.exc' - imported by starlette.middleware.sessions (top-level) missing module named itsdangerous - imported by starlette.middleware.sessions (top-level) missing module named shap - imported by gradio.interpretation (delayed, conditional, optional) missing module named pyodide - imported by gradio.analytics (optional) missing module named tensorboardX - imported by huggingface_hub._tensorboard_logger (conditional), transformers.integrations.integration_utils (delayed, conditional, optional) missing module named 'InquirerPy.separator' - imported by huggingface_hub.commands.delete_cache (optional) missing module named 'InquirerPy.base' - imported by huggingface_hub.commands.delete_cache (optional) missing module named InquirerPy - imported by huggingface_hub.commands.delete_cache (optional) missing module named 'jax.random' - imported by transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_utils (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level) missing module named 'flax.traverse_util' - imported by transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_utils (top-level), transformers.modeling_flax_pytorch_utils (top-level), transformers.models.roformer.modeling_flax_roformer (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.bloom.modeling_flax_bloom (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.distilbert.modeling_flax_distilbert (top-level), transformers.models.electra.modeling_flax_electra (top-level), transformers.models.gpt2.modeling_flax_gpt2 (top-level), transformers.models.gpt_neo.modeling_flax_gpt_neo (top-level), transformers.models.gptj.modeling_flax_gptj (top-level), transformers.models.xlm_roberta.modeling_flax_xlm_roberta (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.regnet.modeling_flax_regnet (top-level), transformers.models.resnet.modeling_flax_resnet (top-level), transformers.models.roberta.modeling_flax_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_flax_roberta_prelayernorm (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_flax_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_flax_vit (top-level), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level) missing module named 'flax.serialization' - imported by transformers.modeling_flax_utils (top-level), transformers.modeling_flax_pytorch_utils (top-level) missing module named 'flax.core' - imported by transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_utils (top-level), transformers.models.roformer.modeling_flax_roformer (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.bloom.modeling_flax_bloom (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.distilbert.modeling_flax_distilbert (top-level), transformers.models.electra.modeling_flax_electra (top-level), transformers.models.gpt2.modeling_flax_gpt2 (top-level), transformers.models.gpt_neo.modeling_flax_gpt_neo (top-level), transformers.models.gptj.modeling_flax_gptj (top-level), transformers.models.xlm_roberta.modeling_flax_xlm_roberta (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.regnet.modeling_flax_regnet (top-level), transformers.models.resnet.modeling_flax_resnet (top-level), transformers.models.roberta.modeling_flax_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_flax_roberta_prelayernorm (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_flax_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_flax_vit (top-level), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level) missing module named msgpack - imported by transformers.modeling_flax_utils (top-level) missing module named 'jax.numpy' - imported by transformers.utils.generic (delayed, conditional), datasets.features.features (delayed, conditional), datasets.formatting.jax_formatter (delayed), datasets.arrow_dataset (delayed, conditional), transformers.tokenization_utils_base (delayed, conditional), transformers.image_transforms (conditional), transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_outputs (top-level), transformers.modeling_flax_utils (top-level), transformers.modeling_flax_pytorch_utils (top-level), safetensors.flax (top-level), transformers.models.roformer.modeling_flax_roformer (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.generation.flax_logits_process (top-level), transformers.generation.flax_utils (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.bloom.modeling_flax_bloom (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.conditional_detr.image_processing_conditional_detr (delayed, conditional), transformers.models.deformable_detr.image_processing_deformable_detr (delayed, conditional), transformers.models.deta.image_processing_deta (delayed, conditional), transformers.models.detr.image_processing_detr (delayed, conditional), transformers.models.distilbert.modeling_flax_distilbert (top-level), transformers.models.electra.modeling_flax_electra (top-level), transformers.models.gpt2.modeling_flax_gpt2 (top-level), transformers.models.gpt_neo.modeling_flax_gpt_neo (top-level), transformers.models.gptj.modeling_flax_gptj (top-level), transformers.models.jukebox.tokenization_jukebox (delayed, conditional), transformers.models.xlm_roberta.modeling_flax_xlm_roberta (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.mt5.modeling_flax_mt5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.owlv2.processing_owlv2 (delayed, conditional), transformers.models.owlvit.processing_owlvit (delayed, conditional), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.regnet.modeling_flax_regnet (top-level), transformers.models.resnet.modeling_flax_resnet (top-level), transformers.models.roberta.modeling_flax_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_flax_roberta_prelayernorm (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_flax_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_flax_vit (top-level), transformers.models.wav2vec2.tokenization_wav2vec2 (conditional), transformers.models.wav2vec2_phoneme.tokenization_wav2vec2_phoneme (conditional), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level), transformers.models.yolos.image_processing_yolos (delayed, conditional) missing module named jax - imported by transformers.feature_extraction_utils (delayed, conditional), datasets.formatting.jax_formatter (delayed, conditional), transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_utils (top-level), transformers.modeling_flax_pytorch_utils (top-level), safetensors.flax (top-level), transformers.models.roformer.modeling_flax_roformer (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.generation.flax_logits_process (top-level), transformers.generation.flax_utils (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.bloom.modeling_flax_bloom (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.distilbert.modeling_flax_distilbert (top-level), transformers.models.electra.modeling_flax_electra (top-level), transformers.models.gpt2.modeling_flax_gpt2 (top-level), transformers.models.gpt_neo.modeling_flax_gpt_neo (top-level), transformers.models.gptj.modeling_flax_gptj (top-level), transformers.models.xlm_roberta.modeling_flax_xlm_roberta (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.regnet.modeling_flax_regnet (top-level), transformers.models.resnet.modeling_flax_resnet (top-level), transformers.models.roberta.modeling_flax_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_flax_roberta_prelayernorm (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_flax_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_flax_vit (top-level), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level) missing module named 'flax.linen' - imported by transformers.modeling_flax_utils (top-level), transformers.models.roformer.modeling_flax_roformer (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.bart.modeling_flax_bart (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.blenderbot_small.modeling_flax_blenderbot_small (top-level), transformers.models.blenderbot.modeling_flax_blenderbot (top-level), transformers.models.bloom.modeling_flax_bloom (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.distilbert.modeling_flax_distilbert (top-level), transformers.models.electra.modeling_flax_electra (top-level), transformers.models.gpt2.modeling_flax_gpt2 (top-level), transformers.models.gpt_neo.modeling_flax_gpt_neo (top-level), transformers.models.gptj.modeling_flax_gptj (top-level), transformers.models.xlm_roberta.modeling_flax_xlm_roberta (top-level), transformers.models.longt5.modeling_flax_longt5 (top-level), transformers.models.marian.modeling_flax_marian (top-level), transformers.models.mbart.modeling_flax_mbart (top-level), transformers.models.t5.modeling_flax_t5 (top-level), transformers.models.opt.modeling_flax_opt (top-level), transformers.models.pegasus.modeling_flax_pegasus (top-level), transformers.models.regnet.modeling_flax_regnet (top-level), transformers.models.resnet.modeling_flax_resnet (top-level), transformers.models.roberta.modeling_flax_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_flax_roberta_prelayernorm (top-level), transformers.models.speech_encoder_decoder.modeling_flax_speech_encoder_decoder (top-level), transformers.models.vision_encoder_decoder.modeling_flax_vision_encoder_decoder (top-level), transformers.models.vision_text_dual_encoder.modeling_flax_vision_text_dual_encoder (top-level), transformers.models.vit.modeling_flax_vit (top-level), transformers.models.whisper.modeling_flax_whisper (top-level), transformers.models.xglm.modeling_flax_xglm (top-level) missing module named comet_ml - imported by transformers.integrations.integration_utils (conditional, optional), transformers.trainer_tf (conditional) missing module named wandb - imported by transformers.integrations.integration_utils (delayed, conditional), transformers.trainer (delayed, conditional), transformers.trainer_tf (conditional) missing module named 'tensorflow.python' - imported by datasets.utils.py_utils (delayed, conditional), transformers.modeling_tf_utils (top-level), transformers.benchmark.benchmark_utils (conditional), transformers.benchmark.benchmark_tf (conditional), transformers.trainer_tf (top-level) missing module named 'tensorflow.keras' - imported by transformers.models.esm.modeling_tf_esm (top-level), transformers.models.vision_text_dual_encoder.modeling_tf_vision_text_dual_encoder (top-level), transformers.keras_callbacks (top-level), transformers.optimization_tf (optional) missing module named spacy - imported by datasets.utils.py_utils (delayed, conditional, optional) missing module named tiktoken - imported by datasets.utils.py_utils (delayed, conditional, optional) missing module named regex.DEFAULT_VERSION - imported by regex (delayed, optional), regex.regex (delayed, optional) missing module named multiprocess.set_start_method - imported by multiprocess (top-level), multiprocess.spawn (top-level) missing module named multiprocess.get_start_method - imported by multiprocess (top-level), multiprocess.spawn (top-level) missing module named _multiprocess.sem_unlink - imported by _multiprocess (optional), multiprocess.synchronize (optional) missing module named _multiprocess.SemLock - imported by _multiprocess (optional), multiprocess.synchronize (optional) missing module named multiprocess.BufferTooShort - imported by multiprocess (top-level), multiprocess.connection (top-level) missing module named multiprocess.AuthenticationError - imported by multiprocess (top-level), multiprocess.connection (top-level) missing module named multiprocess.TimeoutError - imported by multiprocess (top-level), multiprocess.pool (top-level) missing module named multiprocess.get_context - imported by multiprocess (top-level), multiprocess.pool (top-level), multiprocess.managers (top-level), multiprocess.sharedctypes (top-level), datasets.utils.tf_utils (top-level) missing module named multiprocess.Pool - imported by multiprocess (top-level), datasets.arrow_dataset (top-level), datasets.builder (top-level) missing module named 'lz4.frame' - imported by datasets.utils.extract (delayed) missing module named py7zr - imported by datasets.utils.extract (delayed) missing module named rarfile - imported by datasets.utils.extract (delayed) missing module named 'apache_beam.pipeline' - imported by datasets.utils.beam_utils (top-level) missing module named apache_beam - imported by datasets.utils.beam_utils (top-level), datasets.arrow_writer (delayed), datasets.builder (delayed) missing module named s3fs - imported by datasets.filesystems.s3filesystem (top-level) missing module named 'torchaudio.transforms' - imported by datasets.features.audio (delayed) missing module named torchaudio - imported by datasets.features.audio (delayed, optional), torch.utils.data.datapipes.utils.decoder (delayed, optional), transformers.pipelines.audio_classification (delayed, conditional), transformers.pipelines.automatic_speech_recognition (delayed, conditional) missing module named librosa - imported by datasets.features.audio (delayed, conditional, optional), transformers.models.pop2piano.feature_extraction_pop2piano (conditional) missing module named soundfile - imported by datasets.features.audio (delayed, conditional, optional), transformers.tools.agent_types (conditional) missing module named 'jaxlib.xla_client' - imported by datasets.formatting.jax_formatter (delayed) missing module named jaxlib - imported by datasets.formatting.jax_formatter (conditional) missing module named 'elasticsearch.helpers' - imported by datasets.search (delayed) missing module named faiss - imported by datasets.search (delayed, conditional, optional), transformers.models.rag.retrieval_rag (conditional) missing module named elasticsearch - imported by datasets.search (delayed, conditional, optional) missing module named datasets.Features - imported by datasets (top-level), datasets.io.csv (top-level), datasets.io.abc (top-level), datasets.io.json (top-level), datasets.io.parquet (top-level), datasets.io.text (top-level), datasets.io.generator (top-level), datasets.io.sql (top-level) missing module named datasets.Value - imported by datasets (delayed), datasets.utils.tf_utils (delayed) missing module named datasets.Sequence - imported by datasets (delayed), datasets.utils.tf_utils (delayed) missing module named datasets.ClassLabel - imported by datasets (delayed), datasets.utils.tf_utils (delayed) missing module named keras - imported by transformers.modeling_tf_utils (top-level), transformers.modeling_tf_pytorch_utils (delayed) missing module named h5py - imported by transformers.modeling_tf_utils (top-level) missing module named 'py3nvml.py3nvml' - imported by transformers.benchmark.benchmark (conditional), transformers.benchmark.benchmark_tf (conditional) missing module named py3nvml - imported by transformers.benchmark.benchmark_utils (conditional) missing module named torch.cuda.empty_cache - imported by torch.cuda (conditional), transformers.benchmark.benchmark_utils (conditional) missing module named deepspeed - imported by transformers.integrations.deepspeed (delayed), transformers.modeling_utils (delayed, conditional), transformers.models.distilbert.modeling_distilbert (delayed, conditional), transformers.models.esm.modeling_esmfold (delayed, conditional, optional), transformers.models.fsmt.modeling_fsmt (delayed, conditional), transformers.models.hubert.modeling_hubert (delayed, conditional), transformers.models.seamless_m4t.modeling_seamless_m4t (delayed, conditional), transformers.models.sew.modeling_sew (delayed, conditional), transformers.models.sew_d.modeling_sew_d (delayed, conditional), transformers.models.speecht5.modeling_speecht5 (delayed, conditional), transformers.models.unispeech.modeling_unispeech (delayed, conditional), transformers.models.unispeech_sat.modeling_unispeech_sat (delayed, conditional), transformers.models.wav2vec2.modeling_wav2vec2 (delayed, conditional), transformers.models.wav2vec2_conformer.modeling_wav2vec2_conformer (delayed, conditional), transformers.models.wavlm.modeling_wavlm (delayed, conditional) missing module named 'accelerate.utils' - imported by transformers.integrations.bitsandbytes (conditional), transformers.trainer_utils (delayed, conditional), transformers.integrations.deepspeed (delayed, conditional), transformers.training_args (delayed, conditional), transformers.trainer (delayed, conditional), transformers.integrations.peft (conditional), transformers.modeling_utils (delayed, conditional), transformers.tools.base (conditional) missing module named 'smdistributed.modelparallel' - imported by transformers.trainer_pt_utils (conditional), transformers.trainer (conditional), transformers.modeling_utils (conditional) missing module named 'torch_xla.distributed' - imported by transformers.training_args (conditional), transformers.trainer (delayed, conditional, optional) missing module named ray - imported by transformers.trainer_utils (delayed), transformers.integrations.integration_utils (delayed), transformers.trainer (delayed, conditional) missing module named 'torchdistx.optimizers' - imported by transformers.trainer (delayed, conditional, optional) missing module named 'bitsandbytes.optim' - imported by transformers.trainer (delayed, conditional, optional) missing module named 'apex.optimizers' - imported by transformers.trainer (delayed, conditional, optional) missing module named 'torch_npu.optim' - imported by transformers.trainer (delayed, conditional, optional) missing module named 'torch_xla.amp' - imported by transformers.trainer (delayed, conditional, optional) missing module named bitsandbytes - imported by transformers.integrations.bitsandbytes (conditional), transformers.trainer (delayed, conditional), transformers.modeling_utils (delayed, conditional), transformers.models.rwkv.modeling_rwkv (delayed) missing module named torchdistx - imported by torch.distributed.fsdp._init_utils (optional) missing module named 'torch._C._profiler' - imported by torch.profiler (top-level), torch.autograd.profiler (top-level), torch.testing._internal.logging_tensor (top-level), torch.utils._traceback (delayed), torch.profiler.profiler (top-level), torch.profiler._memory_profiler (top-level), torch.cuda._memory_viz (delayed), torch.autograd (top-level) missing module named optuna - imported by transformers.integrations.integration_utils (delayed, conditional), transformers.trainer (delayed, conditional) missing module named 'accelerate.data_loader' - imported by transformers.trainer (conditional) missing module named accelerate - imported by transformers.integrations.bitsandbytes (conditional), transformers.trainer (conditional), transformers.integrations.peft (conditional), transformers.modeling_utils (conditional), transformers.models.bark.modeling_bark (delayed, conditional) missing module named peft - imported by transformers.trainer (conditional), transformers.integrations.peft (delayed) missing module named 'torch_xla.debug' - imported by transformers.trainer (conditional), transformers.benchmark.benchmark (delayed, conditional, optional) missing module named apex - imported by transformers.trainer (conditional) missing module named torch_xla - imported by transformers.pytorch_utils (delayed, conditional) missing module named 'optimum.bettertransformer' - imported by transformers.modeling_utils (delayed) missing module named 'optimum.version' - imported by transformers.modeling_utils (delayed) missing module named optimum - imported by transformers.modeling_utils (delayed, conditional) missing module named 'accelerate.hooks' - imported by transformers.generation.utils (conditional), transformers.modeling_utils (conditional) missing module named torch.nn.Identity - imported by torch.nn (top-level), transformers.modeling_utils (top-level) missing module named torch.nn.CrossEntropyLoss - imported by torch.nn (top-level), transformers.modeling_utils (top-level), transformers.models.encoder_decoder.modeling_encoder_decoder (top-level), transformers.models.roformer.modeling_roformer (top-level), transformers.models.bert.modeling_bert (top-level), transformers.models.albert.modeling_albert (top-level), transformers.models.audio_spectrogram_transformer.modeling_audio_spectrogram_transformer (top-level), transformers.models.bart.modeling_bart (top-level), transformers.models.beit.modeling_beit (top-level), transformers.models.bert_generation.modeling_bert_generation (top-level), transformers.models.big_bird.modeling_big_bird (top-level), transformers.models.bigbird_pegasus.modeling_bigbird_pegasus (top-level), transformers.models.biogpt.modeling_biogpt (top-level), transformers.models.bit.modeling_bit (top-level), transformers.models.blenderbot.modeling_blenderbot (top-level), transformers.models.blenderbot_small.modeling_blenderbot_small (top-level), transformers.models.blip.modeling_blip_text (top-level), transformers.models.blip_2.modeling_blip_2 (top-level), transformers.models.bloom.modeling_bloom (top-level), transformers.models.bridgetower.modeling_bridgetower (top-level), transformers.models.bros.modeling_bros (top-level), transformers.models.camembert.modeling_camembert (top-level), transformers.models.canine.modeling_canine (top-level), transformers.models.codegen.modeling_codegen (top-level), transformers.models.convbert.modeling_convbert (top-level), transformers.models.convnext.modeling_convnext (top-level), transformers.models.convnextv2.modeling_convnextv2 (top-level), transformers.models.cpmant.modeling_cpmant (top-level), transformers.models.ctrl.modeling_ctrl (top-level), transformers.models.cvt.modeling_cvt (top-level), transformers.models.data2vec.modeling_data2vec_audio (top-level), transformers.models.data2vec.modeling_data2vec_text (top-level), transformers.models.data2vec.modeling_data2vec_vision (top-level), transformers.models.deberta.modeling_deberta (top-level), transformers.models.deberta_v2.modeling_deberta_v2 (top-level), transformers.models.deit.modeling_deit (top-level), transformers.models.dinat.modeling_dinat (top-level), transformers.models.dinov2.modeling_dinov2 (top-level), transformers.models.distilbert.modeling_distilbert (top-level), transformers.models.dpt.modeling_dpt (top-level), transformers.models.efficientformer.modeling_efficientformer (top-level), transformers.models.efficientnet.modeling_efficientnet (top-level), transformers.models.electra.modeling_electra (top-level), transformers.models.ernie.modeling_ernie (top-level), transformers.models.ernie_m.modeling_ernie_m (top-level), transformers.models.esm.modeling_esm (top-level), transformers.models.falcon.modeling_falcon (top-level), transformers.models.flaubert.modeling_flaubert (top-level), transformers.models.fnet.modeling_fnet (top-level), transformers.models.focalnet.modeling_focalnet (top-level), transformers.models.fsmt.modeling_fsmt (top-level), transformers.models.funnel.modeling_funnel (top-level), transformers.models.git.modeling_git (top-level), transformers.models.gpt2.modeling_gpt2 (top-level), transformers.models.gpt_bigcode.modeling_gpt_bigcode (top-level), transformers.models.gpt_neo.modeling_gpt_neo (top-level), transformers.models.gpt_neox.modeling_gpt_neox (top-level), transformers.models.gpt_neox_japanese.modeling_gpt_neox_japanese (top-level), transformers.models.gptj.modeling_gptj (top-level), transformers.models.graphormer.modeling_graphormer (top-level), transformers.models.hubert.modeling_hubert (top-level), transformers.models.ibert.modeling_ibert (top-level), transformers.models.idefics.modeling_idefics (top-level), transformers.models.imagegpt.modeling_imagegpt (top-level), transformers.models.instructblip.modeling_instructblip (top-level), transformers.models.kosmos2.modeling_kosmos2 (top-level), transformers.models.layoutlm.modeling_layoutlm (top-level), transformers.models.layoutlmv2.modeling_layoutlmv2 (top-level), transformers.models.layoutlmv3.modeling_layoutlmv3 (top-level), transformers.models.xlm_roberta.modeling_xlm_roberta (top-level), transformers.models.led.modeling_led (top-level), transformers.models.levit.modeling_levit (top-level), transformers.models.lilt.modeling_lilt (top-level), transformers.models.llama.modeling_llama (top-level), transformers.models.longformer.modeling_longformer (top-level), transformers.models.longt5.modeling_longt5 (top-level), transformers.models.luke.modeling_luke (top-level), transformers.models.lxmert.modeling_lxmert (top-level), transformers.models.m2m_100.modeling_m2m_100 (top-level), transformers.models.marian.modeling_marian (top-level), transformers.models.markuplm.modeling_markuplm (top-level), transformers.models.swin.modeling_swin (top-level), transformers.models.mbart.modeling_mbart (top-level), transformers.models.mega.modeling_mega (top-level), transformers.models.megatron_bert.modeling_megatron_bert (top-level), transformers.models.mistral.modeling_mistral (top-level), transformers.models.mobilebert.modeling_mobilebert (top-level), transformers.models.mobilenet_v1.modeling_mobilenet_v1 (top-level), transformers.models.mobilenet_v2.modeling_mobilenet_v2 (top-level), transformers.models.mobilevit.modeling_mobilevit (top-level), transformers.models.mobilevitv2.modeling_mobilevitv2 (top-level), transformers.models.mpnet.modeling_mpnet (top-level), transformers.models.mpt.modeling_mpt (top-level), transformers.models.mra.modeling_mra (top-level), transformers.models.t5.modeling_t5 (top-level), transformers.models.mt5.modeling_mt5 (top-level), transformers.models.musicgen.modeling_musicgen (top-level), transformers.models.mvp.modeling_mvp (top-level), transformers.models.nat.modeling_nat (top-level), transformers.models.nezha.modeling_nezha (top-level), transformers.models.nllb_moe.modeling_nllb_moe (top-level), transformers.models.nystromformer.modeling_nystromformer (top-level), transformers.models.openai.modeling_openai (top-level), transformers.models.opt.modeling_opt (top-level), transformers.models.pegasus.modeling_pegasus (top-level), transformers.models.pegasus_x.modeling_pegasus_x (top-level), transformers.models.perceiver.modeling_perceiver (top-level), transformers.models.persimmon.modeling_persimmon (top-level), transformers.models.plbart.modeling_plbart (top-level), transformers.models.poolformer.modeling_poolformer (top-level), transformers.models.pop2piano.modeling_pop2piano (top-level), transformers.models.pvt.modeling_pvt (top-level), transformers.models.qdqbert.modeling_qdqbert (top-level), transformers.models.realm.modeling_realm (top-level), transformers.models.reformer.modeling_reformer (top-level), transformers.models.regnet.modeling_regnet (top-level), transformers.models.rembert.modeling_rembert (top-level), transformers.models.resnet.modeling_resnet (top-level), transformers.models.roberta.modeling_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_roberta_prelayernorm (top-level), transformers.models.roc_bert.modeling_roc_bert (top-level), transformers.models.rwkv.modeling_rwkv (top-level), transformers.models.seamless_m4t.modeling_seamless_m4t (top-level), transformers.models.segformer.modeling_segformer (top-level), transformers.models.sew.modeling_sew (top-level), transformers.models.sew_d.modeling_sew_d (top-level), transformers.models.speech_encoder_decoder.modeling_speech_encoder_decoder (top-level), transformers.models.speech_to_text.modeling_speech_to_text (top-level), transformers.models.speech_to_text_2.modeling_speech_to_text_2 (top-level), transformers.models.speecht5.modeling_speecht5 (top-level), transformers.models.splinter.modeling_splinter (top-level), transformers.models.squeezebert.modeling_squeezebert (top-level), transformers.models.swiftformer.modeling_swiftformer (top-level), transformers.models.swinv2.modeling_swinv2 (top-level), transformers.models.switch_transformers.modeling_switch_transformers (top-level), transformers.models.tapas.modeling_tapas (top-level), transformers.models.timesformer.modeling_timesformer (top-level), transformers.models.transfo_xl.modeling_transfo_xl (top-level), transformers.models.trocr.modeling_trocr (top-level), transformers.models.tvlt.modeling_tvlt (top-level), transformers.models.umt5.modeling_umt5 (top-level), transformers.models.unispeech.modeling_unispeech (top-level), transformers.models.unispeech_sat.modeling_unispeech_sat (top-level), transformers.models.upernet.modeling_upernet (top-level), transformers.models.videomae.modeling_videomae (top-level), transformers.models.vilt.modeling_vilt (top-level), transformers.models.vision_encoder_decoder.modeling_vision_encoder_decoder (top-level), transformers.models.visual_bert.modeling_visual_bert (top-level), transformers.models.vit.modeling_vit (top-level), transformers.models.vit_hybrid.modeling_vit_hybrid (top-level), transformers.models.vit_msn.modeling_vit_msn (top-level), transformers.models.vivit.modeling_vivit (top-level), transformers.models.wav2vec2.modeling_wav2vec2 (top-level), transformers.models.wav2vec2_conformer.modeling_wav2vec2_conformer (top-level), transformers.models.wavlm.modeling_wavlm (top-level), transformers.models.whisper.modeling_whisper (top-level), transformers.models.xglm.modeling_xglm (top-level), transformers.models.xlm.modeling_xlm (top-level), transformers.models.xlm_roberta_xl.modeling_xlm_roberta_xl (top-level), transformers.models.xlnet.modeling_xlnet (top-level), transformers.models.xmod.modeling_xmod (top-level), transformers.models.yoso.modeling_yoso (top-level), transformers.models.deprecated.mmbt.modeling_mmbt (top-level), transformers.models.deprecated.open_llama.modeling_open_llama (top-level), transformers.models.deprecated.van.modeling_van (top-level) missing module named rjieba - imported by transformers.models.roformer.tokenization_roformer (delayed, optional), transformers.models.roformer.tokenization_utils (delayed, optional) missing module named sentencepiece - imported by transformers.convert_slow_tokenizer (delayed), transformers.models.albert.tokenization_albert (top-level), transformers.models.barthez.tokenization_barthez (top-level), transformers.models.bartpho.tokenization_bartpho (top-level), transformers.models.bert_generation.tokenization_bert_generation (top-level), transformers.models.bert_japanese.tokenization_bert_japanese (conditional), transformers.models.big_bird.tokenization_big_bird (top-level), transformers.models.camembert.tokenization_camembert (top-level), transformers.models.code_llama.tokenization_code_llama (top-level), transformers.models.cpm.tokenization_cpm (top-level), transformers.models.deberta_v2.tokenization_deberta_v2 (top-level), transformers.models.ernie_m.tokenization_ernie_m (top-level), transformers.models.fnet.tokenization_fnet (top-level), transformers.models.gpt_sw3.tokenization_gpt_sw3 (top-level), transformers.models.layoutxlm.tokenization_layoutxlm (top-level), transformers.models.xlm_roberta.tokenization_xlm_roberta (top-level), transformers.models.llama.tokenization_llama (top-level), transformers.models.m2m_100.tokenization_m2m_100 (top-level), transformers.models.marian.tokenization_marian (top-level), transformers.models.mbart.tokenization_mbart (top-level), transformers.models.mbart50.tokenization_mbart50 (top-level), transformers.models.mluke.tokenization_mluke (top-level), transformers.models.t5.tokenization_t5 (top-level), transformers.models.nllb.tokenization_nllb (top-level), transformers.models.pegasus.tokenization_pegasus (top-level), transformers.models.plbart.tokenization_plbart (top-level), transformers.models.reformer.tokenization_reformer (top-level), transformers.models.rembert.tokenization_rembert (top-level), transformers.models.seamless_m4t.tokenization_seamless_m4t (top-level), transformers.models.speech_to_text.tokenization_speech_to_text (top-level), transformers.models.speecht5.tokenization_speecht5 (top-level), transformers.models.xglm.tokenization_xglm (top-level), transformers.models.xlm_prophetnet.tokenization_xlm_prophetnet (delayed, optional), transformers.models.xlnet.tokenization_xlnet (top-level) missing module named 'google.protobuf' - imported by torch.utils.tensorboard.writer (delayed), transformers.convert_slow_tokenizer (delayed, conditional), transformers.utils.sentencepiece_model_pb2 (top-level), transformers.utils.sentencepiece_model_pb2_new (top-level) missing module named sentencepiece_model_pb2 - imported by tokenizers.implementations.sentencepiece_unigram (delayed, optional) missing module named 'transformers.utils.dummies_sentencepiece_and_tokenizers_objects' - imported by transformers (conditional, optional) missing module named transformers.models.mbart.MBart50Tokenizer - imported by transformers.models.mbart (conditional, optional), transformers (conditional, optional) missing module named jieba - imported by transformers.models.cpm.tokenization_cpm (delayed, optional), transformers.models.cpm.tokenization_cpm_fast (delayed, optional), transformers.models.cpmant.tokenization_cpmant (conditional), transformers.models.xlm.tokenization_xlm (delayed, conditional, optional) missing module named smdistributed - imported by transformers.training_args (conditional) missing module named 'accelerate.state' - imported by transformers.training_args (conditional) missing module named openai - imported by transformers.tools.agents (conditional) missing module named fast_lsh_cumulation - imported by transformers.models.yoso.modeling_yoso (delayed, optional) missing module named dl - imported by setuptools.command.build_ext (conditional, optional) missing module named Cython - imported by setuptools.command.build_ext (optional) missing module named com - imported by torch._appdirs (delayed) missing module named win32com - imported by torch._appdirs (delayed) missing module named torch.nn.MSELoss - imported by torch.nn (top-level), transformers.models.roformer.modeling_roformer (top-level), transformers.models.bert.modeling_bert (top-level), transformers.models.albert.modeling_albert (top-level), transformers.models.audio_spectrogram_transformer.modeling_audio_spectrogram_transformer (top-level), transformers.models.bart.modeling_bart (top-level), transformers.models.beit.modeling_beit (top-level), transformers.models.big_bird.modeling_big_bird (top-level), transformers.models.bigbird_pegasus.modeling_bigbird_pegasus (top-level), transformers.models.biogpt.modeling_biogpt (top-level), transformers.models.bit.modeling_bit (top-level), transformers.models.bloom.modeling_bloom (top-level), transformers.models.camembert.modeling_camembert (top-level), transformers.models.canine.modeling_canine (top-level), transformers.models.convbert.modeling_convbert (top-level), transformers.models.convnext.modeling_convnext (top-level), transformers.models.convnextv2.modeling_convnextv2 (top-level), transformers.models.ctrl.modeling_ctrl (top-level), transformers.models.cvt.modeling_cvt (top-level), transformers.models.data2vec.modeling_data2vec_text (top-level), transformers.models.data2vec.modeling_data2vec_vision (top-level), transformers.models.deberta.modeling_deberta (top-level), transformers.models.deberta_v2.modeling_deberta_v2 (top-level), transformers.models.deit.modeling_deit (top-level), transformers.models.dinat.modeling_dinat (top-level), transformers.models.dinov2.modeling_dinov2 (top-level), transformers.models.distilbert.modeling_distilbert (top-level), transformers.models.efficientformer.modeling_efficientformer (top-level), transformers.models.efficientnet.modeling_efficientnet (top-level), transformers.models.electra.modeling_electra (top-level), transformers.models.ernie.modeling_ernie (top-level), transformers.models.ernie_m.modeling_ernie_m (top-level), transformers.models.esm.modeling_esm (top-level), transformers.models.falcon.modeling_falcon (top-level), transformers.models.flaubert.modeling_flaubert (top-level), transformers.models.fnet.modeling_fnet (top-level), transformers.models.focalnet.modeling_focalnet (top-level), transformers.models.funnel.modeling_funnel (top-level), transformers.models.gpt2.modeling_gpt2 (top-level), transformers.models.gpt_bigcode.modeling_gpt_bigcode (top-level), transformers.models.gpt_neo.modeling_gpt_neo (top-level), transformers.models.gpt_neox.modeling_gpt_neox (top-level), transformers.models.gptj.modeling_gptj (top-level), transformers.models.graphormer.modeling_graphormer (top-level), transformers.models.ibert.modeling_ibert (top-level), transformers.models.imagegpt.modeling_imagegpt (top-level), transformers.models.layoutlm.modeling_layoutlm (top-level), transformers.models.layoutlmv2.modeling_layoutlmv2 (top-level), transformers.models.layoutlmv3.modeling_layoutlmv3 (top-level), transformers.models.xlm_roberta.modeling_xlm_roberta (top-level), transformers.models.led.modeling_led (top-level), transformers.models.levit.modeling_levit (top-level), transformers.models.lilt.modeling_lilt (top-level), transformers.models.llama.modeling_llama (top-level), transformers.models.longformer.modeling_longformer (top-level), transformers.models.luke.modeling_luke (top-level), transformers.models.markuplm.modeling_markuplm (top-level), transformers.models.swin.modeling_swin (top-level), transformers.models.mbart.modeling_mbart (top-level), transformers.models.mega.modeling_mega (top-level), transformers.models.megatron_bert.modeling_megatron_bert (top-level), transformers.models.mistral.modeling_mistral (top-level), transformers.models.mobilebert.modeling_mobilebert (top-level), transformers.models.mobilenet_v1.modeling_mobilenet_v1 (top-level), transformers.models.mobilenet_v2.modeling_mobilenet_v2 (top-level), transformers.models.mobilevit.modeling_mobilevit (top-level), transformers.models.mobilevitv2.modeling_mobilevitv2 (top-level), transformers.models.mpnet.modeling_mpnet (top-level), transformers.models.mpt.modeling_mpt (top-level), transformers.models.mra.modeling_mra (top-level), transformers.models.t5.modeling_t5 (top-level), transformers.models.mt5.modeling_mt5 (top-level), transformers.models.mvp.modeling_mvp (top-level), transformers.models.nat.modeling_nat (top-level), transformers.models.nezha.modeling_nezha (top-level), transformers.models.nystromformer.modeling_nystromformer (top-level), transformers.models.openai.modeling_openai (top-level), transformers.models.opt.modeling_opt (top-level), transformers.models.perceiver.modeling_perceiver (top-level), transformers.models.persimmon.modeling_persimmon (top-level), transformers.models.plbart.modeling_plbart (top-level), transformers.models.poolformer.modeling_poolformer (top-level), transformers.models.pvt.modeling_pvt (top-level), transformers.models.qdqbert.modeling_qdqbert (top-level), transformers.models.reformer.modeling_reformer (top-level), transformers.models.regnet.modeling_regnet (top-level), transformers.models.rembert.modeling_rembert (top-level), transformers.models.resnet.modeling_resnet (top-level), transformers.models.roberta.modeling_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_roberta_prelayernorm (top-level), transformers.models.roc_bert.modeling_roc_bert (top-level), transformers.models.segformer.modeling_segformer (top-level), transformers.models.squeezebert.modeling_squeezebert (top-level), transformers.models.swiftformer.modeling_swiftformer (top-level), transformers.models.swinv2.modeling_swinv2 (top-level), transformers.models.tapas.modeling_tapas (top-level), transformers.models.timesformer.modeling_timesformer (top-level), transformers.models.transfo_xl.modeling_transfo_xl (top-level), transformers.models.tvlt.modeling_tvlt (top-level), transformers.models.umt5.modeling_umt5 (top-level), transformers.models.videomae.modeling_videomae (top-level), transformers.models.vit.modeling_vit (top-level), transformers.models.vit_hybrid.modeling_vit_hybrid (top-level), transformers.models.vit_msn.modeling_vit_msn (top-level), transformers.models.vivit.modeling_vivit (top-level), transformers.models.xlm.modeling_xlm (top-level), transformers.models.xlm_roberta_xl.modeling_xlm_roberta_xl (top-level), transformers.models.xlnet.modeling_xlnet (top-level), transformers.models.xmod.modeling_xmod (top-level), transformers.models.yoso.modeling_yoso (top-level), transformers.models.deprecated.mmbt.modeling_mmbt (top-level), transformers.models.deprecated.open_llama.modeling_open_llama (top-level), transformers.models.deprecated.van.modeling_van (top-level) missing module named torch.nn.BCEWithLogitsLoss - imported by torch.nn (top-level), transformers.models.roformer.modeling_roformer (top-level), transformers.models.bert.modeling_bert (top-level), transformers.models.albert.modeling_albert (top-level), transformers.models.audio_spectrogram_transformer.modeling_audio_spectrogram_transformer (top-level), transformers.models.bart.modeling_bart (top-level), transformers.models.beit.modeling_beit (top-level), transformers.models.big_bird.modeling_big_bird (top-level), transformers.models.bigbird_pegasus.modeling_bigbird_pegasus (top-level), transformers.models.biogpt.modeling_biogpt (top-level), transformers.models.bit.modeling_bit (top-level), transformers.models.bloom.modeling_bloom (top-level), transformers.models.camembert.modeling_camembert (top-level), transformers.models.canine.modeling_canine (top-level), transformers.models.convbert.modeling_convbert (top-level), transformers.models.convnext.modeling_convnext (top-level), transformers.models.convnextv2.modeling_convnextv2 (top-level), transformers.models.ctrl.modeling_ctrl (top-level), transformers.models.cvt.modeling_cvt (top-level), transformers.models.data2vec.modeling_data2vec_text (top-level), transformers.models.data2vec.modeling_data2vec_vision (top-level), transformers.models.deberta.modeling_deberta (top-level), transformers.models.deberta_v2.modeling_deberta_v2 (top-level), transformers.models.deit.modeling_deit (top-level), transformers.models.dinat.modeling_dinat (top-level), transformers.models.dinov2.modeling_dinov2 (top-level), transformers.models.distilbert.modeling_distilbert (top-level), transformers.models.efficientformer.modeling_efficientformer (top-level), transformers.models.efficientnet.modeling_efficientnet (top-level), transformers.models.electra.modeling_electra (top-level), transformers.models.ernie.modeling_ernie (top-level), transformers.models.ernie_m.modeling_ernie_m (top-level), transformers.models.esm.modeling_esm (top-level), transformers.models.falcon.modeling_falcon (top-level), transformers.models.flaubert.modeling_flaubert (top-level), transformers.models.fnet.modeling_fnet (top-level), transformers.models.focalnet.modeling_focalnet (top-level), transformers.models.funnel.modeling_funnel (top-level), transformers.models.gpt2.modeling_gpt2 (top-level), transformers.models.gpt_bigcode.modeling_gpt_bigcode (top-level), transformers.models.gpt_neo.modeling_gpt_neo (top-level), transformers.models.gpt_neox.modeling_gpt_neox (top-level), transformers.models.gptj.modeling_gptj (top-level), transformers.models.graphormer.modeling_graphormer (top-level), transformers.models.ibert.modeling_ibert (top-level), transformers.models.imagegpt.modeling_imagegpt (top-level), transformers.models.layoutlm.modeling_layoutlm (top-level), transformers.models.layoutlmv2.modeling_layoutlmv2 (top-level), transformers.models.layoutlmv3.modeling_layoutlmv3 (top-level), transformers.models.xlm_roberta.modeling_xlm_roberta (top-level), transformers.models.led.modeling_led (top-level), transformers.models.levit.modeling_levit (top-level), transformers.models.lilt.modeling_lilt (top-level), transformers.models.llama.modeling_llama (top-level), transformers.models.longformer.modeling_longformer (top-level), transformers.models.luke.modeling_luke (top-level), transformers.models.markuplm.modeling_markuplm (top-level), transformers.models.swin.modeling_swin (top-level), transformers.models.mbart.modeling_mbart (top-level), transformers.models.mega.modeling_mega (top-level), transformers.models.megatron_bert.modeling_megatron_bert (top-level), transformers.models.mistral.modeling_mistral (top-level), transformers.models.mobilebert.modeling_mobilebert (top-level), transformers.models.mobilenet_v1.modeling_mobilenet_v1 (top-level), transformers.models.mobilenet_v2.modeling_mobilenet_v2 (top-level), transformers.models.mobilevit.modeling_mobilevit (top-level), transformers.models.mobilevitv2.modeling_mobilevitv2 (top-level), transformers.models.mpnet.modeling_mpnet (top-level), transformers.models.mpt.modeling_mpt (top-level), transformers.models.mra.modeling_mra (top-level), transformers.models.t5.modeling_t5 (top-level), transformers.models.mt5.modeling_mt5 (top-level), transformers.models.mvp.modeling_mvp (top-level), transformers.models.nat.modeling_nat (top-level), transformers.models.nezha.modeling_nezha (top-level), transformers.models.nystromformer.modeling_nystromformer (top-level), transformers.models.openai.modeling_openai (top-level), transformers.models.opt.modeling_opt (top-level), transformers.models.perceiver.modeling_perceiver (top-level), transformers.models.persimmon.modeling_persimmon (top-level), transformers.models.plbart.modeling_plbart (top-level), transformers.models.poolformer.modeling_poolformer (top-level), transformers.models.pvt.modeling_pvt (top-level), transformers.models.qdqbert.modeling_qdqbert (top-level), transformers.models.reformer.modeling_reformer (top-level), transformers.models.regnet.modeling_regnet (top-level), transformers.models.rembert.modeling_rembert (top-level), transformers.models.resnet.modeling_resnet (top-level), transformers.models.roberta.modeling_roberta (top-level), transformers.models.roberta_prelayernorm.modeling_roberta_prelayernorm (top-level), transformers.models.roc_bert.modeling_roc_bert (top-level), transformers.models.segformer.modeling_segformer (top-level), transformers.models.speecht5.modeling_speecht5 (top-level), transformers.models.squeezebert.modeling_squeezebert (top-level), transformers.models.swiftformer.modeling_swiftformer (top-level), transformers.models.swinv2.modeling_swinv2 (top-level), transformers.models.tapas.modeling_tapas (top-level), transformers.models.timesformer.modeling_timesformer (top-level), transformers.models.transfo_xl.modeling_transfo_xl (top-level), transformers.models.tvlt.modeling_tvlt (top-level), transformers.models.umt5.modeling_umt5 (top-level), transformers.models.videomae.modeling_videomae (top-level), transformers.models.vit.modeling_vit (top-level), transformers.models.vit_hybrid.modeling_vit_hybrid (top-level), transformers.models.vit_msn.modeling_vit_msn (top-level), transformers.models.xlm.modeling_xlm (top-level), transformers.models.xlm_roberta_xl.modeling_xlm_roberta_xl (top-level), transformers.models.xlnet.modeling_xlnet (top-level), transformers.models.xmod.modeling_xmod (top-level), transformers.models.yoso.modeling_yoso (top-level), transformers.models.deprecated.open_llama.modeling_open_llama (top-level), transformers.models.deprecated.van.modeling_van (top-level) missing module named pycocotools - imported by transformers.models.conditional_detr.image_processing_conditional_detr (delayed, optional), transformers.models.deformable_detr.image_processing_deformable_detr (delayed, optional), transformers.models.deta.image_processing_deta (delayed, optional), transformers.models.detr.image_processing_detr (delayed, optional), transformers.models.yolos.image_processing_yolos (delayed, optional) missing module named tf2onnx - imported by transformers.onnx.convert (delayed) missing module named flax - imported by transformers.models.encoder_decoder.modeling_flax_encoder_decoder (top-level), transformers.modeling_flax_outputs (top-level), transformers.models.bert.modeling_flax_bert (top-level), transformers.generation.flax_utils (top-level), transformers.models.albert.modeling_flax_albert (top-level), transformers.models.beit.modeling_flax_beit (top-level), transformers.models.big_bird.modeling_flax_big_bird (top-level), transformers.models.clip.modeling_flax_clip (top-level), transformers.models.electra.modeling_flax_electra (top-level) missing module named torch.nn.LayerNorm - imported by torch.nn (top-level), transformers.models.bloom.modeling_bloom (top-level), transformers.models.deberta_v2.modeling_deberta_v2 (top-level), transformers.models.esm.modeling_esmfold (top-level), transformers.models.falcon.modeling_falcon (top-level), transformers.models.fsmt.modeling_fsmt (top-level), transformers.models.jukebox.modeling_jukebox (top-level), transformers.models.mpt.modeling_mpt (top-level), transformers.models.prophetnet.modeling_prophetnet (top-level), transformers.models.sew_d.modeling_sew_d (top-level), transformers.models.xlm_prophetnet.modeling_xlm_prophetnet (top-level) missing module named pythainlp - imported by transformers.models.xlm.tokenization_xlm (delayed, conditional, optional) missing module named Mykytea - imported by transformers.models.flaubert.tokenization_flaubert (delayed, conditional, optional), transformers.models.herbert.tokenization_herbert (delayed, conditional, optional), transformers.models.xlm.tokenization_xlm (delayed, conditional, optional) missing module named sacremoses - imported by transformers.models.biogpt.tokenization_biogpt (delayed, optional), transformers.models.flaubert.tokenization_flaubert (delayed, optional), transformers.models.fsmt.tokenization_fsmt (delayed, optional), transformers.models.herbert.tokenization_herbert (delayed, optional), transformers.models.marian.tokenization_marian (delayed, optional), transformers.models.transfo_xl.tokenization_transfo_xl (conditional), transformers.models.xlm.tokenization_xlm (delayed, optional) missing module named 'jax.lax' - imported by transformers.generation.flax_logits_process (top-level) missing module named 'flash_attn.bert_padding' - imported by transformers.models.bart.modeling_bart (conditional), transformers.models.falcon.modeling_falcon (conditional), transformers.models.gpt_bigcode.modeling_gpt_bigcode (conditional), transformers.models.llama.modeling_llama (conditional), transformers.models.mbart.modeling_mbart (conditional), transformers.models.mistral.modeling_mistral (conditional), transformers.models.whisper.modeling_whisper (conditional) missing module named flash_attn - imported by transformers.models.bart.modeling_bart (conditional), transformers.models.falcon.modeling_falcon (conditional), transformers.models.gpt_bigcode.modeling_gpt_bigcode (conditional), transformers.models.llama.modeling_llama (conditional), transformers.models.mbart.modeling_mbart (conditional), transformers.models.mistral.modeling_mistral (conditional), transformers.models.whisper.modeling_whisper (conditional) missing module named 'pyctcdecode.constants' - imported by transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (delayed) missing module named 'pyctcdecode.alphabet' - imported by transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (delayed) missing module named pyctcdecode - imported by transformers.models.wav2vec2_with_lm.processing_wav2vec2_with_lm (delayed, conditional), transformers.pipelines.automatic_speech_recognition (conditional), transformers.pipelines (delayed, conditional, optional) missing module named 'phonemizer.separator' - imported by transformers.models.wav2vec2_phoneme.tokenization_wav2vec2_phoneme (delayed) missing module named 'phonemizer.backend' - imported by transformers.models.wav2vec2_phoneme.tokenization_wav2vec2_phoneme (delayed) missing module named phonemizer - imported by transformers.models.vits.tokenization_vits (conditional) missing module named torch.nn.LogSoftmax - imported by torch.nn (top-level), transformers.models.visual_bert.modeling_visual_bert (top-level) missing module named torch.nn.KLDivLoss - imported by torch.nn (top-level), transformers.models.visual_bert.modeling_visual_bert (top-level) missing module named timm - imported by transformers.models.timm_backbone.modeling_timm_backbone (conditional), transformers.models.conditional_detr.modeling_conditional_detr (conditional), transformers.models.deformable_detr.modeling_deformable_detr (conditional), transformers.models.detr.modeling_detr (conditional), transformers.models.table_transformer.modeling_table_transformer (conditional) missing module named tensorflow_probability - imported by transformers.models.groupvit.modeling_tf_groupvit (conditional, optional), transformers.models.tapas.modeling_tf_tapas (conditional, optional), transformers.pipelines.table_question_answering (conditional) missing module named 'tensorflow.compiler' - imported by transformers.generation.tf_utils (top-level), transformers.models.t5.modeling_tf_t5 (top-level) missing module named 'apex.normalization' - imported by transformers.models.longt5.modeling_longt5 (optional), transformers.models.t5.modeling_t5 (optional), transformers.models.pix2struct.modeling_pix2struct (optional), transformers.models.pop2piano.modeling_pop2piano (optional) missing module named torch.nn.L1Loss - imported by torch.nn (top-level), transformers.models.speecht5.modeling_speecht5 (top-level) missing module named 'torchaudio.compliance' - imported by transformers.models.audio_spectrogram_transformer.feature_extraction_audio_spectrogram_transformer (top-level), transformers.models.speech_to_text.feature_extraction_speech_to_text (top-level) missing module named 'tensorflow.experimental' - imported by transformers.models.sam.image_processing_sam (conditional) missing module named scann - imported by transformers.models.realm.retrieval_realm (delayed) missing module named 'tensorflow.compat' - imported by transformers.models.bert_generation.modeling_bert_generation (delayed, optional), transformers.models.realm.retrieval_realm (delayed) missing module named 'pytorch_quantization.nn' - imported by transformers.models.qdqbert.modeling_qdqbert (conditional, optional) missing module named pytorch_quantization - imported by transformers.models.qdqbert.modeling_qdqbert (conditional, optional) missing module named pretty_midi - imported by transformers.models.pop2piano.tokenization_pop2piano (conditional) missing module named 'essentia.standard' - imported by transformers.models.pop2piano.feature_extraction_pop2piano (conditional) missing module named essentia - imported by transformers.models.pop2piano.feature_extraction_pop2piano (conditional) missing module named 'spacy.lang' - imported by transformers.models.openai.tokenization_openai (delayed, optional) missing module named ftfy - imported by transformers.models.clip.tokenization_clip (delayed, optional), transformers.models.openai.tokenization_openai (delayed, optional) missing module named nltk - imported by transformers.models.nougat.tokenization_nougat_fast (conditional) missing module named Levenshtein - imported by transformers.models.nougat.tokenization_nougat_fast (conditional) missing module named 'natten.functional' - imported by transformers.models.nat.modeling_nat (conditional) missing module named cuda_kernel - imported by transformers.models.mra.modeling_mra (delayed) missing module named torch.nn.SmoothL1Loss - imported by torch.nn (top-level), transformers.models.lxmert.modeling_lxmert (top-level) missing module named 'detectron2.modeling' - imported by transformers.models.layoutlmv2.modeling_layoutlmv2 (conditional) missing module named detectron2 - imported by transformers.models.layoutlmv2.configuration_layoutlmv2 (conditional), transformers.models.layoutlmv2.modeling_layoutlmv2 (conditional) missing module named tensorflow_text - imported by transformers.models.bert.tokenization_bert_tf (top-level), transformers.models.bert_generation.modeling_bert_generation (delayed, optional), transformers.models.gpt2.tokenization_gpt2_tf (top-level) missing module named keras_nlp - imported by transformers.models.gpt2.tokenization_gpt2_tf (top-level) missing module named natten - imported by transformers.models.dinat.modeling_dinat (conditional) missing module named xformers - imported by transformers.models.deprecated.open_llama.modeling_open_llama (optional) missing module named MultiScaleDeformableAttention - imported by transformers.models.deformable_detr.load_custom (delayed) missing module named emoji - imported by transformers.models.bertweet.tokenization_bertweet (delayed, optional) missing module named rhoknp - imported by transformers.models.bert_japanese.tokenization_bert_japanese (delayed, optional) missing module named sudachipy - imported by transformers.models.bert_japanese.tokenization_bert_japanese (delayed, optional) missing module named unidic - imported by transformers.models.bert_japanese.tokenization_bert_japanese (delayed, conditional, optional) missing module named ipadic - imported by transformers.models.bert_japanese.tokenization_bert_japanese (delayed, conditional, optional) missing module named tensorflow_hub - imported by transformers.models.bert_generation.modeling_bert_generation (delayed, optional) missing module named 'peft.tuners' - imported by transformers.integrations.peft (delayed) missing module named 'peft.utils' - imported by transformers.integrations.peft (delayed) missing module named flytekitplugins - imported by transformers.integrations.integration_utils (delayed, conditional) missing module named flytekit - imported by transformers.integrations.integration_utils (delayed, conditional) missing module named clearml - imported by transformers.integrations.integration_utils (delayed, conditional) missing module named codecarbon - imported by transformers.integrations.integration_utils (delayed) missing module named 'neptune.utils' - imported by transformers.integrations.integration_utils (delayed) missing module named 'neptune.exceptions' - imported by transformers.integrations.integration_utils (delayed, optional) missing module named 'neptune.new' - imported by transformers.integrations.integration_utils (delayed, optional) missing module named 'neptune.internal' - imported by transformers.integrations.integration_utils (delayed, optional) missing module named neptune - imported by transformers.integrations.integration_utils (delayed, optional) missing module named dagshub - imported by transformers.integrations.integration_utils (delayed) missing module named mlflow - imported by transformers.integrations.integration_utils (delayed) missing module named azureml - imported by transformers.integrations.integration_utils (delayed) missing module named 'tensorboard.summary' - imported by torch.utils.tensorboard.writer (top-level), torch.utils.tensorboard (top-level) missing module named 'caffe2.proto' - imported by torch.utils.tensorboard.writer (delayed, conditional), torch.utils.tensorboard._caffe2_graph (top-level) missing module named moviepy - imported by torch.utils.tensorboard.summary (delayed, optional) missing module named google - imported by torch.utils.tensorboard.summary (top-level) missing module named caffe2 - imported by torch.utils.tensorboard._convert_np (delayed) missing module named 'tensorboard.plugins' - imported by torch.utils.tensorboard.writer (top-level), torch.utils.tensorboard._embedding (top-level), torch.utils.tensorboard.summary (top-level) missing module named 'tensorboard.compat' - imported by torch.utils.tensorboard.writer (top-level), torch.utils.tensorboard._embedding (top-level), torch.utils.tensorboard._onnx_graph (top-level), torch.utils.tensorboard._pytorch_graph (top-level), torch.utils.tensorboard._proto_graph (top-level), torch.utils.tensorboard.summary (top-level), torch.utils.tensorboard._caffe2_graph (top-level) missing module named tensorboard - imported by torch.utils.tensorboard (top-level) missing module named sigopt - imported by transformers.integrations.integration_utils (delayed, conditional) missing module named 'ray.tune' - imported by transformers.integrations.integration_utils (delayed, conditional) missing module named 'awq.quantize' - imported by transformers.integrations.awq (delayed, conditional) missing module named awq - imported by transformers.integrations.awq (delayed, conditional) missing module named sklearn - imported by transformers.data.metrics (conditional) missing module named kenlm - imported by transformers.pipelines (delayed, conditional, optional) missing module named decord - imported by transformers.pipelines.video_classification (conditional) missing module named transformers.MaskFormerForInstanceSegmentationOutput - imported by transformers (conditional), transformers.models.maskformer.image_processing_maskformer (conditional) missing module named opt_einsum - imported by torch.backends.opt_einsum (optional) missing module named 'einops._torch_specific' - imported by torch._dynamo.decorators (delayed, optional) missing module named einops - imported by torch._dynamo.decorators (delayed, optional) missing module named libfb - imported by torch._dynamo.debug_utils (conditional) missing module named torch.nn.BatchNorm3d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.BatchNorm2d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.BatchNorm1d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.Linear - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.ReLU - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.Conv3d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.Conv2d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named torch.nn.Conv1d - imported by torch.nn (top-level), torch.ao.nn.intrinsic.modules.fused (top-level) missing module named 'torch._inductor.fb' - imported by torch._inductor.codecache (conditional), torch._inductor.compile_fx (conditional) missing module named 'triton.fb' - imported by torch._inductor.codecache (conditional) missing module named 'triton.runtime' - imported by torch._inductor.triton_heuristics (conditional), torch._inductor.codegen.triton_utils (delayed) missing module named 'torchvision.ops' - imported by torch._inductor.utils (delayed, optional), transformers.models.deta.image_processing_deta (conditional), transformers.models.deta.modeling_deta (conditional), transformers.models.sam.image_processing_sam (conditional) missing module named triton - imported by torch._dynamo.logging (conditional, optional), torch._inductor.utils (delayed, optional), torch._inductor.codecache (delayed, optional), torch._inductor.coordinate_descent_tuner (conditional), torch._inductor.triton_heuristics (conditional), torch._inductor.codegen.triton (delayed), torch.sparse._triton_ops (delayed, conditional, optional) missing module named 'triton.testing' - imported by torch._inductor.utils (delayed, optional) missing module named 'onnx.defs' - imported by torch.onnx._internal.fx.type_utils (delayed, conditional) missing module named beartype - imported by torch.onnx._internal._beartype (optional) missing module named 'onnxscript.function_libs' - imported by torch.onnx._internal.exporter (delayed, conditional), torch.onnx._internal.fx.diagnostics (top-level), torch.onnx._internal.fx.onnxfunction_dispatcher (top-level), torch.onnx._internal.fx.fx_onnx_interpreter (top-level) missing module named onnxscript - imported by torch.onnx._internal.fx.registration (conditional), torch.onnx._internal.exporter (delayed, conditional, optional), torch.onnx._internal.fx.diagnostics (top-level), torch.onnx._internal.fx.onnxfunction_dispatcher (conditional), torch.onnx._internal.fx.fx_onnx_interpreter (top-level), torch.onnx._internal.fx.op_validation (top-level) missing module named 'onnxruntime.capi' - imported by torch.onnx._internal.onnxruntime (optional) missing module named onnxruntime - imported by transformers.onnx.convert (delayed, optional), torch.onnx._internal.onnxruntime (optional) missing module named onnx - imported by torch.utils.tensorboard._onnx_graph (delayed), torch.onnx._internal.onnx_proto_utils (delayed, optional), torch.onnx._internal.fx.serialization (delayed, conditional), torch.onnx._internal.exporter (delayed, conditional, optional), torch.onnx._internal.fx.type_utils (top-level), torch.onnx._internal.fx.onnxfunction_dispatcher (delayed), torch.onnx._internal.onnxruntime (optional), transformers.onnx.convert (delayed) missing module named 'torch._C._onnx' - imported by torch.onnx (top-level), torch.onnx.symbolic_helper (top-level), torch.onnx._globals (top-level), torch.onnx.symbolic_opset9 (top-level), torch.onnx.symbolic_opset10 (top-level), torch.onnx.utils (top-level), torch.onnx.symbolic_opset13 (top-level) missing module named torch._inductor.fx_passes.fb - imported by torch._inductor.fx_passes.pre_grad (delayed, conditional) missing module named deeplearning - imported by torch._inductor.fx_passes.group_batch_fusion (optional) missing module named 'libfb.py' - imported by torch._inductor.config (conditional) missing module named 'torch._C._autograd' - imported by torch.profiler (top-level), torch.profiler._memory_profiler (top-level), torch.autograd (top-level) missing module named torchvision - imported by torch.utils.data.datapipes.utils.decoder (delayed, optional) missing module named torcharrow - imported by torch.utils.data.datapipes.iter.callable (delayed, conditional, optional) missing module named torch.multiprocessing._prctl_pr_set_pdeathsig - imported by torch.multiprocessing (top-level), torch.multiprocessing.spawn (top-level) missing module named 'triton.language' - imported by torch.sparse._triton_ops (conditional) missing module named pynvml - imported by torch.cuda (delayed, optional), torch.cuda.memory (delayed, optional) missing module named 'torch._C._VariableFunctions' - imported by torch (conditional) missing module named torch.Size - imported by torch (top-level), torch.nn.modules.normalization (top-level) missing module named torch.trunc - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.tanh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.tan - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.square - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.sqrt - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.sinh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.sin - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.signbit - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.sign - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.round - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.reciprocal - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.rad2deg - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.negative - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.logical_not - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.log2 - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.log1p - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.log10 - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.log - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.isnan - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.isinf - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.isfinite - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.floor - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.expm1 - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.exp2 - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.exp - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.deg2rad - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.cosh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.cos - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.conj_physical - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.ceil - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.bitwise_not - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arctanh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arctan - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arcsinh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arcsin - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arccosh - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.arccos - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.absolute - imported by torch (top-level), torch._numpy._unary_ufuncs_impl (top-level) missing module named torch.true_divide - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.subtract - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.remainder - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.pow - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.not_equal - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.nextafter - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.multiply - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.minimum - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.maximum - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.logical_xor - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.logical_or - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.logical_and - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.logaddexp2 - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.logaddexp - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.less_equal - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.less - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.ldexp - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.lcm - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.hypot - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.heaviside - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.greater_equal - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.greater - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.gcd - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.fmod - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.fmin - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.fmax - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.floor_divide - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.float_power - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.eq - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.divide - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.copysign - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.bitwise_xor - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.bitwise_right_shift - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.bitwise_or - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.bitwise_left_shift - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.bitwise_and - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.arctan2 - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.add - imported by torch (top-level), torch._numpy._binary_ufuncs_impl (top-level) missing module named torch.tensor - imported by torch (top-level), transformers.models.ernie_m.modeling_ernie_m (top-level) missing module named torch.Generator - imported by torch (top-level), torch.utils.data.dataset (top-level) missing module named torch.randperm - imported by torch (top-level), torch.utils.data.dataset (top-level) missing module named torch.default_generator - imported by torch (top-level), torch.utils.data.dataset (top-level) missing module named torch._softmax_backward_data - imported by torch (delayed), transformers.pytorch_utils (delayed) missing module named torch.broadcast_shapes - imported by torch (top-level), torch._numpy._funcs_impl (top-level) missing module named torch.norm_except_dim - imported by torch (top-level), torch.nn.utils.weight_norm (top-level) missing module named torch._weight_norm - imported by torch (top-level), torch.nn.utils.weight_norm (top-level) missing module named torch.device - imported by torch (top-level), torch.nn.modules.module (top-level), torch.cuda (top-level), torch.distributed.nn.api.remote_module (top-level), transformers.models.blip.modeling_blip_text (top-level), torch.cpu (top-level) missing module named 'setuptools_scm.git' - imported by pyarrow (delayed, optional) missing module named botocore - imported by pandas.io.common (delayed, conditional, optional) missing module named sets - imported by pytz.tzinfo (optional) missing module named pandas.ExtensionArray - imported by pandas (conditional), pandas.core.construction (conditional) missing module named pandas.UInt64Index - imported by pandas (conditional), pandas.core.dtypes.generic (conditional) missing module named pandas.Int64Index - imported by pandas (conditional), pandas.core.dtypes.generic (conditional) missing module named pandas.core.groupby.PanelGroupBy - imported by pandas.core.groupby (delayed, optional), tqdm.std (delayed, optional) missing module named numba - imported by pandas.core._numba.executor (delayed, conditional), pandas.core.util.numba_ (delayed, conditional), pandas.core.groupby.numba_ (delayed, conditional), pandas.core.window.numba_ (delayed, conditional), pandas.core.window.online (delayed, conditional), pandas.core._numba.kernels.mean_ (top-level), pandas.core._numba.kernels.shared (top-level), pandas.core._numba.kernels.min_max_ (top-level), pandas.core._numba.kernels.sum_ (top-level), pandas.core._numba.kernels.var_ (top-level) missing module named pandas.core.window._Rolling_and_Expanding - imported by pandas.core.window (delayed, optional), tqdm.std (delayed, optional) missing module named pandas.Panel - imported by pandas (delayed, optional), tqdm.std (delayed, optional) missing module named ultralytics - imported by roboflow.core.version (delayed, conditional, optional) missing module named 'requests.packages.urllib3' - imported by requests_toolbelt._compat (conditional, optional) missing module named win32_setctime - imported by loguru._ctime_functions (delayed, conditional) missing module named aiocontextvars - imported by loguru._contextvars (delayed, conditional) missing module named 'colorama.winterm' - imported by loguru._colorama (delayed, optional) missing module named 'colorama.win32' - imported by loguru._colorama (delayed) missing module named olefile - imported by PIL.FpxImagePlugin (top-level), PIL.MicImagePlugin `(top-level)``

ronaldoussoren commented 9 months ago

I've slightly edited your last comment to move the module overview to a disclosure box. This keeps the discussion easier to read.

If I'd have to guess from the crash log in https://github.com/python/cpython/issues/112427#issuecomment-1828188320 I'd say that the app bundle is incomplete and there's a crash early in the startup of the app bundle (before your code runs). That's different from the original report that crashes much later.

Try to the rebuild the app bundle to make sure it is complete. Then run the app from the command-line (as requested in https://github.com/python/cpython/issues/112427#issuecomment-1828243306) to see if there's an error message there.

Btw. I'm still inclined to close this as an issue in a 3th-party tool (PyInstaller) because the issue is only present when using PyInstaller and I've yet to see a reason to assume that this might be a bug on our end.

ronaldoussoren commented 8 months ago

I'm closing this issue, please check with the PyInstaller project as the crash only happens when using PyInstaller to bundle an application.

Also: you may want to update to a newer version of Python, 3.9 is in security-fix only mode and won't get new release with an installer. Python 3.11 and 3.12 are the releases that still receive bug fix updates.