egrace479 commited on
Commit
48af9b7
·
verified ·
1 Parent(s): 3438fe9

Re-run owner match for full catalog-manifest

Browse files

Uses data/eol-cargo-archive_catalog_combined-manifest-checksums_links.csv, makes data/combined_manifest.csv for generating final catalog

.gitattributes CHANGED
@@ -72,3 +72,5 @@ eol_realign/data/checksums_media_cargo_archive.csv filter=lfs diff=lfs merge=lfs
72
  eol_realign/data/combined_manifest_with_checksums.csv filter=lfs diff=lfs merge=lfs -text
73
  eol_realign/data/full_owner_manifest.csv filter=lfs diff=lfs merge=lfs -text
74
  rare_species/data/rarespecies-catalog.csv filter=lfs diff=lfs merge=lfs -text
 
 
 
72
  eol_realign/data/combined_manifest_with_checksums.csv filter=lfs diff=lfs merge=lfs -text
73
  eol_realign/data/full_owner_manifest.csv filter=lfs diff=lfs merge=lfs -text
74
  rare_species/data/rarespecies-catalog.csv filter=lfs diff=lfs merge=lfs -text
75
+ eol_realign/data/combined_manifest.csv filter=lfs diff=lfs merge=lfs -text
76
+ eol_realign/data/combined-manifest-licenses.csv filter=lfs diff=lfs merge=lfs -text
eol_realign/data/combined-manifest-licenses.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ccd5290be9d8d2ab0953774d804d8b436ceef791aca57647a523be5c92cc9c0
3
+ size 4380387723
eol_realign/data/combined_manifest.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bf620f9b11854d2551f06f5f01e33c6817d7c74187ed4423af1ae9a415e2ef5
3
+ size 4057029393
eol_realign/scripts/match_owners.py CHANGED
@@ -6,7 +6,7 @@ import sys
6
  # NOTE: column names are hard-coded to the files provided in MANIFEST_PATH & OWNER_PATH
7
  # It is intended to just add the extra licensing information to the combined manifest
8
  # Owner fix file: https://huggingface.co/datasets/imageomics/eol/blob/main/owners_info_fix/media_manifest_missing_licenses_jul26_owners.csv
9
- MANIFEST_PATH = "data/combined_manifest_with_checksums.csv"
10
  OWNER_PATH = "data/media_manifest_missing_licenses_jul26_owners.csv"
11
 
12
 
 
6
  # NOTE: column names are hard-coded to the files provided in MANIFEST_PATH & OWNER_PATH
7
  # It is intended to just add the extra licensing information to the combined manifest
8
  # Owner fix file: https://huggingface.co/datasets/imageomics/eol/blob/main/owners_info_fix/media_manifest_missing_licenses_jul26_owners.csv
9
+ MANIFEST_PATH = "data/eol-cargo-archive_catalog_combined-manifest-checksums_links.csv"
10
  OWNER_PATH = "data/media_manifest_missing_licenses_jul26_owners.csv"
11
 
12