Geraldine commited on
Commit
010036b
1 Parent(s): f82538b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -12,14 +12,18 @@ The request collects the bibliographic records of the SHS articles with abstract
12
 
13
  The parameters passed in the url request are :
14
 
15
- https://api.archives-ouvertes.fr/search/UNIV-COTEDAZUR/?q=docType_s:ART&fq=abstract_s:[%22%22%20TO%20*]&fq=domain_s:*shs*&fq=publicationDateY_i:[2013%20TO%202023]&fl=doiId_s,uri_s,title_s,subTitle_s,authFullName_s,producedDate_s,journalTitle_s,journalPublisher_s,abstract_s,domain_s,openAccess_bool
 
 
 
 
16
 
17
  The embeddings corpus hal_embeddings.pkl stores the embeddings of the "combined" column values converted in vectors with the sentence-transformers/all-MiniLM-L6-v2 embeddings model.
18
 
19
  ## Metadata extraction
20
 
21
  ```
22
- url = ""https://api.archives-ouvertes.fr/search/UNIV-COTEDAZUR/?q=docType_s:ART&fq=abstract_s:[%22%22%20TO%20*]&fq=domain_s:*shs*&fq=publicationDateY_i:[2013%20TO%202023]&fl=doiId_s,uri_s,title_s,subTitle_s,authFullName_s,producedDate_s,journalTitle_s,journalPublisher_s,abstract_s,domain_s,openAccess_bool"
23
 
24
  # Get the total number of records
25
  url_for_total_count = f"{url}&wt=json&rows=0"
 
12
 
13
  The parameters passed in the url request are :
14
 
15
+ - q=docType_s:ART
16
+ - fq=abstract_s:[%22%22%20TO%20*]
17
+ - fq=domain_s:*shs*
18
+ - fq=publicationDateY_i:[2013%20TO%202023]
19
+ - fl=doiId_s,uri_s,title_s,subTitle_s,authFullName_s,producedDate_s,journalTitle_s,journalPublisher_s,abstract_s,fr_keyword_s,openAccess_bool,submitType_s
20
 
21
  The embeddings corpus hal_embeddings.pkl stores the embeddings of the "combined" column values converted in vectors with the sentence-transformers/all-MiniLM-L6-v2 embeddings model.
22
 
23
  ## Metadata extraction
24
 
25
  ```
26
+ url = ""https://api.archives-ouvertes.fr/search/UNIV-COTEDAZUR/?q=docType_s:ART&fq=abstract_s:[%22%22%20TO%20*]&fq=domain_s:*shs*&fq=publicationDateY_i:[2013%20TO%202023]&fl=doiId_s,uri_s,title_s,subTitle_s,authFullName_s,producedDate_s,journalTitle_s,journalPublisher_s,abstract_s,fr_keyword_s,openAccess_bool,submitType_s"
27
 
28
  # Get the total number of records
29
  url_for_total_count = f"{url}&wt=json&rows=0"