Unknees commited on
Commit
456187f
·
verified ·
1 Parent(s): e815ff3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -47,6 +47,39 @@ If you want to use onl one modality, you can use the data contained in Textual_D
47
 
48
  The data inside Multi_modal_dataset are already merged with a fixed window for timeseries (48 hours window for french data and 5 day window for english data)
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  ### Citation Information
52
 
 
47
 
48
  The data inside Multi_modal_dataset are already merged with a fixed window for timeseries (48 hours window for french data and 5 day window for english data)
49
 
50
+ If you want to change the time series window you can use Linker_Fr.py and Linker_Eng.py. (WARNING : Linker_Fr can take some time)
51
+
52
+ To use the linker please use
53
+
54
+ ```unix
55
+ python3 Linker_Eng.py --window_size 5 -output_file ./output_file.csv
56
+ ```
57
+
58
+ or
59
+
60
+ ```unix
61
+ python3 Linker_FR.py -w 16 -o ./output_file.csv
62
+ ```
63
+ With :
64
+ -w / --window_size : the size of your timeseries window (with 3hours frequency for french data and daily data for english data)
65
+ -o / --output_file : path and name of your personnal dataset
66
+
67
+ Note that to launch the french linker, you will require the following librairies :
68
+ pandas
69
+ datetime
70
+ numpy
71
+ datetime
72
+ pytz
73
+ warnings
74
+ argparse
75
+
76
+
77
+ Note that to launch the english linker, you will require the following librairies :
78
+ pandas
79
+ os
80
+ json
81
+ scikit-learn
82
+ argparse
83
 
84
  ### Citation Information
85