├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .style.yapf ├── LICENSE ├── README.md ├── data ├── create_jsons.py └── output │ └── .gitkeep ├── docs ├── common │ ├── commits.md │ ├── development.md │ └── pypi.md ├── data │ └── readme.md └── sotaai │ ├── cv │ ├── README.md │ ├── abstractions.md │ ├── fastai.md │ ├── keras.md │ ├── mxnet.md │ ├── pretrainedmodels.md │ ├── tensorflow.md │ └── torchvision.md │ ├── nlp │ ├── abstractions.md │ ├── fairseq.md │ ├── huggingface.md │ └── torchtext.md │ └── rl │ └── garage.md ├── examples └── example1.py ├── requirements.txt ├── setup.py ├── sotaai ├── __init__.py ├── cv │ ├── __init__.py │ ├── abstractions.py │ ├── fastai_wrapper.py │ ├── keras_wrapper.py │ ├── metadata.py │ ├── mmf_wrapper.py │ ├── mxnet_wrapper.py │ ├── pretrainedmodels_wrapper.py │ ├── tensorflow_wrapper.py │ ├── torchvision_wrapper.py │ └── utils.py ├── neuro │ ├── __init__.py │ ├── abstractions.py │ ├── alchemy_wrapper.py │ ├── ampligraph_wrapper.py │ ├── cdt_wrapper.py │ ├── cogdl_wrapper.py │ ├── dgl_wrapper.py │ ├── dglke_wrapper.py │ ├── dgllifesci_wrapper.py │ ├── karateclub_wrapper.py │ ├── metadata.py │ ├── nearai_wrapper.py │ ├── pytorchgeo_wrapper.py │ ├── spektral_wrapper.py │ └── utils.py ├── nlp │ ├── __init__.py │ ├── abstractions.py │ ├── allennlp_wrapper.py │ ├── decanlp_wrapper.py │ ├── fairseq_wrapper.py │ ├── flair_wrapper.py │ ├── hanlp_wrapper.py │ ├── huggfacemanual_wrapper.py │ ├── huggingface_datasets.py │ ├── huggingface_models.py │ ├── huggingface_wrapper.py │ ├── nlparchitect_wrapper.py │ ├── parlai_wrapper.py │ ├── stanza_wrapper.py │ ├── tensorflow_wrapper.py │ ├── torchtext_wrapper.py │ └── utils.py └── rl │ ├── __init__.py │ ├── abstractions.py │ ├── garage_wrapper.py │ ├── gym_wrapper.py │ ├── rllib_wrapper.py │ ├── stablebaselines3_wrapper.py │ └── utils.py └── tests ├── __init__.py ├── cv ├── __init__.py ├── test_fastai_wrapper.py ├── test_keras_wrapper.py ├── test_tensorflow_wrapper.py ├── test_torchvision_wrapper.py └── test_utils.py ├── nlp └── test_huggingface_wrapper.py ├── rl ├── __init__.py ├── test_garage_wrapper.py └── test_gym_wrapper.py └── test_hello_world.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/.pylintrc -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/README.md -------------------------------------------------------------------------------- /data/create_jsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/data/create_jsons.py -------------------------------------------------------------------------------- /data/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/common/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/common/commits.md -------------------------------------------------------------------------------- /docs/common/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/common/development.md -------------------------------------------------------------------------------- /docs/common/pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/common/pypi.md -------------------------------------------------------------------------------- /docs/data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/data/readme.md -------------------------------------------------------------------------------- /docs/sotaai/cv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/README.md -------------------------------------------------------------------------------- /docs/sotaai/cv/abstractions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/abstractions.md -------------------------------------------------------------------------------- /docs/sotaai/cv/fastai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/fastai.md -------------------------------------------------------------------------------- /docs/sotaai/cv/keras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/keras.md -------------------------------------------------------------------------------- /docs/sotaai/cv/mxnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/mxnet.md -------------------------------------------------------------------------------- /docs/sotaai/cv/pretrainedmodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/pretrainedmodels.md -------------------------------------------------------------------------------- /docs/sotaai/cv/tensorflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/tensorflow.md -------------------------------------------------------------------------------- /docs/sotaai/cv/torchvision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/cv/torchvision.md -------------------------------------------------------------------------------- /docs/sotaai/nlp/abstractions.md: -------------------------------------------------------------------------------- 1 | # NLP Abstraction 2 | -------------------------------------------------------------------------------- /docs/sotaai/nlp/fairseq.md: -------------------------------------------------------------------------------- 1 | # Fairseq 2 | -------------------------------------------------------------------------------- /docs/sotaai/nlp/huggingface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/docs/sotaai/nlp/huggingface.md -------------------------------------------------------------------------------- /docs/sotaai/nlp/torchtext.md: -------------------------------------------------------------------------------- 1 | # Torch Text 2 | -------------------------------------------------------------------------------- /docs/sotaai/rl/garage.md: -------------------------------------------------------------------------------- 1 | # Garage 2 | -------------------------------------------------------------------------------- /examples/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/examples/example1.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/setup.py -------------------------------------------------------------------------------- /sotaai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/__init__.py -------------------------------------------------------------------------------- /sotaai/cv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/__init__.py -------------------------------------------------------------------------------- /sotaai/cv/abstractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/abstractions.py -------------------------------------------------------------------------------- /sotaai/cv/fastai_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/fastai_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/keras_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/keras_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/metadata.py -------------------------------------------------------------------------------- /sotaai/cv/mmf_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/mmf_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/mxnet_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/mxnet_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/pretrainedmodels_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/pretrainedmodels_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/tensorflow_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/tensorflow_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/torchvision_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/torchvision_wrapper.py -------------------------------------------------------------------------------- /sotaai/cv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/cv/utils.py -------------------------------------------------------------------------------- /sotaai/neuro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/__init__.py -------------------------------------------------------------------------------- /sotaai/neuro/abstractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/abstractions.py -------------------------------------------------------------------------------- /sotaai/neuro/alchemy_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/alchemy_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/ampligraph_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/ampligraph_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/cdt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/cdt_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/cogdl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/cogdl_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/dgl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/dgl_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/dglke_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/dglke_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/dgllifesci_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/dgllifesci_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/karateclub_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/karateclub_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/metadata.py -------------------------------------------------------------------------------- /sotaai/neuro/nearai_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/nearai_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/pytorchgeo_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/pytorchgeo_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/spektral_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/spektral_wrapper.py -------------------------------------------------------------------------------- /sotaai/neuro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/neuro/utils.py -------------------------------------------------------------------------------- /sotaai/nlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/__init__.py -------------------------------------------------------------------------------- /sotaai/nlp/abstractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/abstractions.py -------------------------------------------------------------------------------- /sotaai/nlp/allennlp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/allennlp_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/decanlp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/decanlp_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/fairseq_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/fairseq_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/flair_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/flair_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/hanlp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/hanlp_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/huggfacemanual_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/huggfacemanual_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/huggingface_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/huggingface_datasets.py -------------------------------------------------------------------------------- /sotaai/nlp/huggingface_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/huggingface_models.py -------------------------------------------------------------------------------- /sotaai/nlp/huggingface_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/huggingface_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/nlparchitect_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/nlparchitect_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/parlai_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/parlai_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/stanza_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/stanza_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/tensorflow_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/tensorflow_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/torchtext_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/torchtext_wrapper.py -------------------------------------------------------------------------------- /sotaai/nlp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/nlp/utils.py -------------------------------------------------------------------------------- /sotaai/rl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/__init__.py -------------------------------------------------------------------------------- /sotaai/rl/abstractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/abstractions.py -------------------------------------------------------------------------------- /sotaai/rl/garage_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/garage_wrapper.py -------------------------------------------------------------------------------- /sotaai/rl/gym_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/gym_wrapper.py -------------------------------------------------------------------------------- /sotaai/rl/rllib_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/rllib_wrapper.py -------------------------------------------------------------------------------- /sotaai/rl/stablebaselines3_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/stablebaselines3_wrapper.py -------------------------------------------------------------------------------- /sotaai/rl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/sotaai/rl/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/__init__.py -------------------------------------------------------------------------------- /tests/cv/test_fastai_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/test_fastai_wrapper.py -------------------------------------------------------------------------------- /tests/cv/test_keras_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/test_keras_wrapper.py -------------------------------------------------------------------------------- /tests/cv/test_tensorflow_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/test_tensorflow_wrapper.py -------------------------------------------------------------------------------- /tests/cv/test_torchvision_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/test_torchvision_wrapper.py -------------------------------------------------------------------------------- /tests/cv/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/cv/test_utils.py -------------------------------------------------------------------------------- /tests/nlp/test_huggingface_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/nlp/test_huggingface_wrapper.py -------------------------------------------------------------------------------- /tests/rl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/rl/__init__.py -------------------------------------------------------------------------------- /tests/rl/test_garage_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/rl/test_garage_wrapper.py -------------------------------------------------------------------------------- /tests/rl/test_gym_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/rl/test_gym_wrapper.py -------------------------------------------------------------------------------- /tests/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateoftheartai/sotaai/HEAD/tests/test_hello_world.py --------------------------------------------------------------------------------