tebakaja's picture
Feat: Crafting LSTM, GRU, and LSTM_GRU model
0a7b47e
raw
history blame
171 Bytes
from setuptools import setup
from Cython.Build import cythonize
import numpy
setup(
ext_modules=cythonize("utilities.pyx"),
include_dirs=[numpy.get_include()]
)