-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.tex
149 lines (105 loc) · 3.78 KB
/
text.tex
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
%-----------------------------------------------------------------------
% Document setup.
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english,russian]{babel}
% Поля нормального размера.
\usepackage{fullpage}
% Первый абзац после заголовка раздела с отступом строки.
\usepackage{indentfirst}
\frenchspacing
\sloppy
%-----------------------------------------------------------------------
% Document body.
\begin{document}
% Half-line paragraph separation.
\setlength{\parskip}{.5\baselineskip}
% No page number at this page.
\thispagestyle{empty}
\begin{center}
Московский Государственный Университет
имени М. В. Ломоносова
Факультет вычислительной математики и кибернетики
Кафедра системного программирования
\vfill
\vfill
\Large
\textbf{
Распознавание именованных сущностей \linebreak
с использованием алгоритмов машинного обучения, \linebreak
основанных на принципе минимальной длины описания
}
\large
\hspace{0pt}
\linebreak
\textit{курсовая работа}
\normalsize
\vfill
\vfill
\begin{flushright}
Выполнил:
Студент NNN-й группы
Шалаев Михаил Михайлович
% Просто пустой абзац.
\hspace{0pt}
Научный руководитель:
Белобородов Иван Борисович
\end{flushright}
\vfill
Москва \\
2013
\end{center}
\clearpage
\tableofcontents
\clearpage
\section{Введение}
\clearpage
\section{Обзор предметной области}
\clearpage
\section{Проектирование}
\clearpage
\section{Описание системы}
\clearpage
\section{Заключение}
\clearpage
\begin{thebibliography}{9}
% Чтобы список литературы был в содержании.
\addcontentsline{toc}{section}{Список литературы}
\bibitem{collins2002a}
Collins, M., 2002.
Ranking Algorithms for Named–Entity Extraction:
Boosting and the Voted Perceptron.
\textit{Proceedings of the 40th Annual Meeting on Association for
Computational Linguistics}, pp. 489–496.
\bibitem{collins2002b}
Collins, M., 2002.
Discriminative training methods for hidden Markov models:
theory and experiments with perceptron algorithms.
\textit{Proceedings of the ACL-02 conference on Empirical methods in
natural language processing}, pp. 1–8.
\bibitem{lafferty2001}
Lafferty, J., McCallum, A. and Pereira, F., 2001.
Conditional Random Fields: Probabilistic Models for Segmenting and
Labeling Sequence Data. \textit{Proceedings of the Eighteenth
International Conference on Machine Learning}, pp. 282–289.
\bibitem{mccallum2000}
McCallum, A., Freitag, D. and Pereira, F., 2000.
Maximum Entropy Markov Models for Information Extraction and
Segmentation. \textit{Proceedings of the Seventeenth International
Conference on Machine Learning}, pp. 591–598.
\bibitem{nadeua2007}
Nadeau, D. and Sekine, S., 2007.
A survey of named entity recognition and classification.
\textit{Lingvisticae Investigationes}, 30 (1), pp. 3–26.
\bibitem{ratinov2009}
Ratinov, L. and Roth, D., 2009.
Design Challenges and Misconceptions in Named Entity Recognition.
\textit{Proceedings of the Thirteenth Conference on Computational
Natural Language Learning}, pp. 147–155.
\bibitem{rissanen1983}
Rissanen, J., 1983.
A Universal Prior for Integers and Estimation by Minimum Description
Length. \textit{The Annals of Statistics}, 11 (2), pp. 416–431.
\end{thebibliography}
\end{document}
%-----------------------------------------------------------------------