Skip to content

Commit

Permalink
ci: bump version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpinet committed Nov 10, 2024
1 parent 84fea4f commit 7dc844a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"source": [
"# Model definition\n",
"embedding_dim = 32\n",
"lstm_units = 128\n",
"lstm_units = 32\n",
"\n",
"model = Model()\n",
"model.add(Input(max_length))\n",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

setup(
name='neuralnetlib',
version='3.0.8',
version='3.1.0',
author='Marc Pinet',
description='A simple convolutional neural network library with only numpy as dependency',
description='A flexible deep learning framework built from scratch using only NumPy',
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type='text/markdown',
url='https://github.com/marcpinet/handmade-neuralnetwork',
url='https://github.com/marcpinet/neuralnetlib',
packages=find_packages(),
install_requires=[
'numpy',
Expand Down

0 comments on commit 7dc844a

Please sign in to comment.