dwb2023 commited on
Commit
2f52407
·
1 Parent(s): 74b241c

add allnames

Browse files
Files changed (1) hide show
  1. data_access.py +1 -1
data_access.py CHANGED
@@ -28,7 +28,7 @@ def get_gdelt_data(
28
 
29
  con.execute("""
30
  CREATE VIEW negative_tone AS (
31
- SELECT GKGRECORDID, SourceCollectionIdentifier, DATE, SourceCommonName, DocumentIdentifier, "V2.1Quotations", tone, V1Counts, "V2.1Counts", "V2.1Amounts", V1Themes, V2EnhancedThemes, V1Locations, V2EnhancedLocations, V1Persons, V2EnhancedPersons, V1Organizations, V2EnhancedOrganizations
32
  FROM read_parquet('hf://datasets/dwb2023/gdelt-gkg-march2020-v2@~parquet/default/negative_tone/*.parquet')
33
  );
34
  """)
 
28
 
29
  con.execute("""
30
  CREATE VIEW negative_tone AS (
31
+ SELECT GKGRECORDID, SourceCollectionIdentifier, DATE, SourceCommonName, DocumentIdentifier, "V2.1Quotations", tone, V1Counts, "V2.1Counts", "V2.1Amounts", V1Themes, V2EnhancedThemes, V1Locations, V2EnhancedLocations, V1Persons, V2EnhancedPersons, V1Organizations, V2EnhancedOrganizations, "V2.1AllNames"
32
  FROM read_parquet('hf://datasets/dwb2023/gdelt-gkg-march2020-v2@~parquet/default/negative_tone/*.parquet')
33
  );
34
  """)