Skip to content

Instantly share code, notes, and snippets.

View AmitNikhade's full-sized avatar
🤖
About to rule 👑

Amit Nikhade AmitNikhade

🤖
About to rule 👑
View GitHub Profile
@AmitNikhade
AmitNikhade / converting-dialogpt-gpt-2-to-tensorflow-lite.ipynb
Created November 17, 2022 05:23
Converting DialoGPT & GPT-2 to TensorFlow Lite (pre-converted models in comments!)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AmitNikhade
AmitNikhade / kivy_cv.py
Created June 10, 2021 18:38 — forked from ExpandOcean/kivy_cv.py
kivy and opencv work together demo
# coding:utf-8
from kivy.app import App
from kivy.uix.image import Image
from kivy.clock import Clock
from kivy.graphics.texture import Texture
import cv2
class KivyCamera(Image):
def __init__(self, capture, fps, **kwargs):