https://github.com/kanocomputing/ios-grt
iOS Framework Wrapper for GRT
https://github.com/kanocomputing/ios-grt
Last synced: 3 months ago
JSON representation
iOS Framework Wrapper for GRT
- Host: GitHub
- URL: https://github.com/kanocomputing/ios-grt
- Owner: KanoComputing
- Created: 2018-03-09T18:04:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-18T15:31:32.000Z (over 7 years ago)
- Last Synced: 2025-03-03T01:41:56.322Z (about 1 year ago)
- Language: Objective-C++
- Size: 98.6 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ios-grt
🚨 An unmaintained proof of concept.🚨
An incomplete Objective-C wrapper for the [GRT library](https://github.com/nickgillian/grt).
The project builds into a CocoaTouch Framework for iOS.
At the moment, it exposes the following classes:
* DTW
* HMM
* TimeSeriesClassificationData
* MatrixFloat
* VectorFloat
* KMeansQuantizer
## Build
Don't forget to fetch submodules before building:
git submodule init
git submodule update
To build with debugging symbols:
xcodebuild -target ios-grt -configuration Debug -sdk iphoneos clean build
Building for production:
xcodebuild -target ios-grt -configuration Release -sdk iphoneos clean build
Building for the iOS simulator:
xcodebuild -target ios-grt -configuration Debug -sdk iphonesimulator clean build
The built `ios-grt.framework` will be at:
build/${configuration}-${sdk}/ios_grt.framework
## Licence
The ios-grt Framework is available under an MIT license.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE