aboutsummaryrefslogtreecommitdiffstats
path: root/scalding
Commit message (Collapse)AuthorAgeFilesLines
* Added test, which passes.Ellen Spertus2018-08-071-5/+8
|
* Added ScorableTest, which passes.Ellen Spertus2018-08-071-7/+7
|
* Removed commented-out code.Ellen Spertus2018-08-072-29/+108
|
* Added StringUtilitiesTest.scala, which passes.Ellen Spertus2018-08-071-0/+75
|
* Minor cleanup. Passes scalastyle.Ellen Spertus2018-08-071-3/+0
|
* Added CrossrefScorable.scala. All code compiles.Ellen Spertus2018-08-073-10/+34
|
* New code compiles. Old tests pass. New tests not yet written.Ellen Spertus2018-08-065-9/+65
|
* Partly refactored HBaseCrossrefScoreJob. Everything compiles.Ellen Spertus2018-08-063-0/+194
|
* Changed scoring, including adding code to compute string differences. Turned ↵Ellen Spertus2018-07-303-23/+85
| | | | | | | | | | off line length checking. New scores: ['(583,sha1:K2DKSSVTXWPRMFDTWSTCQW3RVWRIOV3Q,DOI-0,'title 1','title 1: tng')'] ['(500,sha1:K2DKSSVTXWPRMFDTWSTCQW3RVWRIOV3Q,DOI-0.5,'title 1','title 1: tng 2')'] ['(500,sha1:K2DKSSVTXWPRMFDTWSTCQW3RVWRIOV3Q,DOI-0.75,'title 1','title 1: tng 3')'] ['(588,sha1:C3YNNEGH5WAG5ZAAXWAEBNXJWT6CZ3WU,DOI-1,'title 2: tng','title 2: rebooted')']
* Added accent removal to titleToSlug().Ellen Spertus2018-07-282-2/+51
|
* Added tests (both pass) to try to understand crash when run on real datwa.Ellen Spertus2018-07-281-0/+9
|
* Commented out debug() calls.Ellen Spertus2018-07-261-2/+1
|
* Made changes suggested in MR.Ellen Spertus2018-07-261-30/+41
|
* Computes and outputs (score, sha1, doi, grobidTitle, crossrefTitle).Ellen Spertus2018-07-262-33/+71
|
* Made progress on crossrefPipe.Ellen Spertus2018-07-252-12/+19
|
* Fixed bug with reading from TextLine. (Thanks, Bryan\!) Still had to comment ↵Ellen Spertus2018-07-252-11/+10
| | | | out some tests.
* Show full stack traces.Ellen Spertus2018-07-251-0/+1
|
* Restored my old tests. Commented out broken tests.Ellen Spertus2018-07-252-43/+68
|
* Checked all fields of first entry in grobid pipe.Ellen Spertus2018-07-251-2/+4
|
* Grobid entries without legal slugs are removed from the pipe.Ellen Spertus2018-07-252-10/+22
|
* Figured out string conversion. Tests pass. Still WIP.Ellen Spertus2018-07-252-17/+21
|
* WIP. I'm having problems converting between ImmutableBytesWritable and String.Ellen Spertus2018-07-242-23/+84
|
* Clean-upEllen Spertus2018-07-242-19/+28
|
* Added grobidToSlug().Ellen Spertus2018-07-242-9/+91
|
* Changed return type of grobidToSlug() to Option[String].Ellen Spertus2018-07-242-10/+20
|
* grobidToSlug() seems to work, including parsing of valid JSON strings.Ellen Spertus2018-07-242-0/+131
|
* Undid changes that did not belong in this branch.Ellen Spertus2018-07-193-304/+0
|
* Merge branch 'scalastyle' of git.archive.org:webgroup/sandcrawler into ↵Ellen Spertus2018-07-192-6/+9
|\ | | | | | | scalastyle
| * Cleanup after merge master. Note: I am not fixing warnings in ↵Ellen Spertus2018-07-198-30/+341
| |\ | | | | | | | | | CdxBackfillJob.scala.
| | * Merge branch 'bnewbold-backfill' of git.archive.org:webgroup/sandcrawlerEllen Spertus2018-07-195-11/+322
| | |\
| | | * more debugging notesBryan Newbold2018-07-171-0/+14
| | | |
| | | * refactor CdxBackfillJob to be all Typed (failed tests)Bryan Newbold2018-07-171-21/+46
| | | |
| | | * more complete CdxBackfillJob (untested)Bryan Newbold2018-07-171-2/+68
| | | |
| | | * fix confusing whitespace in HBaseStatusCountTestBryan Newbold2018-07-171-11/+11
| | | |
| | | * add buildSink() method for writing to HBaseBryan Newbold2018-07-171-0/+7
| | | |
| | | * early work on scalding CDX backfillBryan Newbold2018-07-172-0/+199
| | | |
| * | | Fixed mistake found while testing.Ellen Spertus2018-07-191-1/+1
| | | |
| * | | Improved style and style checking.Ellen Spertus2018-07-196-25/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Excludes checking of files in /example directories. - Warns about block imports, which have been removed. - Checks indenting. Parameters should be indented 2 spaces. See https://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments - Imports should be grouped (java.*, scala.*, other), with a blank line between groups
* | | | Removed remaining warning.Ellen Spertus2018-07-191-1/+1
| | | |
* | | | Improved style and style checking.Ellen Spertus2018-07-195-22/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Excludes checking of files in /example directories. - Warns about block imports, which have been removed. - Checks indenting. Parameters should be indented 2 spaces. See https://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments - Imports should be grouped (java.*, scala.*, other), with a blank line between groups
* | | | more debugging notesBryan Newbold2018-07-191-0/+14
| | | |
* | | | refactor CdxBackfillJob to be all Typed (failed tests)Bryan Newbold2018-07-191-21/+46
| | | |
* | | | more complete CdxBackfillJob (untested)Bryan Newbold2018-07-191-2/+68
| | | |
* | | | fix confusing whitespace in HBaseStatusCountTestBryan Newbold2018-07-191-11/+11
| | | |
* | | | add buildSink() method for writing to HBaseBryan Newbold2018-07-191-0/+7
| | | |
* | | | early work on scalding CDX backfillBryan Newbold2018-07-192-0/+199
| |/ / |/| |
* | | Added rule to warn about block imports. Removed block imports.Ellen Spertus2018-07-193-3/+6
| | |
* | | Eliminated example directoriesEllen Spertus2018-07-171-0/+8
| | |
* | | Added import order checking. Fixed misordered imports in our code.Ellen Spertus2018-07-174-4/+12
| |/ |/|
* | Merge branch 'scalastyle' into 'master'bnewbold2018-07-175-4/+122
|\| | | | | | | | | Added scalastyle and fixed style errors See merge request webgroup/sandcrawler!10