-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjournal.log
executable file
·1013 lines (831 loc) · 31.2 KB
/
journal.log
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
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2023.6.3) 5 JUN 2023 13:37
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**journal.tex
(./journal.tex
LaTeX2e <2021-11-15> patch level 1
L3 programming layer <2022-01-21>
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2021/10/04 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2021/10/04 v1.4n Standard LaTeX file (size option)
)
\c@part=\count185
\c@section=\count186
\c@subsection=\count187
\c@subsubsection=\count188
\c@paragraph=\count189
\c@subparagraph=\count190
\c@figure=\count191
\c@table=\count192
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2021/10/15 v2.17l AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen139
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen140
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2021/08/26 v2.02 operator names
)
\inf@bad=\count193
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count194
\leftroot@=\count195
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count196
\DOTSCASE@=\count197
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box50
\strutbox@=\box51
\big@size=\dimen141
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count198
\c@MaxMatrixCols=\count199
\dotsspace@=\muskip16
\c@parentequation=\count266
\dspbrk@lvl=\count267
\tag@help=\toks17
\row@=\count268
\column@=\count269
\maxfields@=\count270
\andhelp@=\toks18
\eqnshift@=\dimen142
\alignsep@=\dimen143
\tagshift@=\dimen144
\tagwidth@=\dimen145
\totwidth@=\dimen146
\lineht@=\dimen147
\@envbody=\toks19
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2938.
LaTeX Info: Redefining \] on input line 2939.
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks21
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
))
\Gin@req@height=\dimen148
\Gin@req@width=\dimen149
)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2022-01-12 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count271
\l__pdf_internal_box=\box52
)
(./journal.aux)
\openout1 = `journal.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count272
\scratchdimen=\dimen150
\scratchbox=\box53
\nofMPsegments=\count273
\nofMParguments=\count274
\everyMPshowfont=\toks22
\MPscratchCnt=\count275
\MPscratchDim=\dimen151
\MPnumerator=\count276
\makeMPintoPDFobject=\count277
\everyMPtoPDFconversion=\toks23
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
! Missing $ inserted.
<inserted text>
$
l.57 ...ispongan en la función parametro de phen_
gen_weight_functions
?
! Missing $ inserted.
<inserted text>
$
l.58
?
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
Overfull \hbox (1.66669pt too wide) in paragraph at lines 63--64
\OT1/cmr/bx/n/10 Com-mit: 99088c5[] \OT1/cmr/m/n/10 Com-mit Mes-sage: mod-i-fi
co es-peci-fi-ci-dad del gen poniendo
[]
Overfull \hbox (12.33337pt too wide) in paragraph at lines 69--70
\OT1/cmr/bx/n/10 Com-mit: e88a0b3[] \OT1/cmr/m/n/10 Com-mit Mes-sage: prueba c
am-biando es-peci-fi-ci-dad poniendo
[]
! Missing $ inserted.
<inserted text>
$
l.72 ...o algo que al parecer estaba mal en model_
evaluating, que me confund...
?
LaTeX Warning: Command \' invalid in math mode on input line 72.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.72 ... mal en model_evaluating, que me confundí
entre las variables n_met...
?
! Missing { inserted.
<to be read again>
\begingroup
l.72 ... mal en model_evaluating, que me confundí
entre las variables n_met...
?
LaTeX Warning: Command \i invalid in math mode on input line 72.
LaTeX Warning: Command \' invalid in math mode on input line 72.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.72 ...stante inconvenientes los nombres, deberí
a cambiar por otros
?
! Missing { inserted.
<to be read again>
\begingroup
l.72 ...stante inconvenientes los nombres, deberí
a cambiar por otros
?
LaTeX Warning: Command \i invalid in math mode on input line 72.
! Missing $ inserted.
<inserted text>
$
l.73
?
! Missing } inserted.
<inserted text>
}
l.73
?
! Missing } inserted.
<inserted text>
}
l.73
?
Overfull \hbox (381.2179pt too wide) in paragraph at lines 72--73
\OT1/cmr/m/n/10 en model$[]\OML/cmm/m/it/10 valuating; quemeconfund[]$
[]
! Missing $ inserted.
<inserted text>
$
l.81 ... Message: también agrego una 'a' a un 'n_
metric' que faltaba
?
! Missing $ inserted.
<inserted text>
$
l.82
?
Overfull \hbox (43.5425pt too wide) in paragraph at lines 81--82
\OT1/cmr/bx/n/10 Com-mit: b43bb67[] \OT1/cmr/m/n/10 Com-mit Mes-sage: tambi^^S
en agrego una 'a' a un 'n$[]\OML/cmm/m/it/10 etric[]quefaltaba$
[]
! Missing $ inserted.
<inserted text>
$
l.87 ...UCIONADO. El problema estaba en calculate_
gene_parameters, que asign...
?
LaTeX Warning: Command \' invalid in math mode on input line 87.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.87 ...s el booleano a nueva_metrica pero despué
s esa variable cambiaba po...
?
LaTeX Warning: Command \' invalid in math mode on input line 87.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.87 ...espués esa variable cambiaba por el pará
metro calculado para el ge...
?
LaTeX Warning: Command \' invalid in math mode on input line 87.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.87 ...candidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
! Missing { inserted.
<to be read again>
\begingroup
l.87 ...candidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
LaTeX Warning: Command \i invalid in math mode on input line 87.
! Missing $ inserted.
<inserted text>
$
l.88
?
! Missing } inserted.
<inserted text>
}
l.88
?
Overfull \hbox (574.92065pt too wide) in paragraph at lines 87--88
\OT1/cmr/m/n/10 en calculate$[]\OML/cmm/m/it/10 ene[]arameters; queasignabamose
lbooleanoanueva[]etricaperodespu[]sesavariablecambiabaporelpar[]metrocalculadop
araelgencandidato; ahoralosolucionamosydeber[]$
[]
! Missing $ inserted.
<inserted text>
$
l.96 Commit Message: a especificidad_
del_gen le agrego la feature type_of_fu...
?
LaTeX Warning: Command \' invalid in math mode on input line 96.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.96 ...go probar si queremos exponencial, logarí
tmica o lineal
?
! Missing { inserted.
<to be read again>
\begingroup
l.96 ...go probar si queremos exponencial, logarí
tmica o lineal
?
LaTeX Warning: Command \i invalid in math mode on input line 96.
! Missing $ inserted.
<inserted text>
$
l.97
?
! Missing } inserted.
<inserted text>
}
l.97
?
Overfull \hbox (322.10179pt too wide) in paragraph at lines 96--97
\OT1/cmr/bx/n/10 Com-mit: e4d8092[] \OT1/cmr/m/n/10 Com-mit Mes-sage: a especi
ficidad$[]\OML/cmm/m/it/10 el[]enleagregolafeaturetype[]f[]unc; paraluegoprobar
siqueremosexponencial; logar[]$
[]
[2]
<n.png, id=17, 131.41095pt x 141.76965pt>
File: n.png Graphic file (type png)
<use n.png>
Package pdftex.def Info: n.png used on input line 104.
(pdftex.def) Requested size: 131.41061pt x 141.7693pt.
<docs/especificidad_accuracy_exponencial.png, id=19, 138.15614pt x 143.45595pt>
File: docs/especificidad_accuracy_exponencial.png Graphic file (type png)
<use docs/especificidad_accuracy_exponencial.png>
Package pdftex.def Info: docs/especificidad_accuracy_exponencial.png used on i
nput line 105.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.105 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.105 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
<docs/especificidad_accuracy_logaritmico.png, id=20, 138.15614pt x 143.45595pt>
File: docs/especificidad_accuracy_logaritmico.png Graphic file (type png)
<use docs/especificidad_accuracy_logaritmico.png>
Package pdftex.def Info: docs/especificidad_accuracy_logaritmico.png used on i
nput line 106.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.106 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.106 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
LaTeX Warning: `h' float specifier changed to `ht'.
<docs/j-i-k.png, id=21, 137.91525pt x 143.21506pt>
File: docs/j-i-k.png Graphic file (type png)
<use docs/j-i-k.png>
Package pdftex.def Info: docs/j-i-k.png used on input line 107.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<docs/j-i.png, id=22, 137.91525pt x 143.21506pt>
File: docs/j-i.png Graphic file (type png)
<use docs/j-i.png>
Package pdftex.def Info: docs/j-i.png used on input line 108.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<docs/jsobre1+i+k.png, id=23, 137.91525pt x 143.21506pt>
File: docs/jsobre1+i+k.png Graphic file (type png)
<use docs/jsobre1+i+k.png>
Package pdftex.def Info: docs/jsobre1+i+k.png used on input line 109.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
[3 <./n.png> <./docs/especificidad_accuracy_exponencial.png>]
! Missing $ inserted.
<inserted text>
$
l.120 ...spongan en la función parametro de phen_
gen_weight_functions
?
! Missing $ inserted.
<inserted text>
$
l.121
?
[4 <./docs/especificidad_accuracy_logaritmico.png> <./docs/j-i-k.png>]
Overfull \hbox (1.66669pt too wide) in paragraph at lines 126--127
\OT1/cmr/bx/n/10 Com-mit: 99088c5[] \OT1/cmr/m/n/10 Com-mit Mes-sage: mod-i-fi
co es-peci-fi-ci-dad del gen poniendo
[]
Overfull \hbox (12.33337pt too wide) in paragraph at lines 132--133
\OT1/cmr/bx/n/10 Com-mit: e88a0b3[] \OT1/cmr/m/n/10 Com-mit Mes-sage: prueba c
am-biando es-peci-fi-ci-dad poniendo
[]
! Missing $ inserted.
<inserted text>
$
l.135 ... algo que al parecer estaba mal en model_
evaluating, que me confund...
?
LaTeX Warning: Command \' invalid in math mode on input line 135.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.135 ...mal en model_evaluating, que me confundí
entre las variables n_met...
?
! Missing { inserted.
<to be read again>
\begingroup
l.135 ...mal en model_evaluating, que me confundí
entre las variables n_met...
?
LaTeX Warning: Command \i invalid in math mode on input line 135.
LaTeX Warning: Command \' invalid in math mode on input line 135.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.135 ...tante inconvenientes los nombres, deberí
a cambiar por otros
?
! Missing { inserted.
<to be read again>
\begingroup
l.135 ...tante inconvenientes los nombres, deberí
a cambiar por otros
?
LaTeX Warning: Command \i invalid in math mode on input line 135.
! Missing $ inserted.
<inserted text>
$
l.136
?
! Missing } inserted.
<inserted text>
}
l.136
?
! Missing } inserted.
<inserted text>
}
l.136
?
Overfull \hbox (381.2179pt too wide) in paragraph at lines 135--136
\OT1/cmr/m/n/10 en model$[]\OML/cmm/m/it/10 valuating; quemeconfund[]$
[]
[5 <./docs/j-i.png> <./docs/jsobre1+i+k.png>]
! Missing $ inserted.
<inserted text>
$
l.144 ...Message: también agrego una 'a' a un 'n_
metric' que faltaba
?
! Missing $ inserted.
<inserted text>
$
l.145
?
Overfull \hbox (43.5425pt too wide) in paragraph at lines 144--145
\OT1/cmr/bx/n/10 Com-mit: b43bb67[] \OT1/cmr/m/n/10 Com-mit Mes-sage: tambi^^S
en agrego una 'a' a un 'n$[]\OML/cmm/m/it/10 etric[]quefaltaba$
[]
! Missing $ inserted.
<inserted text>
$
l.150 ...CIONADO. El problema estaba en calculate_
gene_parameters, que asign...
?
LaTeX Warning: Command \' invalid in math mode on input line 150.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.150 ... el booleano a nueva_metrica pero despué
s esa variable cambiaba po...
?
LaTeX Warning: Command \' invalid in math mode on input line 150.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.150 ...spués esa variable cambiaba por el pará
metro calculado para el ge...
?
LaTeX Warning: Command \' invalid in math mode on input line 150.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.150 ...andidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
! Missing { inserted.
<to be read again>
\begingroup
l.150 ...andidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
LaTeX Warning: Command \i invalid in math mode on input line 150.
! Missing $ inserted.
<inserted text>
$
l.151
?
! Missing } inserted.
<inserted text>
}
l.151
?
Overfull \hbox (574.92065pt too wide) in paragraph at lines 150--151
\OT1/cmr/m/n/10 en calculate$[]\OML/cmm/m/it/10 ene[]arameters; queasignabamose
lbooleanoanueva[]etricaperodespu[]sesavariablecambiabaporelpar[]metrocalculadop
araelgencandidato; ahoralosolucionamosydeber[]$
[]
! Missing $ inserted.
<inserted text>
$
l.159 Commit Message: a especificidad_
del_gen le agrego la feature type_of_f...
?
LaTeX Warning: Command \' invalid in math mode on input line 159.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.159 ...o probar si queremos exponencial, logarí
tmica o lineal
?
! Missing { inserted.
<to be read again>
\begingroup
l.159 ...o probar si queremos exponencial, logarí
tmica o lineal
?
LaTeX Warning: Command \i invalid in math mode on input line 159.
! Missing $ inserted.
<inserted text>
$
l.160
?
! Missing } inserted.
<inserted text>
}
l.160
?
Overfull \hbox (322.10179pt too wide) in paragraph at lines 159--160
\OT1/cmr/bx/n/10 Com-mit: e4d8092[] \OT1/cmr/m/n/10 Com-mit Mes-sage: a especi
ficidad$[]\OML/cmm/m/it/10 el[]enleagregolafeaturetype[]f[]unc; paraluegoprobar
siqueremosexponencial; logar[]$
[]
File: docs/especificidad_accuracy_exponencial.png Graphic file (type png)
<use docs/especificidad_accuracy_exponencial.png>
Package pdftex.def Info: docs/especificidad_accuracy_exponencial.png used on i
nput line 166.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.166 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.166 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
File: docs/especificidad_accuracy_logaritmico.png Graphic file (type png)
<use docs/especificidad_accuracy_logaritmico.png>
Package pdftex.def Info: docs/especificidad_accuracy_logaritmico.png used on i
nput line 167.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.167 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.167 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/j-i-k.png Graphic file (type png)
<use docs/j-i-k.png>
Package pdftex.def Info: docs/j-i-k.png used on input line 168.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/j-i.png Graphic file (type png)
<use docs/j-i.png>
Package pdftex.def Info: docs/j-i.png used on input line 169.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/jsobre1+i+k.png Graphic file (type png)
<use docs/jsobre1+i+k.png>
Package pdftex.def Info: docs/jsobre1+i+k.png used on input line 170.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
Overfull \hbox (12.33337pt too wide) in paragraph at lines 178--179
\OT1/cmr/bx/n/10 Com-mit: e88a0b3[] \OT1/cmr/m/n/10 Com-mit Mes-sage: prueba c
am-biando es-peci-fi-ci-dad poniendo
[]
[6]
! Missing $ inserted.
<inserted text>
$
l.181 ... algo que al parecer estaba mal en model_
evaluating, que me confund...
?
LaTeX Warning: Command \' invalid in math mode on input line 181.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.181 ...mal en model_evaluating, que me confundí
entre las variables n_met...
?
! Missing { inserted.
<to be read again>
\begingroup
l.181 ...mal en model_evaluating, que me confundí
entre las variables n_met...
?
LaTeX Warning: Command \i invalid in math mode on input line 181.
LaTeX Warning: Command \' invalid in math mode on input line 181.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.181 ...tante inconvenientes los nombres, deberí
a cambiar por otros
?
! Missing { inserted.
<to be read again>
\begingroup
l.181 ...tante inconvenientes los nombres, deberí
a cambiar por otros
?
LaTeX Warning: Command \i invalid in math mode on input line 181.
! Missing $ inserted.
<inserted text>
$
l.182
?
! Missing } inserted.
<inserted text>
}
l.182
?
! Missing } inserted.
<inserted text>
}
l.182
?
Overfull \hbox (381.2179pt too wide) in paragraph at lines 181--182
\OT1/cmr/m/n/10 en model$[]\OML/cmm/m/it/10 valuating; quemeconfund[]$
[]
[7]
! Missing $ inserted.
<inserted text>
$
l.190 ...Message: también agrego una 'a' a un 'n_
metric' que faltaba
?
! Missing $ inserted.
<inserted text>
$
l.191
?
Overfull \hbox (43.5425pt too wide) in paragraph at lines 190--191
\OT1/cmr/bx/n/10 Com-mit: b43bb67[] \OT1/cmr/m/n/10 Com-mit Mes-sage: tambi^^S
en agrego una 'a' a un 'n$[]\OML/cmm/m/it/10 etric[]quefaltaba$
[]
! Missing $ inserted.
<inserted text>
$
l.196 ...CIONADO. El problema estaba en calculate_
gene_parameters, que asign...
?
LaTeX Warning: Command \' invalid in math mode on input line 196.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.196 ... el booleano a nueva_metrica pero despué
s esa variable cambiaba po...
?
LaTeX Warning: Command \' invalid in math mode on input line 196.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.196 ...spués esa variable cambiaba por el pará
metro calculado para el ge...
?
LaTeX Warning: Command \' invalid in math mode on input line 196.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.196 ...andidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
! Missing { inserted.
<to be read again>
\begingroup
l.196 ...andidato, ahora lo solucionamos y deberí
a funcionar todo correctam...
?
LaTeX Warning: Command \i invalid in math mode on input line 196.
! Missing $ inserted.
<inserted text>
$
l.197
?
! Missing } inserted.
<inserted text>
}
l.197
?
Overfull \hbox (574.92065pt too wide) in paragraph at lines 196--197
\OT1/cmr/m/n/10 en calculate$[]\OML/cmm/m/it/10 ene[]arameters; queasignabamose
lbooleanoanueva[]etricaperodespu[]sesavariablecambiabaporelpar[]metrocalculadop
araelgencandidato; ahoralosolucionamosydeber[]$
[]
[8]
! Missing $ inserted.
<inserted text>
$
l.205 Commit Message: a especificidad_
del_gen le agrego la feature type_of_f...
?
LaTeX Warning: Command \' invalid in math mode on input line 205.
! Please use \mathaccent for accents in math mode.
\add@accent ... \let \ignorespaces \relax \accent
#1 #2\egroup \ifmmode \els...
l.205 ...o probar si queremos exponencial, logarí
tmica o lineal
?
! Missing { inserted.
<to be read again>
\begingroup
l.205 ...o probar si queremos exponencial, logarí
tmica o lineal
?
LaTeX Warning: Command \i invalid in math mode on input line 205.
! Missing $ inserted.
<inserted text>
$
l.206
?
! Missing } inserted.
<inserted text>
}
l.206
?
Overfull \hbox (322.10179pt too wide) in paragraph at lines 205--206
\OT1/cmr/bx/n/10 Com-mit: e4d8092[] \OT1/cmr/m/n/10 Com-mit Mes-sage: a especi
ficidad$[]\OML/cmm/m/it/10 el[]enleagregolafeaturetype[]f[]unc; paraluegoprobar
siqueremosexponencial; logar[]$
[]
File: docs/especificidad_accuracy_exponencial.png Graphic file (type png)
<use docs/especificidad_accuracy_exponencial.png>
Package pdftex.def Info: docs/especificidad_accuracy_exponencial.png used on i
nput line 212.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.212 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.212 .../especificidad_accuracy_exponencial.png.}
\end{figure}
?
File: docs/especificidad_accuracy_logaritmico.png Graphic file (type png)
<use docs/especificidad_accuracy_logaritmico.png>
Package pdftex.def Info: docs/especificidad_accuracy_logaritmico.png used on i
nput line 213.
(pdftex.def) Requested size: 138.15579pt x 143.45558pt.
! Missing $ inserted.
<inserted text>
$
l.213 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
! Missing $ inserted.
<inserted text>
$
l.213 .../especificidad_accuracy_logaritmico.png.}
\end{figure}
?
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/j-i-k.png Graphic file (type png)
<use docs/j-i-k.png>
Package pdftex.def Info: docs/j-i-k.png used on input line 214.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/j-i.png Graphic file (type png)
<use docs/j-i.png>
Package pdftex.def Info: docs/j-i.png used on input line 215.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
File: docs/jsobre1+i+k.png Graphic file (type png)
<use docs/jsobre1+i+k.png>
Package pdftex.def Info: docs/jsobre1+i+k.png used on input line 216.
(pdftex.def) Requested size: 137.9149pt x 143.21469pt.
LaTeX Warning: `h' float specifier changed to `ht'.
[9] [10] [11] (./journal.aux) )
Here is how much of TeX's memory you used:
2018 strings out of 480247
31139 string characters out of 5896152
321932 words of memory out of 5000000
19973 multiletter control sequences out of 15000+600000
474642 words of font info for 47 fonts, out of 8000000 for 9000
14 hyphenation exceptions out of 8191
55i,6n,62p,312b,219s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texlive/texmf-dist/fonts/type1/publi
c/amsfonts/cm/cmbx10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsf