-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2371 lines (1879 loc) · 69.2 KB
/
index.html
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
<html><head><link rel=stylesheet type=text/css href=style.css></head><body>
<h1>2024</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Rico2024SiteSelection">7</a>]
</td>
<td class="bibtexitem">
E. Rico, J. Rabajante, J. Tubay, A. Lapitan, and V. R. Madrid, <b>A
multi-objective site selection model for evacuation centers in taguig city,
philippines</b>, Natural Hazards, (2024).
(Journal Paper).
[ <a href="https://link.springer.com/article/10.1007/s11069-024-06485-5">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Justo2024TextSimplification">6</a>]
</td>
<td class="bibtexitem">
J. Justo and R. Recario, <b>Text simplification system for legal
contract review</b>, in Future of Information and Communication Conference,
2024, pp. 105--123.
(Conference Paper).
[ <a href="https://link.springer.com/chapter/10.1007/978-3-031-53960-2_8">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Valencia2024NonTransfer">5</a>]
</td>
<td class="bibtexitem">
R. Valencia and R. Recario, <b>A non-transfer learning approach in
exploring the variations of extractive summarization components for a
low-resource language</b>, in Future of Information and Communication
Conference, 2024, pp. 519--537.
(Conference Paper).
[ <a href="https://link.springer.com/chapter/10.1007/978-3-031-53960-2_33">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Gabud2024Unsupervised">4</a>]
</td>
<td class="bibtexitem">
R. Gabud, P. Lapitan, V. Mariano, E. Mendoza, N. Pampolina, M. A. A.
Clariño, and R. Batista-Navarro, <b>Unsupervised literature mining
approaches for extracting relationships pertaining to habitats and
reproductive conditions of plant species</b>, Frontiers in Artificial
Intelligence, 7 (2024), p. 1371411.
(Journal Paper).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Lagrosas2024Peanut">3</a>]
</td>
<td class="bibtexitem">
S. D. D. Lagrosas and L. K. R. Lactuan, <b>Peanut mold detection via
marker-based watershed segmentation and an artificial neural network with
feedforward backpropagation</b>, Philippine e-Journal for Applied Research and
Development, 14 (2024), pp. 1--14.
(Journal Paper).
[ <a href="https://pejard.slu.edu.ph/vol.14/2024.01.12.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hoa2023KnowledgeDistillation">2</a>]
</td>
<td class="bibtexitem">
T. X. Hoa, T. T. Thuong, M. A. A. D. Clariño, V. Y. Mariano, V. R. M.
Madrid, and R. M. H. Borromeo, <b>3dkd - an effective knowledge
distillation-based model for human fall detection</b>, 2023 RIVF International
Conference on Computing and Communication Technologies (RIVF), (2023),
pp. 89--94.
(Journal Paper; Scopus-indexed, Date Added to IEEE Xplore: 22 March
2024).
[ <a href="http://dx.doi.org/10.1109/RIVF60135.2023.10471785">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Gabud2023Hybrid">1</a>]
</td>
<td class="bibtexitem">
R. Gabud, P. Lapitan, V. Mariano, E. Mendoza, N. Pampolina, M. A. A.
Clariño, and R. Batista-Navarro, <b>A hybrid of rule-based and
transformer-based approaches for relation extraction in biodiversity
literature</b>, Proceedings of the 2nd Workshop on Pattern-based Approaches to
NLP in the Age of Deep Learning, (2023), pp. 103--113.
(Journal Paper; Scopus-indexed: June 2024).
</td>
</tr>
</table><hr><p>
<h1>2023</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Trieu2023DKD">11</a>]
</td>
<td class="bibtexitem">
H. X. Trieu, M. A. A. D. Clariño, V. Y. Mariano, V. R. M. Madrid,
R. M. H. Borromeo, and T. T. Tran, <b>3dkd - an effective knowledge
distillation-based model for human fall detection</b>, in 2023 RIVF
International Conference on Computing and Communication Technologies,
December 23-25 2023.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Gabud2023Hybrid">10</a>]
</td>
<td class="bibtexitem">
R. Gabud, P. Lapitan, V. Mariano, E. Mendoza, N. Pampolina, M. A. A.
Clariño, and R. T. Batista-Navarro, <b>A hybrid of rule-based and
transformer-based approaches for relation extraction in biodiversity
literature</b>, in Proceedings of the 2nd Workshop on Pattern-based Approaches
to NLP in the Age of Deep Learning, December 2023, pp. 103--113.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Recario2023HINAY">9</a>]
</td>
<td class="bibtexitem">
R. N. Recario and D. P. M. Aguilar, <b>Hinay: A mobile application for
real-time traffic sign detection</b>, in Computing Conference 2023, London, June
22-23 2023.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Isungga2023QR">8</a>]
</td>
<td class="bibtexitem">
E. Isungga, C. Khan, and R. Recario, <b>A qr code-based digital contact
tracing system for covid-19</b>, in 23rd PCSC, U San Jose-Recoletos, Cebu City,
23-24 March 2023.
(poster).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Cantos2023KARMO">7</a>]
</td>
<td class="bibtexitem">
J. Cantos and V. Madrid, <b>Kar-mo kolektib: An automated vehicle data
miner using computer vision</b>, in 23rd PCSC, U San Jose-Recoletos, Cebu City,
23-24 March 2023.
(poster).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Tumpalan2023English">6</a>]
</td>
<td class="bibtexitem">
J. Tumpalan and R. Recario, <b>English-filipino speech topic tagger
using automatic speech recognition modeling and topic modeling</b>, in Advances
in Information and Communication. FICC 2023, vol. 652, 2023, p. 427–445.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Alcantara2023Agent">5</a>]
</td>
<td class="bibtexitem">
E. P. Alcantara and A. J. Jacildo, <b>Agent-based modeling for insect
resistance management</b>, in ISSAAS International Scientific Congress and
General Meeting 2023 “Integrated Management of Southeast Asian Agricultural
Landscapes”, Acacia Hotel Manila, Alabang, Muntinlupa City, Philippines,
8-10 Nov 2023.
(poster).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hao2023BANATECH">4</a>]
</td>
<td class="bibtexitem">
A. Hao and et al., <b>Banatech: A data-driven progressive web
application for lakatan and saba/cardaba harvest date estimation</b>, in
International Society for Southeast Asian Agricultural Sciences (ISSAAS)
International Scientific Congress & General Meeting, Nov 9 2023.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Mangaoang2023LeafBased">3</a>]
</td>
<td class="bibtexitem">
E. V. D. Mangaoang and J. M. Samaniego, <b>Leaf-based classification of
important indigenous tree species by different feature extraction techniques
and selected classification algorithms</b>, International Journal of Advanced
Computer Science and Applications (IJACSA), 14 (2023), pp. 35--41.
[ <a href="https://thesai.org/Publications/ViewPaper?Volume=14&Issue=1&Code=IJACSA&SerialNo=4">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2023AgentBased">2</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, L. Barua, P. J. Ramirez, C. T. Jr., and N. Bantayan, <b>An
agent-based model of a sustainable forest operation in a theoretical lowland
dipterocarp forest modeled after mount makiling forest reserve, philippines</b>,
Forests, 14 (2023), p. 428.
[ <a href="http://dx.doi.org/10.3390/f14020428">DOI</a> |
<a href="https://doi.org/10.3390/f14020428">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Geronimo2023Automated">1</a>]
</td>
<td class="bibtexitem">
J. O.-N. V. Geronimo, E. D. Arguelles, and K. J. M. Abriol-Santos, <b>
Automated classification and identification system for freshwater algae using
convolutional neural networks</b>, Philipp J Sci, 152 (2023), p. 325–335.
[ <a href="http://dx.doi.org/10.56899/152.01.25">DOI</a> |
<a href="https://doi.org/10.56899/152.01.25">http</a> ]
</td>
</tr>
</table><hr><p>
<h1>2022</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Catayna2022Sentiment">8</a>]
</td>
<td class="bibtexitem">
C. R. Catayna and M. A. A. D. Clariño, <b>Sentiment analysis and topic
classification of twitter-based data set on the face-to-face classes
resumption in the philippines during the covid-19 pandemic</b>, in 2022 2nd
International Conference in Information and Computing Research (iCORE), IEEE,
December 2022, pp. 39--44.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Cruz2022Agent">7</a>]
</td>
<td class="bibtexitem">
J. I. N. G. Cruz and M. A. A. D. Clariño, <b>An agent-based modeling
and simulation tool for the exploration of the effects of masks and vaccines
on covid-19 spread</b>, in 2022 2nd International Conference in Information and
Computing Research (iCORE), IEEE, December 2022, pp. 60--65.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2022Dynamic">6</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, M. Saqalli, B. Gaudou, P. Bannwart, and F. Loup-Hadamard, <b>
A dynamic reconstitution of the vegetation of a pre-neolithic french
mediterranean territory using plant functional types</b>, in 42e Rencontres
Internationales d’Archéologie et d’Histoire de Nice Côte d’Azur «
DYNAMIQUES DES PEUPLEMENTS, DES TERRITOIRES ET DES PAYSAGES : BILAN ET
PERSPECTIVES EN ARCHEOLOGIE SPATIALE. HOMMAGE A JEAN-LUC FICHES », Nice,
France, October 12-14 2022.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Ramirez2022Development">5</a>]
</td>
<td class="bibtexitem">
R. C. Ramirez, E. S. Agulto, S. D. Glaser, Z. Zhang, J. A. C. Hermocilla,
and V. B. Ella, <b>Development of a real-time wireless sensor
network-based information system for efficient irrigation of upland and
lowland crop production systems</b>, IOP Conference Series: Earth and
Environmental Science, 1038 (2022), p. 012028.
[ <a href="https://jachermocilla.org/publications/ramirez-iopscience2022-development.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2022Reconstituting">4</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, P. Bannwart, F. Loup-Hadamard, M. Cahierre, J. Azuara, et al.,
<b>Reconstituting a pre-neolithic territory by implementing plant
functional types: Application to the roussillon territory (france)</b>, in
International Environmental Modelling and Software Society (iEMSs 2022),
Bruxelles, Belgium, Jul 2022.
⟨hal-03724876⟩.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2022Visualizing">3</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, B. Gaudou, M. Saqalli, B. Nathaniel, B. Leonardo, et al., <b>
Visualizing abm submodels to promote stakeholder participation: A look into
sustainable forest operations</b>, in International Environmental Modelling and
Software Society (iEMSs 2022), Bruxelles, Belgium, Jul 2022.
⟨hal-03724897⟩.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Mendoza2022Automated">2</a>]
</td>
<td class="bibtexitem">
R. Mendoza, A. Jacildo, V. Madrid, R. Mercado, A. Romano, A. Cantalejo.,
L. Urriza, V. Daracan, and R. Manalo, <b>Automated classification of
selected philippine wood species using image analysis and artificial neural
networks</b>, Philippine Journal of Science (PJS), (2022).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Abrera2022Molecular">1</a>]
</td>
<td class="bibtexitem">
A. T. Abrera, M. A. Castrosanto, J. A. C. Hermocilla, and M. N. Manalo,
<b>Molecular docking of ecdysone agonists and limonoid components of
calamondin seeds to tobacco budworm ecdysone receptor</b>, KIMIKA, 33 (2022),
pp. 09--19.
[ <a href="https://jachermocilla.org/publications/abrera-kimika2022-molecular.pdf">.pdf</a> ]
</td>
</tr>
</table><hr><p>
<h1>2021</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fernandez2021">16</a>]
</td>
<td class="bibtexitem">
J. Fernandez and M. Clariño, <b>Image-based crop leaf disease
identification using convolutional neural network (cnn)</b>, Philippine
Computing Journal, Vol XVI (2021).
[Accepted for publication].
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Urriza2021">15</a>]
</td>
<td class="bibtexitem">
I. M. Urriza and M. A. A. Clariño, <b>Aspect-based sentiment analysis
of user created game reviews</b>, 2021 24th Conference of the Oriental COCOSDA
International Committee for the Co-ordination and Standardisation of Speech
Databases and Assessment Techniques (O-COCOSDA), (2021), pp. 76--81.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Tran2021">14</a>]
</td>
<td class="bibtexitem">
T. Tran and M. A. A. Clariño, <b>Solving multi-pickup and delivery
problem with time windows using ant colony optimization</b>, Journal of
Telecommunication, Electronic and Computer Engineering (JTEC), 13 (2021),
pp. 35--41.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hoa2021">13</a>]
</td>
<td class="bibtexitem">
T. X. Hoa, V. R. M. Madrid, and E. A. Albacea, <b>A lightweight model
for falling detection</b>, in 2021 RIVF International Conference on Computing
and Communication Technologies (RIVF), IEEE, August 2021, pp. 1--5.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Ignacio2021">12</a>]
</td>
<td class="bibtexitem">
J. C. I. Ignacio, M. Zaidem, C. C. Jr., S. Dixit, T. Kretzschmar, J. M.
Samaniego, M. S. Mendioro, D. Weigel, and E. M. Septiningsih, <b>Genetic
mapping by sequencing more precisely detects loci responsible for anaerobic
germination tolerance in rice</b>, Plants, 10 (2021), p. 705.
[Special Issue on Genomics, Genetics, and Breeding for Rice Crop
Improvement].
[ <a href="https://www.mdpi.com/2223-7747/10/4/705/pdf">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Alcantara2021">11</a>]
</td>
<td class="bibtexitem">
E. Alcantara, A. Jacildo, J. Rabajante, L. Portales, J. Adorada, and
B. Caoili, <b>Insect resistance management of Bt corn in the Philippines</b>,
CSIRO Publishing, February 2021, p. 165.
[Abstract].
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Recario2021">10</a>]
</td>
<td class="bibtexitem">
R. Recario, L. Talip, R. Cruz, M. Layones, and R. P. et al., <b>
Examining sona 2020-related tweets through sentiment analysis</b>, in Linguistic
Society of the Philippines International Conference, 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2021c">9</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, B. Leonardo, R. Paul, T. C. Jr, and B. Nathaniel, <b>An
agent-based model of a sustainable forest operation: A case of a low mountain
dipterocarp forest in the philippines</b>, in G1st conference GAMA Days 2021,
Jun 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2021b">8</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, P. Bannwart, F. Loup-Hadamard, M. Cahierre, Z. Iguenad, and
et al., <b>Landscape, vegetation and resources' modeling : reconstituting
the pre-neolithic roussillon territory (france) and its vegetation by
implementing plant functional types, hydrosystems and climate into a cellular
automaton</b>, in GAMA Days 2021, Jun 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Arnejo2021a">7</a>]
</td>
<td class="bibtexitem">
Z. Arnejo, J. Pabico, and N. Bantayan, <b>Automated detection of
coconut palm encroachment in the mt. makiling forest reserve in laguna,
philippines</b>, in Proceedings of the IEEE Eight International Conference on
Communications and Electronics (IEEE ICCE 2020), S. Bahk, P. Tran-Gia, J. der
Spiegel, and N. Quynh, eds., Novotel Phu Quoc Resort, Phu Quoc Island,
Vietnam, 13-15 January 2021, pp. 686--691.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Mojar2021">6</a>]
</td>
<td class="bibtexitem">
M. K. Mojar and V. R. Madrid, <b>Convxt: A convolutional neural network
express tool for image classification applications</b>, in ACRES 2021, 24 Sept
2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Grajo2021">5</a>]
</td>
<td class="bibtexitem">
G. Grajo and C. C. Cepe, <b>Comparative analysis of packing algorithms
for the tetris problem and game</b>, in ACRES 2021, 24 Sept 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Cuevas2021">4</a>]
</td>
<td class="bibtexitem">
A. N. Cuevas and V. R. Madrid, <b>Detecting leafminer damage in images
of eggplant leaves using convolutional neural networks</b>, in ACRES 2021, 24
Sept 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Era2021">3</a>]
</td>
<td class="bibtexitem">
C. D. Era, A. Jacildo, and J. C. Ignacio, <b>Pevar: Automated pedigree
verification of rice</b>, in ACRES 2021, 24 Sept 2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Anacleto2021">2</a>]
</td>
<td class="bibtexitem">
M. R. Anacleto, A. K. Macaraeg, J. Gaudillo, L. R. Baltazar, B. Tiangco,
and J. Albia, <b>Developing open-source data repository solutions for
cancer research in the philippines: A brief review</b>, in ACRES 2021, 24 Sept
2021.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Oliveros2021">1</a>]
</td>
<td class="bibtexitem">
K. Oliveros, A. Rosana, A. Montecillo, R. Opulencia, A. Jacildo,
T. Zulaybar, and A. Raymundo, <b>Genomic insights into the antimicrobial
and anticancer potential of streptomyces sp. a1-08 isolated from volcanic
soils of mount mayon, philippines</b>, Philippine Journal of Science, (2021).
[Accepted for publication in the December 2021 Issue].
</td>
</tr>
</table><hr><p>
<h1>2020</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="mendiola2020building">9</a>]
</td>
<td class="bibtexitem">
R. L. Mendiola, C. Bucu-Flores, and C. Khan, <b>Building a
filipino-english bilingual knowledge taxonomy using clustering: Towards
cross-lingual word embedding model integration of local aanr knowledge</b>, in
3rd Information and Computing Education Conference (CSP-ICE 2020), 2020.
(Conference Paper; Best Paper).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="hao2020deep">8</a>]
</td>
<td class="bibtexitem">
A. J. Hao, C. Khan, R. V. Cruz, and D. Mercado, <b>Deep learning
approach to land cover classification using multitemporal sentinel-1 sar
images of quinali a watershed</b>, in 3rd Information and Computing Education
Conference (CSP-ICE 2020), 2020.
(Conference Paper; Best Paper Honorable Mention).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="fernandez2020image">7</a>]
</td>
<td class="bibtexitem">
J. Fernandez and M. A. A. Clariño, <b>Image-based crop leaf disease
identification using convolutional neural network (cnn)</b>, in 3rd Information
and Computing Education Conference (CSP-ICE 2020), 2020.
(Conference Paper; Best Paper Honorable Mention).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="queliste2020design">6</a>]
</td>
<td class="bibtexitem">
M. D. Queliste, J. A. C. Hermocilla, and J. P. Pabico, <b>Design and
implementation of an autonomous surface vehicle platform for water quality
monitoring</b>, in Proceedings of the 20th Philippine Computing Science Congress
(PCSC 2020), Philippines, 2020, Computing Society of the Philippines,
pp. 14--25.
(Conference Paper).
[ <a href="https://jachermocilla.org/publications/queliste-pcsc2020-design.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="derobles2020characterization">5</a>]
</td>
<td class="bibtexitem">
M. B. B. de Robles, J. A. C. Hermocilla, and J. P. Pabico, <b>
Characterization and classification of malware traffic over the tor network</b>,
in Proceedings of the 20th Philippine Computing Science Congress (PCSC 2020),
Philippines, 2020, Computing Society of the Philippines, pp. 78--87.
(Conference Paper).
[ <a href="https://jachermocilla.org/publications/derobles-pcsc2020-characterization.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="jaen2020design">4</a>]
</td>
<td class="bibtexitem">
K. J. Jaen and J. Pabico, <b>Design and implementation of a graph-based
database system for virtual reality museums and heritage sites applications</b>,
in PCSC 2020, 2020.
(Conference Paper).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="balangcod2020automatic">3</a>]
</td>
<td class="bibtexitem">
A. K. Balangcod and J. Pabico, <b>Automatic identification of selected
dicot plant species using graph properties from leaf venations</b>, in PCSC
2020, 2020.
(Conference Paper).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="carandang2020web">2</a>]
</td>
<td class="bibtexitem">
M. G. C. B. Carandang, <b>Web application for managing insecticide
resistance of mango pests in the philippines</b>, Philippine e-Journal for
Applied Research and Development, 10 (2020), pp. B:1--8.
(Journal Paper).
[ <a href="http://pejard.slu.edu.ph/vol.10/2020.10.02.pdf">.pdf</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="bawagan2020kidney">1</a>]
</td>
<td class="bibtexitem">
J. M. J. Bawagan, <b>A kidney exchange matching application using the
blossom and hungarian algorithms for pairwise and multiway matching</b>, Indian
Journal of Science & Technology, 13 (2020).
(Journal Paper).
[ <a href="http://www.indjst.org/index.php/indjst/article/view/149446/104588">http</a> ]
</td>
</tr>
</table><hr><p>
<h1>2019</h1>
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="albacea2019restructuring">32</a>]
</td>
<td class="bibtexitem">
J. P. V. J. Albacea and J. M. Samaniego, <b>Restructuring loosely
structured databases for generating local statistics</b>, Indian Journal of
Science & Technology, 12 (2019).
[ <a href="http://www.indjst.org/index.php/indjst/article/view/148891">http</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ronquillo2019measuring">31</a>]
</td>
<td class="bibtexitem">
C. Ronquillo and R. N. Recario, <b>Measuring transcript relevance and
certainty through sentence classification and semantic similarity analysis</b>,
Philippine Computing Journal, X1V (2019).
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="luna2019classification">30</a>]
</td>
<td class="bibtexitem">
K. B. De Luna and D. J. Mercado, <b>Classification of filipino
meteorological disaster-related tweets using convolutional neural networks</b>,
in The Southeast Asian University Consortium for Graduate Education in
Agriculture and Natural Resources (UC) First Faculty Forum, SEARCA, UPLB,
July 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="queliste2019odetteForum">29</a>]
</td>
<td class="bibtexitem">
M. Queliste, J. Hermocilla, and J. Pabico, <b>Odette: An autonomous
water quality surface vehicle platform for water quality monitoring</b>, in The
Southeast Asian University Consortium for Graduate Education in Agriculture
and Natural Resources (UC) First Faculty Forum, SEARCA, UPLB, July 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="balangcod2019levexAccepted">28</a>]
</td>
<td class="bibtexitem">
A. K. D. Balangcod, L. Licnachan, D. J. Mercado, J. M. Samaniego, and
J. P. Pabico, <b>Levex: a tool for leaf venation extraction using image
processing</b>, in Accepted in 11th Flora Malesiana Symposium, University of
Brunei Darussalam, June 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="tan2019stock">27</a>]
</td>
<td class="bibtexitem">
K. Tan and M. Clariño, <b>Stock market sentiment analysis using
finance related tweets towards stock price analysis</b>, in 15th National
Natural Language Processing Research Symposium (15NNLPRS), Bicol University,
Legazpi, March 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="ronquillo2019transcript">26</a>]
</td>
<td class="bibtexitem">
C. Ronquillo and R. Recario, <b>Transcript relevance and certainty
verification through sentence classification and semantic similarity
analysis</b>, in 15th National Natural Language Processing Research Symposium
(15NNLPRS), Bicol University, Legazpi, March 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="carajay2019cuap">25</a>]
</td>
<td class="bibtexitem">
A. Carajay, J. Angeles, R. Marcelino, M. Clarino, K. Abriol-Santos, and
J. Samaniego, <b>Cuap: A software package for codon usage patterns
analysis</b>, in PCSC 2019, National University, Manila, March 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="pabico2019word">24</a>]
</td>
<td class="bibtexitem">
height 2pt depth -1.6pt width 23pt, <b>The word adjacency
network of pdu30’s first sona</b>, in 3rd UPLB Interdisciplinary Humanities
Research Conference (IHRC 2019), 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="delaRosa2019stitching">23</a>]
</td>
<td class="bibtexitem">
D. dela Rosa, L. Lactuan, K. Jaen, M. Caraan, et al., <b>Stitching
images for surround viewing: A review and demonstration of state-of-the-art</b>,
in 3rd UPLB Interdisciplinary Humanities Research Conference (IHRC 2019),
2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="vaethbrueckner2019geotaggingLaguna">22</a>]
</td>
<td class="bibtexitem">
J. Vaethbrueckner, M. Caraan, K. Jaen, D. dela Rosa, et al., <b>
Geotagging and mapping of rizal monuments in laguna</b>, in 3rd UPLB
Interdisciplinary Humanities Research Conference (IHRC 2019), 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="jaen2019digital">21</a>]
</td>
<td class="bibtexitem">
K. Jaen, D. dela Rosa, M. Caraan, J. Vaethbrueckner, et al., <b>Design
of a digital repository for 360-degree images</b>, in 3rd UPLB Interdisciplinary
Humanities Research Conference (IHRC 2019), 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="caraan2019anaglipo">20</a>]
</td>
<td class="bibtexitem">
M. Caraan, J. Vaethbrueckner, K. Jaen, D. dela Rosa, et al., <b>
Anaglipo ng bahay ni rizal sa calamba</b>, in 3rd UPLB Interdisciplinary
Humanities Research Conference (IHRC 2019), 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="arnejo2019automated">19</a>]
</td>
<td class="bibtexitem">
Z. Arnejo and J. Pabico, <b>Automated detection and counting of coconut
palm in aerial images</b>, in ASTHRDP Graduate Scholar's Conference, 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="pabico2019leveling">18</a>]
</td>
<td class="bibtexitem">
height 2pt depth -1.6pt width 23pt, <b>Leveling the
learning field: Augmenting traditional classrooms with virtual worlds</b>, in
First National Conference on Inclusive Education, 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="estremos2019artificial">17</a>]
</td>
<td class="bibtexitem">
M. Estremos and J. Pabico, <b>An 'artificial eye' for supporting the
mobility of visually impaired</b>, in First National Conference on Inclusive
Education, 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="balangcod2019levex">16</a>]
</td>
<td class="bibtexitem">
A. Balangcod, L. Licnachan, D. Mercado, J. Samaniego, and J. Pabico, <b>
Levex: A tool for leaf venation extraction using image processing</b>, in Flora
Malesiana Symposium 11, 2019.
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="pabico2019ict">15</a>]
</td>
<td class="bibtexitem">
height 2pt depth -1.6pt width 23pt, <b>Ict and computing in