Skip to content

kaist-include/Takion

 
 

Repository files navigation

Takion

License Build Status

Takion is C++17 template based implementation of deep learning. It is suitable for deep learning on limited computational resource, embedded systems and IoT devices. The code can be compiled with commonly available compilers such as g++, clang++, or Microsoft Visual Studio. Takion currently supports macOS (10.12.6 or later), Ubuntu (18.04 or later), Windows (Visual Studio 2017 or later), and Windows Subsystem for Linux (WSL). Other untested platforms that support C++17 also should be able to build Takion.

Key Features

  • Reasonably fast, without GPU
  • Portable & header-only
  • Easy to integrate with real applications
  • Simply implemented

Contact

You can contact me via e-mail ([email protected]). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.

How to run unit tests

After browsing into cloned repository directory,

Change the value of trainFilePath and validationFilePath to the file path that you saved your

mnist_train.csv and mnist_test.csv file

from

Tests/UnitTests/GraphTest/SimpleGraphTest.cpp

line 308~310 (for linux and mac)

lime 301~306 (for windows)

Sample dataset can be downloaded from (https://www.kaggle.com/oddrationale/mnist-in-csv)

Linux

git submodule init
git submodule update
cmake .
make -j$(nproc)
./bin/UnitTests

License

The class is licensed under the MIT License:

Copyright &copy: Jaewoo Kim

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.

About

Deep learning framework using C++17 in a single header file

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.0%
  • CMake 1.8%
  • Dockerfile 0.2%