Spaces:
Running
Running
feat: use bart-large-cnn
Browse files
seq2seq/run_seq2seq_flax.py
CHANGED
@@ -84,7 +84,7 @@ MODEL_TYPES = tuple(conf.model_type for conf in MODEL_CONFIG_CLASSES)
|
|
84 |
OUTPUT_VOCAB_SIZE = 16384 + 1 # encoded image token space + 1 for bos
|
85 |
OUTPUT_LENGTH = 256 + 1 # number of encoded tokens + 1 for bos
|
86 |
BOS_TOKEN_ID = 16384
|
87 |
-
BASE_MODEL = 'facebook/bart-large'
|
88 |
|
89 |
|
90 |
@dataclass
|
|
|
84 |
OUTPUT_VOCAB_SIZE = 16384 + 1 # encoded image token space + 1 for bos
|
85 |
OUTPUT_LENGTH = 256 + 1 # number of encoded tokens + 1 for bos
|
86 |
BOS_TOKEN_ID = 16384
|
87 |
+
BASE_MODEL = 'facebook/bart-large-cnn' # we currently have issues with bart-large
|
88 |
|
89 |
|
90 |
@dataclass
|