BBN-E / tac-kbp-eal

TAC KBP Event Argument Extraction and Linking Shared Task
MIT License
25 stars 19 forks source link

Issue with Uncompression in evaluation script #2

Closed soumitraj closed 10 years ago

soumitraj commented 10 years ago

Hi, I see some issues in the evaluation script : 1) echo "Uncompressing .tar.gz submissions" for f in *.tar.gz; do strippedName=${f%.tar.gz} mkdir $strippedName echo "Unzipping $strippedName" tar -xzf $f -C $strippedName done

In the above code if there are no tar.gz files then strippedName = * and mkdir fails as it tries to create directories with names which already exist in the directory ( mkdir * )

gabbard commented 10 years ago

@somisidd : Thank you for reporting this. While the eval script is only supported for NIST's use on the full set of participant submissions (which includes all these file types), I've attempted a fix in e8b0099 . I don't have time to test it, though, so please let me know if it doesn't work.

soumitraj commented 10 years ago

No problem, for my current run I just commented out the code but the code fails later one ( I sent you the email for this while ago). Will test it once I am able to run it successfully at-least once..

Thanks!

gabbard commented 10 years ago

On 7/3/2014 10:42 AM, somisidd wrote:

No problem, for my current run I just commented out the code but the code fails later one ( I sent you the email for this while ago). Will test it once I am able to run it successfully at-least once..

Was this other issue the one about rename? Or is somisidd the same person as Soumitra with whom I am corresponding about another issue?

Thanks, Ryan

soumitraj commented 10 years ago

Hi Ryan, closing the issue as its fixed. -Soumitra