├── .gitignore ├── LICENSE ├── README.md ├── described.py ├── requirements.txt └── workflows ├── extended.json5 └── standard.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/README.md -------------------------------------------------------------------------------- /described.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/described.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | json5 2 | salesforce-lavis==1.0.2 3 | tqdm==4.65.0 4 | -------------------------------------------------------------------------------- /workflows/extended.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/workflows/extended.json5 -------------------------------------------------------------------------------- /workflows/standard.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjennings/described/HEAD/workflows/standard.json5 --------------------------------------------------------------------------------