tf_geometric
Efficient and Friendly Graph Neural Network Library for TensorFlow 1.x and 2.x
File Explorer
Download Latest Version (.zip)- bench_node_cls_early_stop_appnp.py
- bench_node_cls_early_stop_gat.py
- bench_node_cls_early_stop_gcn.py
- bench_node_cls_early_stop_sgc.py
- bench_node_cls_early_stop_ssgc.py
- bench_report_results.py
- run_multi_times.sh
- demo_appnp.py
- demo_asap.py
- demo_chebynet.py
- demo_checkpoint.py
- demo_dgi.py
- demo_diff_pool.py
- demo_distributed_gcn.py
- demo_distributed_mean_pool.py
- demo_drop_edge_gcn.py
- demo_elegant_api.py
- demo_gae.py
- demo_gat.py
- demo_gcn.py
- demo_gin.py
- demo_graph_sage.py
- demo_graph_sage_func.py
- demo_mean_pool.py
- demo_min_cut_pool.py
- demo_model_net_dataset.py
- demo_sag_pool_h.py
- demo_sample_neighbors.py
- demo_save_and_load_model.py
- demo_set2set.py
- demo_sgc.py
- demo_sort_pool.py
- demo_sparse_node_features.py
- demo_ssgc.py
- demo_tagcn.py
- demo_topk_pool.py
- graph_utils.rst
- datasets.rst
- layers.rst
- nn.rst
- root.rst
- installation.rst
- quickstart.rst
- installation.rst
- quickstart.rst
- conf.py
- index.rst
- index_cn.rst
- build.sh
- make.bat
- Makefile
- requirements.txt
- test.sh
- __init__.py
- dataset.py
- graph.py
- __init__.py
- abnormal.py
- amazon_electronics.py
- blog_catalog.py
- coauthor.py
- csr_npz.py
- hgb.py
- model_net.py
- nars_academic.py
- ogb.py
- planetoid.py
- ppi.py
- reddit.py
- synthetic.py
- tu.py
- __init__.py
- appnp.py
- chebynet.py
- gat.py
- gcn.py
- gin.py
- graph_sage.py
- le_conv.py
- sgc.py
- ssgc.py
- tagcn.py
- __init__.py
- map_reduce.py
- __init__.py
- asap.py
- common_pool.py
- diff_pool.py
- min_cut_pool.py
- sag_pool.py
- set2set.py
- sort_pool.py
- __init__.py
- drop_edge.py
- __init__.py
- __init__.py
- appnp.py
- chebynet.py
- gat.py
- gcn.py
- gin.py
- graph_sage.py
- le_conv.py
- sgc.py
- ssgc.py
- tagcn.py
- __init__.py
- map_reduce.py
- segment.py
- __init__.py
- asap.py
- cluster_pool.py
- common_pool.py
- diff_pool.py
- min_cut_pool.py
- sag_pool.py
- set2set.py
- sort_pool.py
- topk_pool.py
- __init__.py
- drop_edge.py
- __init__.py
- __init__.py
- data_utils.py
- graph_utils.py
- tf_sparse_utils.py
- tf_utils.py
- union_utils.py
- __init__.py
- .gitignore
- deploy.sh
- LICENSE
- README.md
- README.rst
- readthedocs.yaml
- setup.py
- TF_GEOMETRIC_LOGO.png
- tutorial_intro.py
# Installation Guide
git clone https://github.com/CrawlScript/tf_geometric
Downloads the entire project code from GitHub to your computer.
cd tf_geometric
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install -U tf_geometric # this will not install the tensorflow/tensorflow-gpu package
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf1-cpu] # this will install TensorFlow 1.x CPU version
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf1-gpu] # this will install TensorFlow 1.x GPU version
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf2-cpu] # this will install TensorFlow 2.x CPU version
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install -U tf_geometric # this will not install the tensorflow/tensorflow-gpu package
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf1-cpu] # this will install TensorFlow 1.x CPU version
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf1-gpu] # this will install TensorFlow 1.x GPU version
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf2-cpu] # this will install TensorFlow 2.x CPU version
Installs the package published on PyPI directly β no need to clone the source.
pip install -U tf_geometric[tf2-gpu] # this will install TensorFlow 2.x GPU version
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd doc
This project's files live in a subfolder, so move into it first.
make
Compiles the code based on the generated build configuration to produce an executable.
