Oopstom commited on
Commit
fc52e85
·
1 Parent(s): 3ca9436
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitignore +1 -0
  2. __pycache__/e_smiles.cpython-310.pyc +0 -0
  3. infer.sh +1 -1
  4. onmt/__pycache__/__init__.cpython-310.pyc +0 -0
  5. onmt/__pycache__/constants.cpython-310.pyc +0 -0
  6. onmt/__pycache__/model_builder.cpython-310.pyc +0 -0
  7. onmt/__pycache__/opts.cpython-310.pyc +0 -0
  8. onmt/bin/__pycache__/__init__.cpython-310.pyc +0 -0
  9. onmt/bin/__pycache__/translate.cpython-310.pyc +0 -0
  10. onmt/decoders/__pycache__/__init__.cpython-310.pyc +0 -0
  11. onmt/decoders/__pycache__/cnn_decoder.cpython-310.pyc +0 -0
  12. onmt/decoders/__pycache__/decoder.cpython-310.pyc +0 -0
  13. onmt/decoders/__pycache__/ensemble.cpython-310.pyc +0 -0
  14. onmt/decoders/__pycache__/transformer.cpython-310.pyc +0 -0
  15. onmt/encoders/__pycache__/__init__.cpython-310.pyc +0 -0
  16. onmt/encoders/__pycache__/cnn_encoder.cpython-310.pyc +0 -0
  17. onmt/encoders/__pycache__/encoder.cpython-310.pyc +0 -0
  18. onmt/encoders/__pycache__/ggnn_encoder.cpython-310.pyc +0 -0
  19. onmt/encoders/__pycache__/mean_encoder.cpython-310.pyc +0 -0
  20. onmt/encoders/__pycache__/rnn_encoder.cpython-310.pyc +0 -0
  21. onmt/encoders/__pycache__/transformer.cpython-310.pyc +0 -0
  22. onmt/inputters/__pycache__/__init__.cpython-310.pyc +0 -0
  23. onmt/inputters/__pycache__/dynamic_iterator.cpython-310.pyc +0 -0
  24. onmt/inputters/__pycache__/inputter.cpython-310.pyc +0 -0
  25. onmt/inputters/__pycache__/text_corpus.cpython-310.pyc +0 -0
  26. onmt/inputters/__pycache__/text_utils.cpython-310.pyc +0 -0
  27. onmt/models/__pycache__/__init__.cpython-310.pyc +0 -0
  28. onmt/models/__pycache__/model.cpython-310.pyc +0 -0
  29. onmt/models/__pycache__/model_saver.cpython-310.pyc +0 -0
  30. onmt/modules/__pycache__/__init__.cpython-310.pyc +0 -0
  31. onmt/modules/__pycache__/alibi_position_bias.cpython-310.pyc +0 -0
  32. onmt/modules/__pycache__/average_attn.cpython-310.pyc +0 -0
  33. onmt/modules/__pycache__/conv_multi_step_attention.cpython-310.pyc +0 -0
  34. onmt/modules/__pycache__/copy_generator.cpython-310.pyc +0 -0
  35. onmt/modules/__pycache__/embeddings.cpython-310.pyc +0 -0
  36. onmt/modules/__pycache__/gate.cpython-310.pyc +0 -0
  37. onmt/modules/__pycache__/global_attention.cpython-310.pyc +0 -0
  38. onmt/modules/__pycache__/lora.cpython-310.pyc +0 -0
  39. onmt/modules/__pycache__/multi_headed_attn.cpython-310.pyc +0 -0
  40. onmt/modules/__pycache__/position_ffn.cpython-310.pyc +0 -0
  41. onmt/modules/__pycache__/rmsnorm.cpython-310.pyc +0 -0
  42. onmt/modules/__pycache__/sparse_activations.cpython-310.pyc +0 -0
  43. onmt/modules/__pycache__/sru.cpython-310.pyc +0 -0
  44. onmt/modules/__pycache__/stacked_rnn.cpython-310.pyc +0 -0
  45. onmt/modules/__pycache__/util_class.cpython-310.pyc +0 -0
  46. onmt/modules/__pycache__/weight_norm.cpython-310.pyc +0 -0
  47. onmt/transforms/__pycache__/__init__.cpython-310.pyc +0 -0
  48. onmt/transforms/__pycache__/bart.cpython-310.pyc +0 -0
  49. onmt/transforms/__pycache__/clean.cpython-310.pyc +0 -0
  50. 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 0
 
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