├── .gitignore ├── LICENSE ├── README.md ├── environment.yml ├── install.sh ├── linguistic_aspects.png ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/environment.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/install.sh -------------------------------------------------------------------------------- /linguistic_aspects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/linguistic_aspects.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WanzhengZhu/GRUEN/HEAD/requirements.txt --------------------------------------------------------------------------------