File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ However, the repository lacks the following miscellaneous.
2727But, 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
3134import tensorflow as tf
3235from gato import Gato, GatoConfig
Original file line number Diff line number Diff line change 11from 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+ )
You can’t perform that action at this time.
0 commit comments