gitextract_qun949lr/ ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── MNIST/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Canvas.swift │ │ ├── CanvasView.swift │ │ ├── Classifier.swift │ │ ├── Info.plist │ │ ├── Line.swift │ │ ├── Models/ │ │ │ ├── W_conv1 │ │ │ ├── W_conv2 │ │ │ ├── W_fc1 │ │ │ ├── W_fc2 │ │ │ ├── b_conv1 │ │ │ ├── b_conv2 │ │ │ ├── b_fc1 │ │ │ └── b_fc2 │ │ ├── String.swift │ │ └── ViewController.swift │ └── TensorSwift/ │ ├── Dimension.swift │ ├── Info.plist │ ├── Operators.swift │ ├── Shape.swift │ ├── Tensor.swift │ ├── TensorMath.swift │ ├── TensorNN.swift │ ├── TensorSwift.h │ └── Utils.swift ├── TensorSwift.podspec ├── TensorSwift.xcodeproj/ │ ├── Configs/ │ │ └── Project.xcconfig │ ├── TensorSwiftTests_Info.plist │ ├── TensorSwift_Info.plist │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata └── Tests/ ├── LinuxMain.swift ├── MNISTTests/ │ ├── Array.swift │ ├── ClassifierTests.swift │ ├── Downloader.swift │ ├── DownloaderTests.swift │ ├── Info.plist │ ├── MNISTTests-Bridging-Header.h │ └── SHA1.swift └── TensorSwiftTests/ ├── CalculationPerformanceTests.swift ├── DimensionTests.swift ├── Info.plist ├── PowerTests.swift ├── TensorMathTest.swift ├── TensorNNTests.swift ├── TensorSwiftSample.swift ├── TensorSwiftTests.swift └── TensorTests.swift