-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini
More file actions
59 lines (54 loc) · 2.98 KB
/
Copy pathconfig.ini
File metadata and controls
59 lines (54 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;; Configuration file for make targets.
;; These settings are only used by the targets in makefile; all code takes
;; command-line parameters only. If you're ignoring the makefile, feel
;; free to ignore this file too!
;; General settings for running code
[General]
; Path to main data directory that all files are stored in
DataDirectory = CORD-19-data
; Path to copy of JET source code
JETInstallation = JET
;; Example settings for a corpus
[2020-03-20]
; Directory containing CORD-19 files downloaded from SemanticScholar
DistribDirectory = CORD-19-data/2020-03-20/distrib
; Directory to write extracted corpus files to
ExtractedDirectory = CORD-19-data/2020-03-20/extracted
; Mark the format for this release (for June 2020 on, will be Unified)
Format = Unified
; Mark whether you would like to extract article abstracts only
AbstractOnly = False
; Template path for individual replicate files ({REPL} will be replaced with
; replicate number)
ReplicateTemplate = CORD-19-data/2020-03-20/r{REPL}/entities.bin
; Embedding file format (options are "text" or "bin"; both word2vec format)
EmbeddingFormat = bin
;; Example settings for a vocabulary
;; Here, using SNOMED-CT International version released on 2020-03-09
[snomedct_20200309]
ConceptsFile = CORD-19-data/snomed/SnomedCT_InternationalRF2_PRODUCTION_20200309T120000Z/Full/Terminology/sct_Concept_Full_INT_20200309.txt
DescriptionsFile = CORD-19-data/snomed/SnomedCT_InternationalRF2_PRODUCTION_20200309T120000Z/Full/Terminology/sct_Descriptions_Full-en_INT_20200309.txt
DefinitionsFile = CORD-19-data/snomed/SnomedCT_InternationalRF2_PRODUCTION_20200309T120000Z/Full/Terminology/sct_TextDefinitions_Full-en_INT_20200309.txt
; Path to the directory to store extracted files in (will be created if it
; does not exist)
ExtractedDirectory = CORD-19-data/snomed/extracted/snomedct_20200309
[PairedNeighborhoodAnalysis]
NumNeighborsToShow = 10
HighConfidenceThreshold = 0.5
CorpusOrdering = 2020-03-27,2020-04-24,2020-05-31,2020-06-30,2020-07-31,2020-08-29,2020-09-28,2020-10-31
DatabaseFile = CORD-19-data/neighbors/paired_neighborhood_analysis.db
AggregateNeighborFilePattern = CORD-19-data/neighbors/{SRC}/entities.{TRG}{FILSPEC}{QUERYSPEC}.aggregate{SPEC}.neighbors
AggregateNeighborVocabFilePattern = CORD-19-data/neighbors/{SRC}/entities.{TRG}{FILSPEC}{QUERYSPEC}.aggregate{SPEC}.neighbors.vocab{VOCABSPEC}
NeighborFilePattern = CORD-19-data/neighbors/{SRC}/r{SRC_RUN}/entities.{TRG}.neighbors
NeighborVocabFilePattern = CORD-19-data/neighbors/{SRC}/r{SRC_RUN}/entities.{TRG}.neighbors.vocab
;; Settings for nearest_neighbors.calculation.prepare_visualization
;; (also uses settings from PairedNeighborhoodAnalysis)
[Visualization]
; If a corpus is larger than this, filter to this number of highest-confidence entities
NumEntitiesPerFrame = 2000
; path name for embedding file
EmbeddingFilePattern = {CORPUS}_all_entities.bin
; Embedding file format
EmbeddingFormat = bin
; Visualization output file (JSON extension)
OutputFile = nearest_neighbors/dashboard/static/visualization.json