Skip to content

Commit

Permalink
Add scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbal committed Sep 4, 2021
1 parent 2f6632e commit 9c5bb97
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# VSCode settings
.vscode
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Approximate free-energy minimization
# Approximate Free-Energy Minimization

Experimental implementation of approximate free-energy minimization in PyTorch.

**Summary:**

**Blog post:**

## References
Empty file added afem/__init__.py
Empty file.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import find_packages, setup

setup(
name='afem',
packages=find_packages(exclude=['images']),
version='0.0.0',
license='MIT',
description='Approximate Free-Energy Minimization',
author='Matthias Bal',
author_email='[email protected]',
url='https://github.com/mcbal/afem',
keywords=['artificial intelligence', 'attention mechanism'],
install_requires=['einops>=0.3', 'numpy>=1.19', 'torch>=1.8'],
)
Empty file added tests/__init__.py
Empty file.

0 comments on commit 9c5bb97

Please sign in to comment.