-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_works.bib
225 lines (203 loc) · 13.6 KB
/
my_works.bib
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
@InProceedings{Popov2023,
author = {Popov, Ruslan and Karpenko, Nadiia},
booktitle = {Promising trends of modern electronics, informational and computer systems},
date = {2023-10-22},
title = {Implementation of Visitor Pattern in C++by Using std::variant},
language = {Ukrainian},
pages = {21, 22},
url = {http://meics.dnure.dp.ua/files/MEICS-2023.pdf},
urldate = {2024-11-13},
abstract = {In this paper we presented a new way to implement the Visitor pattern in C++ by using the standard container std::variant.
We have shown how this method solves the expression problem and simplifies the creation of compilers and interpreters.
We compared the classical approach with ours and highlighted all the pros and cons of the new solution.},
crossref = {Ivanchenko2023},
file = {:Popov2023 - Implementation of Visitor Pattern in C++by Using Std__variant.pdf:PDF:http\://meics.dnure.dp.ua/files/MEICS-2023.pdf;Submitted:Visitor/Paper_Ukrainian.odt:OpenDocument text;:Visitor/Report_English.md:Markdown;:Visitor/Presentation_English.pdf:PDF;:Visitor/Paper_English.pdf:PDF},
groups = {My works or with me},
keywords = {programming languages,c++,patterns,compilers,interpreters,abstract syntax tree,parsing},
printed = {printed},
}
@InProceedings{Popov2024a,
author = {Popov, Ruslan and Karpenko, Nadiia},
booktitle = {International scientific practical conference {\guillemotleft}Information technologies and automation-- 2024{\guillemotright}},
date = {2024-10-31},
title = {Problems of Using LaTeX and BibTeX Systems in the Ukrainian Scientific Environment},
language = {Ukrainian},
abstract = {The thesis deals with the problems of using LaTeX and BibTeX systems in the scientific environment in Ukraine. It is shown that despite the high level of digitalization of the scientific process in Ukraine, these tools for preparing scientific texts and managing bibliography have not yet found wide application in Ukrainian universities. The main problems faced by researchers when using LaTeX, including software installation, Cyrillic alphabet settings, and formatting management, are investigated. The shortcomings of BibTeX are identified, in particular, the lack of an official citation style in accordance with DSTU. It is emphasized that LaTeX and BibTeX can greatly facilitate the process of writing scientific articles and managing bibliographies if the existing problems are solved. The possibilities of further implementation of these systems in scientific practice in Ukraine are discussed.},
crossref = {Kotlyk2024},
file = {Submitted:LaTeXInUkraine/Paper_Ukrainian.docx:Word 2007+;:LaTeXInUkraine/Paper_English.docx:Word 2007+},
groups = {My works or with me},
keywords = {publishing systems,bibliography management,BibTeX,LaTeX,scientific workflow,document formatting,document preparation},
}
@InProceedings{Popov2024b,
author = {Popov, Ruslan and Karpenko, Nadiia},
booktitle = {VІII International Scientific and Practical Conference "Mechatronic Systems: Innovations and Engineering"},
date = {2024-10-07},
title = {The Problem of Software Editing of Microsoft Word Documents},
language = {Ukrainian},
crossref = {Volivach2024},
file = {:WordAutomation/Paper_Ukrainian.docx:Word 2007+;:WordAutomation/Paper_English.docx:Word 2007+;:files/WordAutomation from conference proceedings.pdf:PDF:https\://zenodo.org/records/14047954},
groups = {My works or with me},
keywords = {Microsoft Word,software document editing,document templates,document workflow automation,information technology},
}
@InProceedings{Popov2024c,
author = {Popov, Ruslan and Karpenko, Nadiia},
booktitle = {IV Student Scientific and Technical Conference "information, Functional and Cybersecurity"},
date = {2024-11-29},
title = {Use of Local Language Models},
language = {Ukrainian},
comment = {NOT PUBLISHED YET},
crossref = {Kharchenko2024},
file = {:LocalLLMsRun/Paper_Ukrainian.docx:Word 2007+;:LocalLLMsRun/Paper_English.docx:Word 2007+},
groups = {My works or with me},
keywords = {large language models,small language models,application development},
}
@Article{Popov2024,
author = {Popov, R. and Karpenko, N.},
date = {2024-05},
journal = {Automation of technological and business processes},
journaltitle = {Automation of technological and business processes},
title = {Automatic Solving of Physics Word Problems},
doi = {10.15673/atbp.v16i2.2853},
issn = {2312-3125},
language = {English},
number = {2},
pages = {87--96},
url = {https://journals.ontu.edu.ua/index.php/atbp/article/view/2853},
urldate = {2024-11-13},
volume = {16},
abstract = {We present a system that solves simple physics word problems (PWPs) stated in the English language. The main feature of the system is that it is deterministic and yields a correct solution based on real physics formulas. The program generates the solution in a tabular form, showing givens, unknowns, and solution steps.
We performed a thorough analysis on the previous work in this field. Most of the research was accumulated in math word problem (MWP) solvers. We have found that these programs are not capable of solving problems from Ukrainian physics textbooks.
We identified several types of physics problems: theoretical, value conversion, value comparison, unknowns finding, value change. We developed separate problem-solving strategies for each type.
The program uses named entity recognition (NER), a technique in natural language processing (NLP), to identify key elements in the problem text. We created a set of rules for marking these entities. Then, problem type recognition is performed. Depending on the type, the list of entities is converted into the internal problem representation.
Value conversion and comparison problems are easy to handle. We developed a recursive algorithm for solving unknowns-finding problems which turned out to be a simplified version of Stanford Research Institute Problem Solver (STRIPS) algorithm. However, developing a universal algorithm for solving value-change problems presents a significant challenge. We believe this problem type belongs to the NP-hard class, indicating inherent difficulty in finding optimal solutions.
The interface of the program is a web-application. The user can type the problem text and see the solution on a web page. Additionally, the result of NER is presented.
Constructing a general problem solver is challenging. While our program can solve basic physics problems, complex problems involving forces, energy, etc., remain unsolved. However, our solver has great potential for future development. We have thoroughly analyzed its capabilities and limitations and proposed ideas for future research.},
crossref = {Artemenko},
file = {In the Journal:Popov2024 - Automatic Solving of Physics Word Problems.pdf:PDF:https\://journals.ontu.edu.ua/index.php/atbp/article/view/2853/3004;LaTeX paper:PhysicsSolver/Paper.tex:LaTeX;From LaTeX:PhysicsSolver/Paper_English.pdf:PDF},
groups = {My works or with me},
keywords = {physics word problems,automatic problem solving,natural language processing,artificial intellign,named entity recognition,word problem solving},
printed = {printed},
publisher = {Odesa National University of Technology},
}
@Proceedings{Ivanchenko2023,
date = {2023-10-22},
title = {Promising trends of modern electronics, informational and computer systems},
editor = {O. Ivanchenko},
eventdate = {2023-11-22},
eventtitle = {MEICS-2024},
isbn = {978-966-981-829-4},
language = {Ukrainian},
location = {Dnipro, Ukraine},
number = {8},
organization = {Oles Honchar Dnipro National University},
pagetotal = {262},
publisher = {PE {\guillemotleft}Lira LTD{\guillemotright}},
url = {http://meics.dnure.dp.ua},
urldate = {2024-11-13},
venue = {Dnipro, Ukraine},
abstract = {В збірник включені тези доповідей на VIII Всеукраїнській науково-практичній
конференції, яка відбулася в Дніпровському національному університеті імені Олеся
Гончара, 22-24 листопада 2023 р.},
file = {:Ivanchenko2023 - Promising Trends of Modern Electronics, Informational and Computer Systems.pdf:PDF:http\://meics.dnure.dp.ua/files/MEICS-2023.pdf;WARNING\: This is list for 2024 (and probably it will be constantly updated), unfortunately I lost 2023:MEICS-2024 invitation list.pdf:PDF:http\://meics.dnure.dp.ua/files/inf_uk.pdf},
groups = {Conferences},
printed = {printed},
year = {2023},
}
@Proceedings{Kotlyk2024,
date = {2024-10-31},
title = {XVII International scientific practical conference {\guillemotleft}Information technologies and automation-- 2024{\guillemotright}},
editor = {Kotlyk, S.},
eventdate = {2024-10-31},
eventtitle = {ITA-2024},
language = {Ukrainan, English},
organization = {Odesa National University of Technology},
url = {https://ontu.edu.ua/itia},
urldate = {2024-11-13},
venue = {Odesa, Ukraine},
volume = {17},
file = {Conference programme:files/Програма конференції по IT та автоматизації 2024.pdf:PDF:https\://ontu.edu.ua/download/konfi/2024/Program-Information-Technology-and-Automation-Program-2024.pdf;:Invit-Information-Technology-and-Automation-Program-2024.pdf:PDF:https\://ontu.edu.ua/download/konfi/2024/Invit-Information-Technology-and-Automation-Program-2024.pdf},
groups = {Conferences},
}
@Periodical{Artemenko2024,
date = {2024},
editor = {Sergiy Artemenko},
title = {Automation of technological and business processes},
issn = {2312-3125},
language = {Ukrainan, English},
url = {https://atbp.ontu.edu.ua/uk/site/archives/16_2},
urldate = {2024-11-13},
groups = {Journals},
printed = {printed},
}
@Proceedings{Volivach2024,
date = {2024-10-07},
title = {VІII International Scientific and Practical Conference "Mechatronic Systems: Innovations and Engineering" - "MSIE-2024"},
doi = {10.5281/ZENODO.14047954},
editor = {Antonina Volivach},
eventdate = {2024-10-07},
eventtitle = {MSIE-2024},
isbn = {978-617-7763-39-9},
language = {Ukrainian, English},
number = {17},
organization = {Kyiv National University of Technology and Design},
publisher = {Zenodo},
url = {https://en.msie.knutd.edu.ua/},
urldate = {2024-11-13},
venue = {Kyiv, Ukraine},
volume = {8},
author = {Злотенко Б. М., and Рубанка М. М., and Волівач А. П., and Воляник О. Ю.,},
copyright = {Creative Commons Attribution 4.0 International},
file = {:Лист_запрошення_на_конференцію_MSIE_2024 на сайт.pdf:PDF:http\://msie.knutd.edu.ua/wp-content/uploads/sites/37/2024/10/%D0%9B%D0%B8%D1%81%D1%82_%D0%B7%D0%B0%D0%BF%D1%80%D0%BE%D1%88%D0%B5%D0%BD%D0%BD%D1%8F_%D0%BD%D0%B0_%D0%BA%D0%BE%D0%BD%D1%84%D0%B5%D1%80%D0%B5%D0%BD%D1%86%D1%96%D1%8E_MSIE_2024_eng.pdf;:Тези доповідей MSIE 2024.pdf:PDF:https\://zenodo.org/records/14047954},
groups = {Conferences},
keywords = {мехатронні системи, інновації, інжиніринг},
printed = {printed},
}
@Proceedings{Kharchenko2024,
date = {2024-11-29},
title = {IV Student Scientific and Technical Conference "information, Functional and Cybersecurity"},
editor = {Vyacheslav Kharchenko},
eventdate = {2024-11-29},
eventtitle = {SCIFIC},
language = {Ukrainian, English},
organization = {National Aerospace University «Kharkiv Aviation Institute»},
url = {https://scific-conference.github.io/scific/},
urldate = {2024-11-13},
venue = {Kharkiv, Ukraine},
volume = {4},
comment = {NOT HELD YET},
file = {:files/Invitation to participate in the SCIFiC conference 2024.pdf:PDF:https\://drive.google.com/file/d/1FrwO_6XTKmL1YDzJAF4h3ZcEnj-bDpxZ/view},
groups = {Conferences},
}
@SoftwareModule{Popov2024d,
author = {Ruslan and koppor and ThiloteE and Calixtus and Christoph},
subtitle = {GSoC 2024: AI functionality in JabRef},
url = {https://summerofcode.withgoogle.com/programs/2024/projects/nFxX1kbl},
year = {2024},
file = {:/home/ruslan/Downloads/completion_certificate_2024_contributor.pdf:PDF},
organization = {JabRef e. V.},
groups = {Subworks},
keywords = {java,javafx,ollama,langchain4j,research,ai,assistant,LLM},
license = {MIT},
}
@Software{Popov2024e,
author = {Ruslan Popov and Sokha Volodymyr and et al.},
date = {2024},
editor = {Nadiia Karpenko and Gerasimov Volodymyr},
title = {AbitPortal},
language = {Ukrainian, English},
location = {Dnipro, Ukraine},
organization = {Oles Honchar Dnipro National University},
type = {software},
url = {https://abit.dnu.dp.ua},
urldate = {2024-11-13},
groups = {Subworks},
}
@Comment{jabref-meta: databaseType:biblatex;}
@Comment{jabref-meta: fileDirectory:files/;}
@Comment{jabref-meta: grouping:
0 AllEntriesGroup:;
1 StaticGroup:My works or with me\;0\;1\;0xff0000ff\;MDI_ACCOUNT\;\;;
1 StaticGroup:Conferences\;0\;1\;0xff00ffff\;MDI_ACCESS_POINT_NETWORK\;\;;
1 StaticGroup:Subworks\;0\;1\;0x008000ff\;MDI_ADJUST\;\;;
1 StaticGroup:Journals\;0\;1\;0x0000ffff\;MDI_BOOK_MULTIPLE\;\;;
}