Skip to content

Commit 4214c32

Browse files
committed
Update README and setup
1 parent 4b6bedd commit 4214c32

2 files changed

Lines changed: 22 additions & 13 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ However, the repository lacks the following miscellaneous.
2727
But, you can still explore the basic architecture of the Gato based on the paper.
2828

2929
### Usage
30+
```bash
31+
$ pip install gato-tf
32+
```
3033
```python
3134
import tensorflow as tf
3235
from gato import Gato, GatoConfig

setup.py

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
from setuptools import find_packages, setup
22

3-
4-
setup(name='gato',
5-
version='0.0.1',
6-
description='Unofficial Gato: A Generalist Agent',
7-
url='https://github.com/OrigamiDream/gato.git',
8-
author='OrigamiDream',
9-
packages=find_packages(),
10-
zip_safe=False,
11-
include_package_data=True,
12-
install_requires=[
13-
'tensorflow>=2.11',
14-
'numpy'
15-
])
3+
setup(
4+
name='gato-tf',
5+
version='0.0.1',
6+
description='Unofficial Gato: A Generalist Agent',
7+
url='https://github.com/OrigamiDream/gato.git',
8+
author='OrigamiDream',
9+
author_email='sdy36071@naver.com',
10+
license='MIT',
11+
packages=find_packages(),
12+
install_requires=[
13+
'tensorflow>=2.11',
14+
],
15+
keywords=[
16+
'deep learning',
17+
'gato',
18+
'tensorflow',
19+
'generalist agent'
20+
]
21+
)

0 commit comments

Comments
 (0)