분류 전체보기

반응형

    TFLite 뽀개기 (2) - TFLite Inference

    1. TFLite Inference 내용은 python, Tensorflow-gpu 2.x, keras model 에 한정되어 있음을 알려드립니다. 이전 글로부터 만들어진 TFLite model로 이제 Inference을 해볼려고 합니다. 그 전에, Inference를 어디서 할 수 있는 지 알아야겠죠? Android Java 또는 C++ API를 사용하여 Inference iOS Swift 또는 Objective-C를 사용하여 Inference Linux C++ 또는 Python으로 제공되는 TFLite API를 사용하여 Inference 이번 글에서는 Linux부터 해볼게요.. 다시 돌아와서 Inference, 즉 prediction를 위해서는 TFLite API인 Interpreter을 주축으로 다..

    Data-Free Knowledge Amalgamation via Group-Stack Dual-GAN

    1. Goal The goal is to perform Data-free Knowledge distillation. Knowledge distillation: Dealing with the problem of training a smaller model (Student) from a high capacity source model (Teacher) so as to retain most of its performance. As the word itself, We perform knowledge distillation when there is no original dataset on which the Teacher network has been trained. It is because, in real wor..

    Dreaming to Distill Data-free Knowledge Transfer via DeepInversion

    1. Goal The goal is to perform Data-free Knowledge distillation. Knowledge distillation: Dealing with the problem of training a smaller model (Student) from a high capacity source model (Teacher) so as to retain most of its performance. As the word itself, We perform knowledge distillation when there is no original dataset on which the Teacher network has been trained. It is because, in the real..

    TFLite 뽀개기 (1) - TFLite 기본 이해 및 사용하기

    1. TFLite 란? 해당 글은 python, Tensorflow-gpu 2.x, keras model 에 한정되어 있음을 알려드립니다. Tensorflow Lite (TFLite)는 mobile, embedding, IoT device에서 모델을 사용할 수 있도록 Tensorflow(keras) 모델을 변환해주는 tool입니다. 1.1 Tensorflow Lite convert 본격적으로 Keras model을 TFLite model을 변경하는 tool인 Tensorflow Lite convert 소개할게요. converter=tf.lite.TFLiteConverter.from_keras_model('your keras model') 위의 함수가 TFLite로 만드는 준비 compile과정이라고 생각..

    Interpretable And Fine-grained Visual Explanations For Convolutional Neural Networks

    1. Goal In Interpretable And Fine-grained Visual Explanations For Convolutional Neural Networks, authors propose an optimization-based visual explanation method, which highlights the evidence in the input images for a specific prediction. 1.1 Sub-goal [A]: Defending against adversarial evidence (i.e. faulty evidence due to artifacts). [B]: Providing explanations which are both fine-grained and p..

    Mediapipe (1) - Mediapipe 이해 및 Object detection 예제

    1. Mediapipe 란?? Mediapipe는 임의의 sensory data (e.g. images, video streams)에 대해 추론(inference)를 수행할 수 있도록하는 pipeline 구축을 위한 framework입니다. Mediapipe을 통해 Deep Learning(DL) model의 추론 pipeline을 module단위의 여러 요소들로 구성된 graph로 built하게 됩니다. 그래서 mediapipe는 mobile device나 IoT에 최적화된 deployment flow를 제공하게 되므로 on-device에 DL modeld을 deploy하고 싶으면 쓰면 좋을것 같네요. 1.1 Mediapipe 왜 써야하는가?? End-to-End acceleration ML model..

반응형