├── .gitignore ├── README.md ├── assets └── 시연영상.gif ├── model ├── args │ ├── DataTrainingArguments.py │ ├── GenerationArguments.py │ ├── LoggingArguments.py │ ├── ModelArguments.py │ ├── Seq2SeqTrainingArguments.py │ └── __init__.py ├── models │ ├── modeling_distilbert_bart.py │ ├── modeling_kobigbird_bart.py │ └── modeling_longformer_bart.py ├── optimization │ ├── knowledge_distillation.py │ ├── performanceBenchmark.py │ ├── performance_test.py │ ├── pruning.py │ └── quantization.py ├── predict.py ├── pretrain.py ├── running.sh ├── test.py ├── train.py └── utils │ ├── data_collator.py │ ├── data_loader.py │ ├── data_preprocessor.py │ ├── processor.py │ ├── rouge.py │ └── trainer.py ├── requirements.sh └── serving ├── app.py ├── predict.py ├── text_processor.py ├── utils.py └── viz.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/README.md -------------------------------------------------------------------------------- /assets/시연영상.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/assets/시연영상.gif -------------------------------------------------------------------------------- /model/args/DataTrainingArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/DataTrainingArguments.py -------------------------------------------------------------------------------- /model/args/GenerationArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/GenerationArguments.py -------------------------------------------------------------------------------- /model/args/LoggingArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/LoggingArguments.py -------------------------------------------------------------------------------- /model/args/ModelArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/ModelArguments.py -------------------------------------------------------------------------------- /model/args/Seq2SeqTrainingArguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/Seq2SeqTrainingArguments.py -------------------------------------------------------------------------------- /model/args/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/args/__init__.py -------------------------------------------------------------------------------- /model/models/modeling_distilbert_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/models/modeling_distilbert_bart.py -------------------------------------------------------------------------------- /model/models/modeling_kobigbird_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/models/modeling_kobigbird_bart.py -------------------------------------------------------------------------------- /model/models/modeling_longformer_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/models/modeling_longformer_bart.py -------------------------------------------------------------------------------- /model/optimization/knowledge_distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/optimization/knowledge_distillation.py -------------------------------------------------------------------------------- /model/optimization/performanceBenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/optimization/performanceBenchmark.py -------------------------------------------------------------------------------- /model/optimization/performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/optimization/performance_test.py -------------------------------------------------------------------------------- /model/optimization/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/optimization/pruning.py -------------------------------------------------------------------------------- /model/optimization/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/optimization/quantization.py -------------------------------------------------------------------------------- /model/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/predict.py -------------------------------------------------------------------------------- /model/pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/pretrain.py -------------------------------------------------------------------------------- /model/running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/running.sh -------------------------------------------------------------------------------- /model/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/test.py -------------------------------------------------------------------------------- /model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/train.py -------------------------------------------------------------------------------- /model/utils/data_collator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/data_collator.py -------------------------------------------------------------------------------- /model/utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/data_loader.py -------------------------------------------------------------------------------- /model/utils/data_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/data_preprocessor.py -------------------------------------------------------------------------------- /model/utils/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/processor.py -------------------------------------------------------------------------------- /model/utils/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/rouge.py -------------------------------------------------------------------------------- /model/utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/model/utils/trainer.py -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/requirements.sh -------------------------------------------------------------------------------- /serving/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/serving/app.py -------------------------------------------------------------------------------- /serving/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/serving/predict.py -------------------------------------------------------------------------------- /serving/text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/serving/text_processor.py -------------------------------------------------------------------------------- /serving/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/serving/utils.py -------------------------------------------------------------------------------- /serving/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampaitech2/final-project-level3-nlp-02/HEAD/serving/viz.py --------------------------------------------------------------------------------