Skip to content

Commit f26bc15

Browse files
author
bakhteev
committed
Code
1 parent b1c2540 commit f26bc15

File tree

298 files changed

+4671
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

298 files changed

+4671
-0
lines changed

Gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll', '~> 3.9'
4+
gem 'coderay', '~> 1.1.3'
5+
gem 'jekyll-toc', '~> 0.17.1'
6+
gem 'kramdown-parser-gfm'
7+
gem 'jekyll-sitemap'
8+
9+
group :jekyll_plugins do
10+
gem 'jekyll-asciidoc', '~> 2.1.1'
11+
gem 'jekyll-feed', '~> 0.6'
12+
gem 'jekyll-multiple-languages-plugin', '~> 1.7.0'
13+
end

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2015-2019 Titipat Achakulvisut, Daniel Acuna, Konrad Kording
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Machine Learning Phystech WebSite
2+
3+
## Добавление курса: TODO --- сейчас не актуально
4+
Для добавления нового курса требуется создать файл `course_name.md` в папке `_course/`. Далее требуется заполнить метаинформацию о курсе:
5+
```
6+
---
7+
title: Сюда вписать названия курса (название которое во вкладке браузера )
8+
name: Продублировать название курса (название которое будет на сайте)
9+
type: bachelor (курс из бакалавриата или магистратуры, валидные поля bachelor/master)
10+
avatar: название изображению в папке images/course (если поле пустое, то будет взято default.jpg изображение)
11+
lecturers: лекторы через запятую, в качестве идентификатора использовать название файлов (без приставки .md) в папке _people (например strijov_vv,grabovoy_av)
12+
site: основной сайт курса (можно не указывать), ВАЖНО! Без приставки https://
13+
---
14+
```
15+
16+
После заполенения метаинформации требуется указать описание самого курса в формате markdown.
17+
18+
## Добавление пользователя: TODO --- сейчас не актуально
19+
Для добавления нового пользователя требуется создать файл `lecturer_name.md` в папке `_people/`. Далее требуется заполнить метаинформацию о лекторе:
20+
```
21+
---
22+
title: Сюда вписать имя фамилию преподавателя (название которое во вкладке браузера )
23+
name: Продублировать имя преподавателя (так как на сайте будет)
24+
position: phd (начная степень преподавателя или должность, возможные значения смотрите тут https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_config.yml#L81)
25+
avatar: название изображению в папке images/people (если поле пустое, то будет взято default.jpg изображение)
26+
mail: почта преподавателя (может быть пусто)
27+
site: сайт преподавателя (может быть пусто)
28+
scholar: ссылка на scholar (может быть пусто)
29+
---
30+
```
31+
32+
Вся дополнительная информация указывается ниже в формате markdown.
33+
34+
## Исправления текста локализации en/ru
35+
36+
Английский язык: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/en.yml)
37+
38+
Русский язык: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/ru.yml)
39+
40+
## Изменения страницы HOME
41+
42+
Метаинформация страницы: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/edit/master/index.md)
43+
44+
Английская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/en/index.md)
45+
46+
Русская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/ru/index.md)
47+
48+
## Изменения страницы ABOUT
49+
50+
Метаинформация страницы: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/edit/master/about.md)
51+
52+
Английская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/en/about.md)
53+
54+
Русская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/ru/about.md)
55+
56+
## Изменения страницы Admission
57+
58+
Метаинформация страницы: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/edit/master/admission.md)
59+
60+
Английская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/en/admission.md)
61+
62+
Русская версия: [ссылка](https://github.com/Intelligent-Systems-Phystech/intelligent-systems-phystech.github.io/blob/master/_i18n/ru/admission.md)

_config.yml

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
brand: /images/logo/logo_square.jpg
2+
image:
3+
og:
4+
image: /images/main/main.jpg
5+
6+
url: http//intsystems.github.io
7+
edit: https://github.com/intsystems/intsystems.github.io/edit/master/
8+
baseurl:
9+
permalink: /:year/:month/:day/:title.html
10+
11+
sidebar: true
12+
13+
# Main Info
14+
github: intsystems
15+
16+
youtube: https://www.youtube.com/c/MachineLearningPhystech
17+
18+
header:
19+
- Machine Learning
20+
- Data Analysis
21+
22+
# Markdown
23+
markdown: kramdown
24+
25+
# Sass
26+
sass:
27+
sass_dir: _sass
28+
style: :compressed
29+
30+
exclude: ["LICENSE", "README.md", "Gemfile", "Gemfile.lock", "vendor", "_sass"]
31+
32+
# Highlighter
33+
highlighter: rouge
34+
35+
plugins:
36+
- jekyll-feed
37+
- jekyll-multiple-languages-plugin
38+
- jekyll-toc
39+
- jekyll-sitemap
40+
41+
languages: ["en", "ru"]
42+
43+
exclude_from_localizations: ["images", "favicon.ico", "javascript", "style.scss"]
44+
45+
default_locale_in_subfolder: False
46+
47+
# Navigation
48+
nav:
49+
pages:
50+
- id: "home"
51+
href: "/"
52+
name: site.nav.names.home
53+
dropdown:
54+
- id: "about"
55+
href: "/about"
56+
name: site.nav.names.about
57+
dropdown:
58+
- id: "lecturers"
59+
href: "/people"
60+
name: site.nav.names.lecturers
61+
dropdown:
62+
- id: "courses"
63+
href: "/course"
64+
name: site.nav.names.courses
65+
dropdown:
66+
- id: "admission"
67+
href: "/admission"
68+
name: site.nav.names.admission
69+
dropdown:
70+
- id: "materials"
71+
href: "/materials"
72+
name: site.nav.names.materials
73+
dropdown:
74+
- id: "nir"
75+
href: "/materials/nir"
76+
name: site.nav.names.nir
77+
- id: "thesis"
78+
href: "/materials/thesis"
79+
name: site.nav.names.thesis
80+
- id: "templates"
81+
href: "/materials/templates"
82+
name: site.nav.names.templates
83+
- id: "seminars"
84+
href: "/materials/seminars"
85+
name: site.nav.names.seminars
86+
- id: "paper_guidelines"
87+
href: "/materials/paper_guidelines"
88+
name: site.nav.names.paper_guidelines
89+
90+
# Scopes
91+
defaults:
92+
- scope:
93+
path: ""
94+
values:
95+
toc: true
96+
- scope:
97+
path: ""
98+
type: "pages"
99+
values:
100+
layout: "page"
101+
- scope:
102+
path: ""
103+
type: "materials"
104+
values:
105+
layout: "page"
106+
- scope:
107+
path: ""
108+
type: "admission"
109+
values:
110+
layout: "page"
111+
- scope:
112+
path: ""
113+
type: "people"
114+
values:
115+
layout: "profile"
116+
- scope:
117+
path: ""
118+
type: "course"
119+
values:
120+
layout: "course"
121+
122+
collections:
123+
people:
124+
output: true
125+
permalink: /people/:title/index.html
126+
course:
127+
output: true
128+
permalink: /course/:title/index.html
129+
130+
131+
global:
132+
langs:
133+
ru: Русский
134+
en: English
135+
136+
course:
137+
types:
138+
- bachelor
139+
- master
140+
141+
people:
142+
roles:
143+
- hotd
144+
- dos
145+
- phd
146+
- gs
147+
- template
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.automation_scientific_research
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: strijov_vv
8+
site:
9+
---
10+
11+
{% tf _course/automation_scientific_research.md %}

_course/bayesian_model_selection.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.bayesian_model_selection
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: aduenko_aa
8+
site:
9+
---
10+
11+
{% tf _course/bayesian_model_selection.md %}

_course/bayesian_multimodeling.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.bayesian_multimodeling
4+
name: courses.name
5+
type: master
6+
avatar:
7+
lecturers: bakhteev_oy
8+
site:
9+
---
10+
11+
{% tf _course/bayesian_multimodeling.md %}

_course/bioinformatics.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.bioinformatics
4+
name: courses.name
5+
type: master
6+
avatar:
7+
lecturers: torshin_iy
8+
site:
9+
---
10+
11+
{% tf _course/bioinformatics.md %}

_course/computational_geometry.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.computational_geometry
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: mestetskiy_lm
8+
site:
9+
---
10+
11+
{% tf _course/computational_geometry.md %}

_course/deep_generative_models.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.deep_generative_models
4+
name: courses.name
5+
type: master
6+
avatar:
7+
lecturers: isachenko_rv
8+
site: https://github.com/r-isachenko/2021-DGM-MIPT-course
9+
---
10+
11+
{% tf _course/deep_generative_models.md %}

_course/deep_learning.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.deep_learning
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: kropotov_da,grebenkova_os,filatov_av,bishuk_ay
8+
site:
9+
---
10+
11+
{% tf _course/deep_learning.md %}

_course/forecasting_methods.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.forecasting_methods
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: strijov_vv
8+
site:
9+
---
10+
11+
{% tf _course/forecasting_methods.md %}

_course/fundamental_ml_theorems.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.fundamental_ml_theorems
4+
name: courses.name
5+
type: master
6+
avatar:
7+
lecturers: strijov_vv
8+
site:
9+
---
10+
11+
{% tf _course/fundamental_ml_theorems.md %}
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.image_processing_recognition
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: mestetskiy_lm
8+
site:
9+
---
10+
11+
{% tf _course/image_processing_recognition.md %}
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
edit: true
3+
title: courses.title.introduction_machine_learning
4+
name: courses.name
5+
type: bachelor
6+
avatar:
7+
lecturers: vorontsov_kv
8+
site: http://www.machinelearning.ru/wiki/index.php?title=Машинное_обучение_%28курс_лекций%2C_К.В.Воронцов%29
9+
---
10+
11+
{% tf _course/introduction_machine_learning.md %}

0 commit comments

Comments
 (0)