cpu
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitignore +1 -0
- __pycache__/e_smiles.cpython-310.pyc +0 -0
- infer.sh +1 -1
- onmt/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/__pycache__/constants.cpython-310.pyc +0 -0
- onmt/__pycache__/model_builder.cpython-310.pyc +0 -0
- onmt/__pycache__/opts.cpython-310.pyc +0 -0
- onmt/bin/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/bin/__pycache__/translate.cpython-310.pyc +0 -0
- onmt/decoders/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/decoders/__pycache__/cnn_decoder.cpython-310.pyc +0 -0
- onmt/decoders/__pycache__/decoder.cpython-310.pyc +0 -0
- onmt/decoders/__pycache__/ensemble.cpython-310.pyc +0 -0
- onmt/decoders/__pycache__/transformer.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/cnn_encoder.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/encoder.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/ggnn_encoder.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/mean_encoder.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/rnn_encoder.cpython-310.pyc +0 -0
- onmt/encoders/__pycache__/transformer.cpython-310.pyc +0 -0
- onmt/inputters/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/inputters/__pycache__/dynamic_iterator.cpython-310.pyc +0 -0
- onmt/inputters/__pycache__/inputter.cpython-310.pyc +0 -0
- onmt/inputters/__pycache__/text_corpus.cpython-310.pyc +0 -0
- onmt/inputters/__pycache__/text_utils.cpython-310.pyc +0 -0
- onmt/models/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/models/__pycache__/model.cpython-310.pyc +0 -0
- onmt/models/__pycache__/model_saver.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/alibi_position_bias.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/average_attn.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/conv_multi_step_attention.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/copy_generator.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/embeddings.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/gate.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/global_attention.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/lora.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/multi_headed_attn.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/position_ffn.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/rmsnorm.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/sparse_activations.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/sru.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/stacked_rnn.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/util_class.cpython-310.pyc +0 -0
- onmt/modules/__pycache__/weight_norm.cpython-310.pyc +0 -0
- onmt/transforms/__pycache__/__init__.cpython-310.pyc +0 -0
- onmt/transforms/__pycache__/bart.cpython-310.pyc +0 -0
- onmt/transforms/__pycache__/clean.cpython-310.pyc +0 -0
- onmt/transforms/__pycache__/docify.cpython-310.pyc +0 -0
.gitignore
CHANGED
|
@@ -160,3 +160,4 @@ cython_debug/
|
|
| 160 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
| 161 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
| 162 |
#.idea/
|
|
|
|
|
|
| 160 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
| 161 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
| 162 |
#.idea/
|
| 163 |
+
.pyc
|
__pycache__/e_smiles.cpython-310.pyc
CHANGED
|
Binary files a/__pycache__/e_smiles.cpython-310.pyc and b/__pycache__/e_smiles.cpython-310.pyc differ
|
|
|
infer.sh
CHANGED
|
@@ -8,4 +8,4 @@ python inference.py \
|
|
| 8 |
--batch_type tokens \
|
| 9 |
--max_length 500 \
|
| 10 |
--seed 0 \
|
| 11 |
-
--gpu
|
|
|
|
| 8 |
--batch_type tokens \
|
| 9 |
--max_length 500 \
|
| 10 |
--seed 0 \
|
| 11 |
+
--gpu -1
|
onmt/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/__pycache__/__init__.cpython-310.pyc and b/onmt/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/__pycache__/constants.cpython-310.pyc
CHANGED
|
Binary files a/onmt/__pycache__/constants.cpython-310.pyc and b/onmt/__pycache__/constants.cpython-310.pyc differ
|
|
|
onmt/__pycache__/model_builder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/__pycache__/model_builder.cpython-310.pyc and b/onmt/__pycache__/model_builder.cpython-310.pyc differ
|
|
|
onmt/__pycache__/opts.cpython-310.pyc
CHANGED
|
Binary files a/onmt/__pycache__/opts.cpython-310.pyc and b/onmt/__pycache__/opts.cpython-310.pyc differ
|
|
|
onmt/bin/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/bin/__pycache__/__init__.cpython-310.pyc and b/onmt/bin/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/bin/__pycache__/translate.cpython-310.pyc
CHANGED
|
Binary files a/onmt/bin/__pycache__/translate.cpython-310.pyc and b/onmt/bin/__pycache__/translate.cpython-310.pyc differ
|
|
|
onmt/decoders/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/decoders/__pycache__/__init__.cpython-310.pyc and b/onmt/decoders/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/decoders/__pycache__/cnn_decoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/decoders/__pycache__/cnn_decoder.cpython-310.pyc and b/onmt/decoders/__pycache__/cnn_decoder.cpython-310.pyc differ
|
|
|
onmt/decoders/__pycache__/decoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/decoders/__pycache__/decoder.cpython-310.pyc and b/onmt/decoders/__pycache__/decoder.cpython-310.pyc differ
|
|
|
onmt/decoders/__pycache__/ensemble.cpython-310.pyc
CHANGED
|
Binary files a/onmt/decoders/__pycache__/ensemble.cpython-310.pyc and b/onmt/decoders/__pycache__/ensemble.cpython-310.pyc differ
|
|
|
onmt/decoders/__pycache__/transformer.cpython-310.pyc
CHANGED
|
Binary files a/onmt/decoders/__pycache__/transformer.cpython-310.pyc and b/onmt/decoders/__pycache__/transformer.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/__init__.cpython-310.pyc and b/onmt/encoders/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/cnn_encoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/cnn_encoder.cpython-310.pyc and b/onmt/encoders/__pycache__/cnn_encoder.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/encoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/encoder.cpython-310.pyc and b/onmt/encoders/__pycache__/encoder.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/ggnn_encoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/ggnn_encoder.cpython-310.pyc and b/onmt/encoders/__pycache__/ggnn_encoder.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/mean_encoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/mean_encoder.cpython-310.pyc and b/onmt/encoders/__pycache__/mean_encoder.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/rnn_encoder.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/rnn_encoder.cpython-310.pyc and b/onmt/encoders/__pycache__/rnn_encoder.cpython-310.pyc differ
|
|
|
onmt/encoders/__pycache__/transformer.cpython-310.pyc
CHANGED
|
Binary files a/onmt/encoders/__pycache__/transformer.cpython-310.pyc and b/onmt/encoders/__pycache__/transformer.cpython-310.pyc differ
|
|
|
onmt/inputters/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/inputters/__pycache__/__init__.cpython-310.pyc and b/onmt/inputters/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/inputters/__pycache__/dynamic_iterator.cpython-310.pyc
CHANGED
|
Binary files a/onmt/inputters/__pycache__/dynamic_iterator.cpython-310.pyc and b/onmt/inputters/__pycache__/dynamic_iterator.cpython-310.pyc differ
|
|
|
onmt/inputters/__pycache__/inputter.cpython-310.pyc
CHANGED
|
Binary files a/onmt/inputters/__pycache__/inputter.cpython-310.pyc and b/onmt/inputters/__pycache__/inputter.cpython-310.pyc differ
|
|
|
onmt/inputters/__pycache__/text_corpus.cpython-310.pyc
CHANGED
|
Binary files a/onmt/inputters/__pycache__/text_corpus.cpython-310.pyc and b/onmt/inputters/__pycache__/text_corpus.cpython-310.pyc differ
|
|
|
onmt/inputters/__pycache__/text_utils.cpython-310.pyc
CHANGED
|
Binary files a/onmt/inputters/__pycache__/text_utils.cpython-310.pyc and b/onmt/inputters/__pycache__/text_utils.cpython-310.pyc differ
|
|
|
onmt/models/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/models/__pycache__/__init__.cpython-310.pyc and b/onmt/models/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/models/__pycache__/model.cpython-310.pyc
CHANGED
|
Binary files a/onmt/models/__pycache__/model.cpython-310.pyc and b/onmt/models/__pycache__/model.cpython-310.pyc differ
|
|
|
onmt/models/__pycache__/model_saver.cpython-310.pyc
CHANGED
|
Binary files a/onmt/models/__pycache__/model_saver.cpython-310.pyc and b/onmt/models/__pycache__/model_saver.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/__init__.cpython-310.pyc and b/onmt/modules/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/alibi_position_bias.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/alibi_position_bias.cpython-310.pyc and b/onmt/modules/__pycache__/alibi_position_bias.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/average_attn.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/average_attn.cpython-310.pyc and b/onmt/modules/__pycache__/average_attn.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/conv_multi_step_attention.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/conv_multi_step_attention.cpython-310.pyc and b/onmt/modules/__pycache__/conv_multi_step_attention.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/copy_generator.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/copy_generator.cpython-310.pyc and b/onmt/modules/__pycache__/copy_generator.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/embeddings.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/embeddings.cpython-310.pyc and b/onmt/modules/__pycache__/embeddings.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/gate.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/gate.cpython-310.pyc and b/onmt/modules/__pycache__/gate.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/global_attention.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/global_attention.cpython-310.pyc and b/onmt/modules/__pycache__/global_attention.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/lora.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/lora.cpython-310.pyc and b/onmt/modules/__pycache__/lora.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/multi_headed_attn.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/multi_headed_attn.cpython-310.pyc and b/onmt/modules/__pycache__/multi_headed_attn.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/position_ffn.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/position_ffn.cpython-310.pyc and b/onmt/modules/__pycache__/position_ffn.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/rmsnorm.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/rmsnorm.cpython-310.pyc and b/onmt/modules/__pycache__/rmsnorm.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/sparse_activations.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/sparse_activations.cpython-310.pyc and b/onmt/modules/__pycache__/sparse_activations.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/sru.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/sru.cpython-310.pyc and b/onmt/modules/__pycache__/sru.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/stacked_rnn.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/stacked_rnn.cpython-310.pyc and b/onmt/modules/__pycache__/stacked_rnn.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/util_class.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/util_class.cpython-310.pyc and b/onmt/modules/__pycache__/util_class.cpython-310.pyc differ
|
|
|
onmt/modules/__pycache__/weight_norm.cpython-310.pyc
CHANGED
|
Binary files a/onmt/modules/__pycache__/weight_norm.cpython-310.pyc and b/onmt/modules/__pycache__/weight_norm.cpython-310.pyc differ
|
|
|
onmt/transforms/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/onmt/transforms/__pycache__/__init__.cpython-310.pyc and b/onmt/transforms/__pycache__/__init__.cpython-310.pyc differ
|
|
|
onmt/transforms/__pycache__/bart.cpython-310.pyc
CHANGED
|
Binary files a/onmt/transforms/__pycache__/bart.cpython-310.pyc and b/onmt/transforms/__pycache__/bart.cpython-310.pyc differ
|
|
|
onmt/transforms/__pycache__/clean.cpython-310.pyc
CHANGED
|
Binary files a/onmt/transforms/__pycache__/clean.cpython-310.pyc and b/onmt/transforms/__pycache__/clean.cpython-310.pyc differ
|
|
|
onmt/transforms/__pycache__/docify.cpython-310.pyc
CHANGED
|
Binary files a/onmt/transforms/__pycache__/docify.cpython-310.pyc and b/onmt/transforms/__pycache__/docify.cpython-310.pyc differ
|
|
|