-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjournal_de_travail.fods
1178 lines (1177 loc) · 78.6 KB
/
journal_de_travail.fods
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
<office:meta><meta:creation-date>2021-02-23T10:47:53.714997757</meta:creation-date><dc:date>2021-07-29T13:29:20.103384161</dc:date><meta:editing-duration>P6DT8H18M56S</meta:editing-duration><meta:editing-cycles>209</meta:editing-cycles><meta:generator>LibreOffice/7.1.3.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="193" meta:object-count="0"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">39018</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">55969</config:config-item>
<config:config-item-set config:name="TrackedChangesViewSettings">
<config:config-item config:name="ShowChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowAcceptedChanges" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowRejectedChanges" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowChangesByDatetime" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowChangesByDatetimeMode" config:type="short">0</config:config-item>
<config:config-item config:name="ShowChangesByDatetimeFirstDatetime" config:type="datetime">0000-00-00</config:config-item>
<config:config-item config:name="ShowChangesByDatetimeSecondDatetime" config:type="datetime">0000-00-00</config:config-item>
<config:config-item config:name="ShowChangesByAuthor" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowChangesByAuthorName" config:type="string"/>
<config:config-item config:name="ShowChangesByComment" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowChangesByCommentText" config:type="string"/>
<config:config-item config:name="ShowChangesByRanges" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowChangesByRangesList" config:type="string"/>
</config:config-item-set>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
<config:config-item-map-named config:name="Tables">
<config:config-item-map-entry config:name="Sheet1">
<config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">12</config:config-item>
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
<config:config-item config:name="PositionBottom" config:type="int">78</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">110</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-named>
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1848</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">110</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">rAH+/0VOVllfNzY0MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpFTlZZXzc2NDAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAzQAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9RU5WWV83NjQwCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpJbnB1dFNsb3Q6QXV0bwBQYWdlU2l6ZTpMZXR0ZXIARHVwbGV4Ok5vbmUAABIAQ09NUEFUX0RVUExFWF9NT0RFDwBEdXBsZXhNb2RlOjpPZmY=</config:config-item>
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
<config:config-item-map-indexed config:name="ForbiddenCharacters">
<config:config-item-map-entry>
<config:config-item config:name="Language" config:type="string">fr</config:config-item>
<config:config-item config:name="Country" config:type="string">CH</config:config-item>
<config:config-item config:name="Variant" config:type="string"/>
<config:config-item config:name="BeginLine" config:type="string"/>
<config:config-item config:name="EndLine" config:type="string"/>
</config:config-item-map-entry>
</config:config-item-map-indexed>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">ENVY_7640</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item-map-named config:name="ScriptConfiguration">
<config:config-item-map-entry config:name="Sheet1">
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-named>
</config:config-item-set>
</office:settings>
<office:scripts>
<office:script script:language="ooo:Basic">
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink">
<ooo:library-embedded ooo:name="Standard"/>
</ooo:libraries>
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="JetBrains Mono" svg:font-family="'JetBrains Mono'" style:font-family-generic="modern"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Noto Sans Devanagari" svg:font-family="'Noto Sans Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
<style:default-style style:family="table-cell">
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
<style:text-properties style:font-name="DejaVu Sans" fo:language="fr" fo:country="CH" style:font-name-asian="Noto Sans CJK SC" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans Devanagari" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style>
<number:number-style style:name="N0">
<number:number number:min-integer-digits="1"/>
</number:number-style>
<style:style style:name="Default" style:family="table-cell"/>
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
</style:style>
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
<style:table-cell-properties fo:background-color="#ccffcc"/>
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
<style:table-cell-properties fo:background-color="#ffffcc"/>
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
<style:table-cell-properties fo:background-color="#ffcccc"/>
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
<style:table-cell-properties fo:background-color="#cc0000"/>
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
</style:style>
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
</style:style>
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
<style:table-cell-properties fo:background-color="#000000"/>
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
<style:table-cell-properties fo:background-color="#808080"/>
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
</style:style>
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
<style:table-cell-properties fo:background-color="#dddddd"/>
</style:style>
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
</style:style>
</office:styles>
<office:automatic-styles>
<style:style style:name="co1" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="4.607cm"/>
</style:style>
<style:style style:name="co2" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="34.412cm"/>
</style:style>
<style:style style:name="co3" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="4.5cm"/>
</style:style>
<style:style style:name="co4" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
</style:style>
<style:style style:name="ro1" style:family="table-row">
<style:table-row-properties style:row-height="0.452cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ro2" style:family="table-row">
<style:table-row-properties style:row-height="2.027cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ro3" style:family="table-row">
<style:table-row-properties style:row-height="1.236cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ro4" style:family="table-row">
<style:table-row-properties style:row-height="1.632cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ro5" style:family="table-row">
<style:table-row-properties style:row-height="0.841cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
</style:style>
<number:number-style style:name="N2">
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
</number:number-style>
<number:date-style style:name="N37" number:automatic-order="true">
<number:day number:style="long"/>
<number:text>.</number:text>
<number:month number:style="long"/>
<number:text>.</number:text>
<number:year/>
</number:date-style>
<style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N37"/>
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N37"/>
<style:page-layout style:name="pm1">
<style:page-layout-properties style:writing-mode="lr-tb"/>
<style:header-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
</style:header-style>
<style:footer-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
</style:footer-style>
</style:page-layout>
<style:page-layout style:name="pm2">
<style:page-layout-properties style:writing-mode="lr-tb"/>
<style:header-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
<style:background-image/>
</style:header-footer-properties>
</style:header-style>
<style:footer-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
<style:background-image/>
</style:header-footer-properties>
</style:footer-style>
</style:page-layout>
<style:style style:name="T1" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="10pt" fo:language="fr" fo:country="CH" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Noto Sans Devanagari" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="JetBrains Mono" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal" style:font-name-asian="JetBrains Mono" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="JetBrains Mono" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="10pt" fo:font-weight="normal" style:text-underline-style="none" style:text-underline-color="font-color" style:text-line-through-type="none" fo:font-style="normal" style:text-outline="false" fo:text-shadow="none" style:text-line-through-mode="continuous" fo:language="fr" fo:country="CH" style:language-asian="zh" style:country-asian="CN" style:language-complex="hi" style:country-complex="IN" style:font-name-asian="Noto Sans CJK SC" style:font-name-complex="Noto Sans Devanagari" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="normal" style:font-weight-complex="normal" style:font-style-asian="normal" style:font-style-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties fo:color="#000000" style:font-name="JetBrains Mono" fo:font-size="10pt" fo:font-weight="normal" fo:font-style="normal" style:font-name-asian="JetBrains Mono" style:font-name-complex="JetBrains Mono" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="normal" style:font-weight-complex="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
</style:style>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="Default" style:page-layout-name="pm1">
<style:header>
<text:p><text:sheet-name>???</text:sheet-name></text:p>
</style:header>
<style:header-left style:display="false"/>
<style:footer>
<text:p>Page <text:page-number>1</text:page-number></text:p>
</style:footer>
<style:footer-left style:display="false"/>
</style:master-page>
<style:master-page style:name="Report" style:page-layout-name="pm2">
<style:header>
<style:region-left>
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
</style:region-left>
<style:region-right>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-07-29">00.00.0000</text:date>, <text:time style:data-style-name="N2" text:time-value="14:58:56.257678354">00:00:00</text:time></text:p>
</style:region-right>
</style:header>
<style:header-left style:display="false"/>
<style:footer>
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
</style:footer>
<style:footer-left style:display="false"/>
</style:master-page>
</office:master-styles>
<office:body>
<office:spreadsheet>
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
<table:table table:name="Sheet1" table:style-name="ta1">
<table:table-column table:style-name="co1" table:default-cell-style-name="ce2"/>
<table:table-column table:style-name="co2" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co3" table:default-cell-style-name="Default"/>
<table:table-row table:style-name="ro1">
<table:table-cell table:style-name="Default" office:value-type="string" calcext:value-type="string">
<text:p>Date</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>activité</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-02-23" calcext:value-type="date">
<text:p>23.02.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Lire TB Mr. Rod</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell table:style-name="Default"/>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Regarder des informations sur Landsat8,</text:p><text:p>Suivre le tutoriel d’installation de l’API python de GEE et </text:p><text:p>Faire quelques essais de script pour interagir avec GEE.</text:p><text:p><text:span text:style-name="T3">Lire de la documentation QGIS</text:span></text:p><text:p><text:span text:style-name="T3">Recherche d’informations sur les différentes bandes de fréquences</text:span></text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-02-24" calcext:value-type="date">
<text:p>24.02.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Quelques tests de visualisation de combinaisons de bandes de fréquences sur GEE</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-02-26" calcext:value-type="date">
<text:p>26.02.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Continuer à faire des essais avec GEE pour télécharger des données</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell office:value-type="date" office:date-value="2021-03-02" calcext:value-type="date">
<text:p>02.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Regarder la vidéo sur Terra-i et les vidéos GEE recommandées par Pr. Perez-Uribe</text:p><text:p>Récupérer cartes 2013 et labels depuis le serveur atlas</text:p><text:p>Afficher les labels situant le café par-dessus un raster virtuel formé des rasters de 2013 sur QGIS.</text:p><text:p>Déterminer la région du Vietnam qui est récupérée dans les images satellites de 2013 sur le serveur atlas.</text:p><text:p>Améliorer le script de téléchargement de carte depuis GEE</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell office:value-type="date" office:date-value="2021-03-03" calcext:value-type="date">
<text:p>03.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Améliorer le script de téléchargement de carte depuis GEE,</text:p><text:p>Script utilisant rasterio pour fusionner plusieurs fichiers tif en un seul et l’écrire sur le disque,</text:p><text:p>Script utilisant PyShp pour lire les fichiers de shapefile contenant les points labelisés et lister les coordonnées.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-04" calcext:value-type="date">
<text:p>04.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réussir à découper un carré de quelques px autour d’un emplacement de café, il reste à corriger les valeurs min-max des bandes qu’on obtient</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell office:value-type="date" office:date-value="2021-03-05" calcext:value-type="date">
<text:p>05.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Correction de la taille des carrés coupés.</text:p><text:p>Créer un notebook Jupyter pour analyser les résultats.</text:p><text:p>Améliorer le script pour découper la partie écriture des carré labelisé sur le disque et celle du calcul des statistiques par-rapport à une date.</text:p><text:p>Utilisation de pandas pour rentrer les données, possibilité de comparer les valeurs des classes pour les différentes bandes de fréquence.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell office:value-type="date" office:date-value="2021-03-09" calcext:value-type="date">
<text:p>09.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Recherche d’informations sur le climat au Vietnam.</text:p><text:p><text:span text:style-name="T3">Amélioration du script de téléchargement de carte pour pouvoir prendre plusieurs plage de temps.</text:span></text:p><text:p>Comparaison du café à travers des saisons («hiver», «été»).</text:p><text:p>Amélioration de la visualisation des résultats.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell office:value-type="date" office:date-value="2021-03-10" calcext:value-type="date">
<text:p>10.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Essayer de trouver une découpe de l’année qui permet d’avoir assez de donnée pour ne pas avoir trop de nuage, mais être plus précis que seulement deux saisons.</text:p><text:p>Je me suis renseigné et j’ai appris que les labels fournis devraient daté de 2016-2018.</text:p><text:p>Téléchargement des cartes médiane de tout les deux mois sur une plage de 2014 à 2020.</text:p><text:p>Début d’analyse exploratoire des données.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-11" calcext:value-type="date">
<text:p>11.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Normalisation des données, améliorer visualisation des données</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-12" calcext:value-type="date">
<text:p>12.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Analyse exploratoire des données</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-03-16" calcext:value-type="date">
<text:p>16.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Correction de deux erreurs : j’utilisais la moyenne au lieu de la médiane qui est meilleure pour comparer ces valeurs et les valeurs nodata étaient pris en compte.</text:p><text:p>Ajout de fonctions pour traiter les labels par région, découpage des labels de café du Vietnam en deux région.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-17" calcext:value-type="date">
<text:p>17.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réusinage du script pour analyser les données.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-23" calcext:value-type="date">
<text:p>23.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion pour parler du travail de bachelor d’un étudiant en master et de mon travail de bachelor. Lecture et recherche sur le machine learning et les réseaux de neurones convolutifs.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-24" calcext:value-type="date">
<text:p>24.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Regarder plus de théorie sur les réseaux de neurones convolutifs et commencer à se familiariser avec Keras</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-25" calcext:value-type="date">
<text:p>25.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer à faire un dataset qui peut-être utiliser avec Keras</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-26" calcext:value-type="date">
<text:p>26.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Faire un dataset des données satellites en json, premiers essais avec Keras sur les données, essayer d’ajouter de l’augmentation de données avec ImageDataGenerator, essayer d’équilibrer les classes avec compute_class_weight</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-27" calcext:value-type="date">
<text:p>27.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer sur le rapport, commence à explique les réseaux de neurones artificiels</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-29" calcext:value-type="date">
<text:p>29.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Continuer à essayer avec des hyperparamètres différents, essais avec jusqu’à 5000 epochs, avancer sur le rapport, réussir à lancer le notebook sur google colab (mais moins rapide actuellement que sur ma machine)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-30" calcext:value-type="date">
<text:p>30.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion avec Prof. Perez-Uribe et un étudiant en master, essai d’utiliser flow_from_directory de Keras sans succès pour le moment (PIL ne supporte pas les images en float64)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-03-31" calcext:value-type="date">
<text:p>31.03.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Améliorer la structure du projet</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-12" calcext:value-type="date">
<text:p>12.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Implémentation de la validation croisée, avancer sur l’explication des réseaux de neurones dans le rapport</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell office:value-type="date" office:date-value="2021-04-13" calcext:value-type="date">
<text:p>13.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Réunion, finir l’explication des neurones artificiels et des réseaux de neurones,</text:p><text:p>faire la cross validation plusieurs fois pour valider les modèles,</text:p><text:p>réaliser une matrice de confusion sommant celle de chaque validation</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-15" calcext:value-type="date">
<text:p>15.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, calcul de la précision, du rappel et du f-score à partir de matrices</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-16" calcext:value-type="date">
<text:p>16.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Tester quelles combinaisons de canaux de fréquences donnent les meilleurs résultats</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-17" calcext:value-type="date">
<text:p>17.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Tester quelles combinaisons de canaux de fréquences donnent les meilleurs résultats, tester la meilleure combinaison de canaux sur 5000 epochs (11x11px)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-19" calcext:value-type="date">
<text:p>19.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Tester la meilleure combinaison de canaux sur 5000 epochs (9x9px)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-20" calcext:value-type="date">
<text:p>20.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion, validation croisée en prenant en compte la situation géographique des labels</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-23" calcext:value-type="date">
<text:p>23.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer sur le rapport</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell office:value-type="date" office:date-value="2021-04-26" calcext:value-type="date">
<text:p>26.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Avancer sur le rapport (notamment finir l’explication des réseaux de neurones convolutifs),</text:p><text:p>Analyser l’impact du sur-ajustement sur les performances de classifications en regardant périodiquement la différences de performances de classification</text:p><text:p>Après un certain nombre d’epochs.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-27" calcext:value-type="date">
<text:p>27.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, assister à distance à une conférence de l’ISPRS (qui a du être interrompue à cause de participants empêchant le bon déroulement de la conférence)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-28" calcext:value-type="date">
<text:p>28.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, faire différents tests d’architecture de CNN</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-04-29" calcext:value-type="date">
<text:p>29.04.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>faire différents tests d’architecture de CNN</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-01" calcext:value-type="date">
<text:p>01.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, et continuer à faire des tests d’architecture de CNN</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-04" calcext:value-type="date">
<text:p>04.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, réunion, continuer à faire des tests d’architecture de CNN (réduire la couche entièrement connectée, essais avec pooling, différent essais avec augmentation des données)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-06" calcext:value-type="date">
<text:p>06.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>tests d’architecture et reporter les résultats des performances des architectures dans un tableur</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-07" calcext:value-type="date">
<text:p>07.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Avancer le rapport, continuer les tests d’architectures</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-08" calcext:value-type="date">
<text:p>08.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Ajouter un «callback» pour calculer le f-score après chaque epochs et pouvoir l’utiliser avec l’early stopping et imprimer un graphe du f-score</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-11" calcext:value-type="date">
<text:p>11.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion, continuer le rapport, commenter le code, lancer des entraînements de modèles avec de nouvelles architectures</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-12" calcext:value-type="date">
<text:p>12.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Correction de fautes de français dans le rapport, commenter le code, </text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-14" calcext:value-type="date">
<text:p>14.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réaliser la bibliographie avec Zotero, écrire la conclusion, relecture</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-15" calcext:value-type="date">
<text:p>15.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Finaliser le rapport intermédiaire</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-18" calcext:value-type="date">
<text:p>18.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion, sauvegarde des modèles, refactor</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-05-19" calcext:value-type="date">
<text:p>19.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Refactor, sauvegarde des modèles en s’assurant que seul le meilleur modèle est sauvegardé même entre les différentes validations croisées,</text:p><text:p>ajouter albumentations pour avoir de l’augmentation d’image qui accepte les images multispectrales (et amélioration de la rapidité).</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-21" calcext:value-type="date">
<text:p>21.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Comparaison de canaux, essai avec NDVI et MNDWI</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-24" calcext:value-type="date">
<text:p>24.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Recherche sur les modèles permettant d’inclure une notion de temps (CNN-LSTM, CNN3D, …), continuer à comparer les canaux et ajout de nouveaux canaux calculés</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-05-25" calcext:value-type="date">
<text:p>25.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Reporter les résultats des comparaisons des canaux dans un tableur, tester avec des rotations de 90 degrés dans l’augmentation des données,</text:p><text:p>Avancer le rapport, commencer à essayer de mettre en place la validation spatiale de Romain</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-26" calcext:value-type="date">
<text:p>26.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer à essayer de mettre en place la validation spatiale de Romain</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-27" calcext:value-type="date">
<text:p>27.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer à essayer de mettre en place la validation spatiale de Romain</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-28" calcext:value-type="date">
<text:p>28.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Arriver à séparer en trois ensemble entraînement, validation et test en suivant la même procédure que Romain, mais avec plus que deux classes</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-05-31" calcext:value-type="date">
<text:p>31.05.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer à adapter la pipeline pour avoir les images sur le disque et les chemins d’accès dans le dataset</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-01" calcext:value-type="date">
<text:p>01.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réparer l’erreur de sélection de bandes des rasters téléchargés avec la collection Surface Reflectance (ordre des bandes après panchromatic et cirrus différent, car ils sont absents) </text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-02" calcext:value-type="date">
<text:p>02.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réparer l’erreur de sélection de bandes des rasters téléchargés avec la collection Surface Reflectance (ordre des bandes après panchromatic et cirrus différent, car ils sont absents) </text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-04" calcext:value-type="date">
<text:p>04.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Mettre à jour la pipeline pour pouvoir avoir des jeux de données sauvegardés sur le disque ne contenant que les chemins d’accès vers les fichiers et non les valeurs des images</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-05" calcext:value-type="date">
<text:p>05.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Mettre à jour la pipeline pour pouvoir avoir des jeux de données sauvegardés sur le disque ne contenant que les chemins d’accès vers les fichiers et non les valeurs des images</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-07" calcext:value-type="date">
<text:p>07.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Faire l’entraînement avec la validation spatiale</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-06-08" calcext:value-type="date">
<text:p>08.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Réunion, corriger l’erreur dans le callback du f1-score adapté pour prendre des générateurs de données,</text:p><text:p>réaliser l’expérience de valider avec les données de 2019 un modèle entraîné sur toutes les données de 2018</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-09" calcext:value-type="date">
<text:p>09.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Assister à la présentation du travail de master de Romain Capocasale</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-10" calcext:value-type="date">
<text:p>10.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Téléchargements de données de différentes années, refaire la validation spatiale maintenant que le callback de f1-score est corrigé</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-11" calcext:value-type="date">
<text:p>11.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Comparaison d’un même modèle entraîné sur différentes plages de temps, commencer la mise en place du procédé pour obtenir des résultats sur des cartes entières</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-12" calcext:value-type="date">
<text:p>12.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Remplacer le système de génération de fold par <text:span text:style-name="T4">StratifiedKFold qui génère des folds en essayant de préserver la proportion de chaque classes dans les folds</text:span></text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-14" calcext:value-type="date">
<text:p>14.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Mise en place des prédictions de 2014 à 2021 sur janvier à avril et récupération des résultats. Affichage de graphe pour le total de chaque label en fonction des années.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-15" calcext:value-type="date">
<text:p>15.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T3">Réunion, dessin de la carte avec les endroits où le café est prédit et le endroits connus </text:span>de café </text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-16" calcext:value-type="date">
<text:p>16.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Dessin de la carte avec la première prédiction des labels de café connus en différentes couleurs suivant l’année</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-17" calcext:value-type="date">
<text:p>17.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer le modèle de prédiction à plusieurs sorties (labels, catégories)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-06-21" calcext:value-type="date">
<text:p>21.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p>Problème de dépendances python, avancer sur le modèle à plusieurs sorties, problème avec la pondération des classes avec un modèle à plusieurs sorties</text:p><text:p>(pas supporté dans la version de tensorflow utilisée, il faut définir une fonction de «loss» maison)</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-22" calcext:value-type="date">
<text:p>22.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion, continuer à réparer les problèmes de dépendances</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-23" calcext:value-type="date">
<text:p>23.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Ajouter une fonction de loss «categorical cross entropy» qui prend les poids des classes au modèle de multi-sorties</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-24" calcext:value-type="date">
<text:p>24.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Entraîner le modèle à plusieurs sorties avec la fonction de loss «focal loss», adapter la prédiction sur rasters pour le modèle à plusieurs sorties</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-25" calcext:value-type="date">
<text:p>25.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Adapter la prédiction sur rasters pour le modèle à plusieurs sorties et lancer une nouvelle fois la prédiction sur les rasters de 2014 à 2021, dessin de la cartes avec les catégories et choix de l’année avec un widget</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-28" calcext:value-type="date">
<text:p>28.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Utiliser imshow de matplotlib au lieu d’ipycanvas pour afficher les visualisation de cartes</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-29" calcext:value-type="date">
<text:p>29.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Faire la visualisation de la forêt remplacée par de la culture en prenant comme référence la prédiction de 2017</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-06-30" calcext:value-type="date">
<text:p>30.06.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Courte réunion, faire la visualisation de la forêt remplacée par du café en prenant comme référence la prédiction de 2017</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell office:value-type="date" office:date-value="2021-07-01" calcext:value-type="date">
<text:p>01.07.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T3">Réunion avec l’équipe du Vietnam, peaufiner les projets QGIS et compressions des fichiers de rasters (method=zstd, predictor=3) pour les envoyer à l’équipe du Vietnam</text:span>,</text:p><text:p>Lire sur la méthode de pré-entraînement «REPTILE»</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-07-02" calcext:value-type="date">
<text:p>02.07.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Commencer à regarder les jeux de données des autres régions et à les télécharger.</text:p>
</table:table-cell>
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="date" office:date-value="2021-07-05" calcext:value-type="date">
<text:p>05.07.21</text:p>
</table:table-cell>
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Réunion avec Thibaud Vantalon de l’équipe du Vietnam, essai du modèle à plusieurs sorties avec la correction par rapport à la remise à l’échelle, essai avec la collection 2 de Landsat 8 (les résultats se ressemblent)</text:p>