├── .gitignore ├── .gitmodules ├── Pytorch-CoreML-Sound-Classification.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── Pytorch-CoreML-Sound-Classification.xcscheme └── xcuserdata │ └── gerald.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Pytorch-CoreML-Sound-Classification ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ConvertSpectrogram.swift ├── DrawSpecView.swift ├── Info.plist ├── PANN.mlmodel ├── PANN_labels.json ├── SceneDelegate.swift └── ViewController.swift ├── Pytorch-CoreML-Sound-ClassificationTests ├── Info.plist ├── PANN_out.ring_hello.json ├── Pytorch_CoreML_Sound_ClassificationTests.swift └── ring_hello.wav ├── README.md └── python ├── export.log ├── export.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/.gitmodules -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/xcshareddata/xcschemes/Pytorch-CoreML-Sound-Classification.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/xcshareddata/xcschemes/Pytorch-CoreML-Sound-Classification.xcscheme -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/xcuserdata/gerald.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/xcuserdata/gerald.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification.xcodeproj/xcuserdata/gerald.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification.xcodeproj/xcuserdata/gerald.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/AppDelegate.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/ConvertSpectrogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/ConvertSpectrogram.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/DrawSpecView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/DrawSpecView.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/Info.plist -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/PANN.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/PANN.mlmodel -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/PANN_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/PANN_labels.json -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/SceneDelegate.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-Classification/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-Classification/ViewController.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-ClassificationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-ClassificationTests/Info.plist -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-ClassificationTests/PANN_out.ring_hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-ClassificationTests/PANN_out.ring_hello.json -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-ClassificationTests/Pytorch_CoreML_Sound_ClassificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-ClassificationTests/Pytorch_CoreML_Sound_ClassificationTests.swift -------------------------------------------------------------------------------- /Pytorch-CoreML-Sound-ClassificationTests/ring_hello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/Pytorch-CoreML-Sound-ClassificationTests/ring_hello.wav -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/README.md -------------------------------------------------------------------------------- /python/export.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/python/export.log -------------------------------------------------------------------------------- /python/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/python/export.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-illustrated/Pytorch-CoreML-Sound-Classification/HEAD/python/requirements.txt --------------------------------------------------------------------------------