├── LICENSE ├── README.md ├── img └── demo.jpg └── model ├── __init__.py ├── bpe_simple_vocab_16e6.txt.gz ├── longclip.py ├── model_longclip.py └── simple_tokenizer.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/README.md -------------------------------------------------------------------------------- /img/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/img/demo.jpg -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | from .longclip import * 2 | -------------------------------------------------------------------------------- /model/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/model/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /model/longclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/model/longclip.py -------------------------------------------------------------------------------- /model/model_longclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/model/model_longclip.py -------------------------------------------------------------------------------- /model/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitsuiChen14/DGTRS/HEAD/model/simple_tokenizer.py --------------------------------------------------------------------------------