giulio98 commited on
Commit
c615e1f
1 Parent(s): 399f723

Update codebleu.py

Browse files
Files changed (1) hide show
  1. codebleu.py +4 -4
codebleu.py CHANGED
@@ -15,10 +15,10 @@
15
 
16
  import evaluate
17
  import datasets
18
- from .bleu import corpus_bleu
19
- from .weighted_ngram_match import corpus_weighted_ngram_match
20
- from .syntax_match import corpus_syntax_match
21
- from .dataflow_match import corpus_dataflow_match
22
  from tree_sitter import Language, Parser
23
 
24
 
 
15
 
16
  import evaluate
17
  import datasets
18
+ from .bleu import *
19
+ from .weighted_ngram_match import *
20
+ from .syntax_match import *
21
+ from .dataflow_match import *
22
  from tree_sitter import Language, Parser
23
 
24