turn off parts of features in a neural network? 2019 Community Moderator Election Results 2019 Moderator Election Q&A - QuestionnaireDebugging Neural Network for (Natural Language) TaggingTroubleshooting Neural Network ImplementationNeural Network for Multiple Output RegressionConvnet training error does not decreaseScalar input to neural network whose existence is conditionalchoosing sample points when approximating a function with a neural networkNeural network only converges when data cloud is close to 0How much neural network theory required to design one?Voice recognition with fourier transformation with audio input in pythonApplying ML to estimate parameters of an existing physical model

Are there existing rules/lore for MTG planeswalkers?

What is ls Largest Number Formed by only moving two sticks in 508?

What's the difference between using dependency injection with a container and using a service locator?

All ASCII characters with a given bit count

Determinant of a matrix with 2 equal rows

Is there an efficient way for synchronising audio events real-time with LEDs using an MCU?

What does こした mean?

How do I deal with an erroneously large refund?

What is /etc/mtab in Linux?

How did Elite on the NES work?

Putting Ant-Man on house arrest

Bright yellow or light yellow?

Suing a Police Officer Instead of the Police Department

What were wait-states, and why was it only an issue for PCs?

How would you suggest I follow up with coworkers about our deadline that's today?

Will I be more secure with my own router behind my ISP's router?

Is it appropriate to mention a relatable company blog post when you're asked about the company?

Why did Israel vote against lifting the American embargo on Cuba?

Where to find documentation for `whois` command options?

Variable does not exist: sObjectType (Task.sObjectType)

Could a cockatrice have parasitic embryos?

What's called a person who works as someone who puts products on shelves in stores?

Eigenvalues of the Laplacian of the directed De Bruijn graph

What is the ongoing value of the Kanban board to the developers as opposed to management



turn off parts of features in a neural network?



2019 Community Moderator Election Results
2019 Moderator Election Q&A - QuestionnaireDebugging Neural Network for (Natural Language) TaggingTroubleshooting Neural Network ImplementationNeural Network for Multiple Output RegressionConvnet training error does not decreaseScalar input to neural network whose existence is conditionalchoosing sample points when approximating a function with a neural networkNeural network only converges when data cloud is close to 0How much neural network theory required to design one?Voice recognition with fourier transformation with audio input in pythonApplying ML to estimate parameters of an existing physical model










2












$begingroup$


Suppose I have a neural network which accepts two sets of features as inputs and generates corresponding outputs, for instance, generate average final grade from: 1. working hours for N students in a class, 2. mid-term grade for N students in the same class. During training, the neural network is trained with many different classes. What I would like to during inference is to turn off one set of the features (i.e. feed only working hours as inputs) and predict outputs using the same neural network. Obviously, setting the mid-term grades to be all 0s would not be a good option. I wonder if anyone know what would be a good way to do this?



Thanks!









share











$endgroup$




bumped to the homepage by Community 1 hour ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • $begingroup$
    Why not only train of the features available at test time?
    $endgroup$
    – kbrose
    May 25 '18 at 16:52















2












$begingroup$


Suppose I have a neural network which accepts two sets of features as inputs and generates corresponding outputs, for instance, generate average final grade from: 1. working hours for N students in a class, 2. mid-term grade for N students in the same class. During training, the neural network is trained with many different classes. What I would like to during inference is to turn off one set of the features (i.e. feed only working hours as inputs) and predict outputs using the same neural network. Obviously, setting the mid-term grades to be all 0s would not be a good option. I wonder if anyone know what would be a good way to do this?



Thanks!









share











$endgroup$




bumped to the homepage by Community 1 hour ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • $begingroup$
    Why not only train of the features available at test time?
    $endgroup$
    – kbrose
    May 25 '18 at 16:52













2












2








2





$begingroup$


Suppose I have a neural network which accepts two sets of features as inputs and generates corresponding outputs, for instance, generate average final grade from: 1. working hours for N students in a class, 2. mid-term grade for N students in the same class. During training, the neural network is trained with many different classes. What I would like to during inference is to turn off one set of the features (i.e. feed only working hours as inputs) and predict outputs using the same neural network. Obviously, setting the mid-term grades to be all 0s would not be a good option. I wonder if anyone know what would be a good way to do this?



Thanks!









share











$endgroup$




Suppose I have a neural network which accepts two sets of features as inputs and generates corresponding outputs, for instance, generate average final grade from: 1. working hours for N students in a class, 2. mid-term grade for N students in the same class. During training, the neural network is trained with many different classes. What I would like to during inference is to turn off one set of the features (i.e. feed only working hours as inputs) and predict outputs using the same neural network. Obviously, setting the mid-term grades to be all 0s would not be a good option. I wonder if anyone know what would be a good way to do this?



Thanks!







neural-network deep-learning





share














share












share



share








edited Sep 23 '18 at 17:44









Brian Spiering

4,2981129




4,2981129










asked Mar 26 '18 at 14:48









username123username123

1113




1113





bumped to the homepage by Community 1 hour ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 1 hour ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.













  • $begingroup$
    Why not only train of the features available at test time?
    $endgroup$
    – kbrose
    May 25 '18 at 16:52
















  • $begingroup$
    Why not only train of the features available at test time?
    $endgroup$
    – kbrose
    May 25 '18 at 16:52















$begingroup$
Why not only train of the features available at test time?
$endgroup$
– kbrose
May 25 '18 at 16:52




$begingroup$
Why not only train of the features available at test time?
$endgroup$
– kbrose
May 25 '18 at 16:52










1 Answer
1






active

oldest

votes


















0












$begingroup$

As far as I know, you cannot do that.

First :




Obviously setting the mid-term grades to be all 0s would be be a good
option




No, actually that is a really bad option, neural networks do not understand magical parameters, meaning, if you put a 0 there it will think that the mid-term grades is 0, therefore it will probably give you a very low final grade prediction for you.



My advise, if you are very interested in doing that, create boolean factors, training inputs:



  1. working_hours

  2. mid-term_grade

  3. mid-term_grade_present

mid-term_grade_present should be a 1 when you have the mid-term_grade training data, and 0 when you do not have it. BTW, yes, generate training data without the mid-term_grade.



If you are working with non linear machine learning algorithms that should be enough, if you are using linear algorithms you should one hot encode the mid-term_grade_present and multiply it by the mid-term_grade, ending with something like this:



  1. working_hours

  2. mid-term_grade_present_1 * mid-term_grade

  3. mid-term_grade_present_0 * mid-term_grade




share









$endgroup$












  • $begingroup$
    Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
    $endgroup$
    – username123
    Mar 26 '18 at 15:23










  • $begingroup$
    if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
    $endgroup$
    – Kailegh
    Mar 26 '18 at 15:36










  • $begingroup$
    If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
    $endgroup$
    – username123
    Mar 26 '18 at 15:41










  • $begingroup$
    1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
    $endgroup$
    – Kailegh
    Mar 26 '18 at 18:57










  • $begingroup$
    did this idea finally work for you? or do we have to come up with something else?
    $endgroup$
    – Kailegh
    Mar 27 '18 at 14:54


















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0












$begingroup$

As far as I know, you cannot do that.

First :




Obviously setting the mid-term grades to be all 0s would be be a good
option




No, actually that is a really bad option, neural networks do not understand magical parameters, meaning, if you put a 0 there it will think that the mid-term grades is 0, therefore it will probably give you a very low final grade prediction for you.



My advise, if you are very interested in doing that, create boolean factors, training inputs:



  1. working_hours

  2. mid-term_grade

  3. mid-term_grade_present

mid-term_grade_present should be a 1 when you have the mid-term_grade training data, and 0 when you do not have it. BTW, yes, generate training data without the mid-term_grade.



If you are working with non linear machine learning algorithms that should be enough, if you are using linear algorithms you should one hot encode the mid-term_grade_present and multiply it by the mid-term_grade, ending with something like this:



  1. working_hours

  2. mid-term_grade_present_1 * mid-term_grade

  3. mid-term_grade_present_0 * mid-term_grade




share









$endgroup$












  • $begingroup$
    Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
    $endgroup$
    – username123
    Mar 26 '18 at 15:23










  • $begingroup$
    if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
    $endgroup$
    – Kailegh
    Mar 26 '18 at 15:36










  • $begingroup$
    If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
    $endgroup$
    – username123
    Mar 26 '18 at 15:41










  • $begingroup$
    1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
    $endgroup$
    – Kailegh
    Mar 26 '18 at 18:57










  • $begingroup$
    did this idea finally work for you? or do we have to come up with something else?
    $endgroup$
    – Kailegh
    Mar 27 '18 at 14:54















0












$begingroup$

As far as I know, you cannot do that.

First :




Obviously setting the mid-term grades to be all 0s would be be a good
option




No, actually that is a really bad option, neural networks do not understand magical parameters, meaning, if you put a 0 there it will think that the mid-term grades is 0, therefore it will probably give you a very low final grade prediction for you.



My advise, if you are very interested in doing that, create boolean factors, training inputs:



  1. working_hours

  2. mid-term_grade

  3. mid-term_grade_present

mid-term_grade_present should be a 1 when you have the mid-term_grade training data, and 0 when you do not have it. BTW, yes, generate training data without the mid-term_grade.



If you are working with non linear machine learning algorithms that should be enough, if you are using linear algorithms you should one hot encode the mid-term_grade_present and multiply it by the mid-term_grade, ending with something like this:



  1. working_hours

  2. mid-term_grade_present_1 * mid-term_grade

  3. mid-term_grade_present_0 * mid-term_grade




share









$endgroup$












  • $begingroup$
    Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
    $endgroup$
    – username123
    Mar 26 '18 at 15:23










  • $begingroup$
    if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
    $endgroup$
    – Kailegh
    Mar 26 '18 at 15:36










  • $begingroup$
    If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
    $endgroup$
    – username123
    Mar 26 '18 at 15:41










  • $begingroup$
    1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
    $endgroup$
    – Kailegh
    Mar 26 '18 at 18:57










  • $begingroup$
    did this idea finally work for you? or do we have to come up with something else?
    $endgroup$
    – Kailegh
    Mar 27 '18 at 14:54













0












0








0





$begingroup$

As far as I know, you cannot do that.

First :




Obviously setting the mid-term grades to be all 0s would be be a good
option




No, actually that is a really bad option, neural networks do not understand magical parameters, meaning, if you put a 0 there it will think that the mid-term grades is 0, therefore it will probably give you a very low final grade prediction for you.



My advise, if you are very interested in doing that, create boolean factors, training inputs:



  1. working_hours

  2. mid-term_grade

  3. mid-term_grade_present

mid-term_grade_present should be a 1 when you have the mid-term_grade training data, and 0 when you do not have it. BTW, yes, generate training data without the mid-term_grade.



If you are working with non linear machine learning algorithms that should be enough, if you are using linear algorithms you should one hot encode the mid-term_grade_present and multiply it by the mid-term_grade, ending with something like this:



  1. working_hours

  2. mid-term_grade_present_1 * mid-term_grade

  3. mid-term_grade_present_0 * mid-term_grade




share









$endgroup$



As far as I know, you cannot do that.

First :




Obviously setting the mid-term grades to be all 0s would be be a good
option




No, actually that is a really bad option, neural networks do not understand magical parameters, meaning, if you put a 0 there it will think that the mid-term grades is 0, therefore it will probably give you a very low final grade prediction for you.



My advise, if you are very interested in doing that, create boolean factors, training inputs:



  1. working_hours

  2. mid-term_grade

  3. mid-term_grade_present

mid-term_grade_present should be a 1 when you have the mid-term_grade training data, and 0 when you do not have it. BTW, yes, generate training data without the mid-term_grade.



If you are working with non linear machine learning algorithms that should be enough, if you are using linear algorithms you should one hot encode the mid-term_grade_present and multiply it by the mid-term_grade, ending with something like this:



  1. working_hours

  2. mid-term_grade_present_1 * mid-term_grade

  3. mid-term_grade_present_0 * mid-term_grade





share











share


share










answered Mar 26 '18 at 15:10









KaileghKailegh

813




813











  • $begingroup$
    Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
    $endgroup$
    – username123
    Mar 26 '18 at 15:23










  • $begingroup$
    if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
    $endgroup$
    – Kailegh
    Mar 26 '18 at 15:36










  • $begingroup$
    If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
    $endgroup$
    – username123
    Mar 26 '18 at 15:41










  • $begingroup$
    1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
    $endgroup$
    – Kailegh
    Mar 26 '18 at 18:57










  • $begingroup$
    did this idea finally work for you? or do we have to come up with something else?
    $endgroup$
    – Kailegh
    Mar 27 '18 at 14:54
















  • $begingroup$
    Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
    $endgroup$
    – username123
    Mar 26 '18 at 15:23










  • $begingroup$
    if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
    $endgroup$
    – Kailegh
    Mar 26 '18 at 15:36










  • $begingroup$
    If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
    $endgroup$
    – username123
    Mar 26 '18 at 15:41










  • $begingroup$
    1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
    $endgroup$
    – Kailegh
    Mar 26 '18 at 18:57










  • $begingroup$
    did this idea finally work for you? or do we have to come up with something else?
    $endgroup$
    – Kailegh
    Mar 27 '18 at 14:54















$begingroup$
Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
$endgroup$
– username123
Mar 26 '18 at 15:23




$begingroup$
Sorry that was a typo, it should be Obviously setting the mid-term grades to be all 0s would not be a good option.... I just updated it in the text. If I set mid-term_grade_present to be 0, what should I use as inputs, specifically what should be the data for mid-term_grade part? If it is the same with mid-term_grade_present=1 case, then this boolean flag basically has no effect, if it is something else, what should it be?
$endgroup$
– username123
Mar 26 '18 at 15:23












$begingroup$
if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
$endgroup$
– Kailegh
Mar 26 '18 at 15:36




$begingroup$
if you have enough data you could try taking 20% of it and setting mid-term_grade_present=0
$endgroup$
– Kailegh
Mar 26 '18 at 15:36












$begingroup$
If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
$endgroup$
– username123
Mar 26 '18 at 15:41




$begingroup$
If I set mid-term_grade_present=0 I do not think mid_term_grade data would be ignored by the neural network since: 1. it is already included as part of inputs, 2. it is correlated with outputs.
$endgroup$
– username123
Mar 26 '18 at 15:41












$begingroup$
1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
$endgroup$
– Kailegh
Mar 26 '18 at 18:57




$begingroup$
1.-it is a neural network, it can learn non-linear relationships, and learn features interactions, trust me, it will learn that when mid-term_grade_present=0 it cant rely on mid-term_grade 2.- it is not correlated, you randomly pick a 20% of the data and remove the mid-term_grade info, no correlation in there, give a try, but I sincerely think it should work
$endgroup$
– Kailegh
Mar 26 '18 at 18:57












$begingroup$
did this idea finally work for you? or do we have to come up with something else?
$endgroup$
– Kailegh
Mar 27 '18 at 14:54




$begingroup$
did this idea finally work for you? or do we have to come up with something else?
$endgroup$
– Kailegh
Mar 27 '18 at 14:54



Popular posts from this blog

На ростанях Змест Гісторыя напісання | Месца дзеяння | Час дзеяння | Назва | Праблематыка трылогіі | Аўтабіяграфічнасць | Трылогія ў тэатры і кіно | Пераклады | У культуры | Зноскі Літаратура | Спасылкі | НавігацыяДагледжаная версіяправерана1 зменаДагледжаная версіяправерана1 зменаАкадэмік МІЦКЕВІЧ Канстанцін Міхайлавіч (Якуб Колас) Прадмова М. І. Мушынскага, доктара філалагічных навук, члена-карэспандэнта Нацыянальнай акадэміі навук Рэспублікі Беларусь, прафесараНашаніўцы ў трылогіі Якуба Коласа «На ростанях»: вобразы і прататыпы125 лет Янке МавруКнижно-документальная выставка к 125-летию со дня рождения Якуба Коласа (1882—1956)Колас Якуб. Новая зямля (паэма), На ростанях (трылогія). Сулкоўскі Уладзімір. Радзіма Якуба Коласа (серыял жывапісных палотнаў)Вокладка кнігіІлюстрацыя М. С. БасалыгіНа ростаняхАўдыёверсія трылогііВ. Жолтак У Люсiнскай школе 1959

Францішак Багушэвіч Змест Сям'я | Біяграфія | Творчасць | Мова Багушэвіча | Ацэнкі дзейнасці | Цікавыя факты | Спадчына | Выбраная бібліяграфія | Ушанаванне памяці | У філатэліі | Зноскі | Літаратура | Спасылкі | НавігацыяЛяхоўскі У. Рупіўся дзеля Бога і людзей: Жыццёвы шлях Лявона Вітан-Дубейкаўскага // Вольскі і Памідораў з песняй пра немца Адвакат, паэт, народны заступнік Ашмянскі веснікВ Минске появится площадь Богушевича и улица Сырокомли, Белорусская деловая газета, 19 июля 2001 г.Айцец беларускай нацыянальнай ідэі паўстаў у бронзе Сяргей Аляксандравіч Адашкевіч (1918, Мінск). 80-я гады. Бюст «Францішак Багушэвіч».Яўген Мікалаевіч Ціхановіч. «Партрэт Францішка Багушэвіча»Мікола Мікалаевіч Купава. «Партрэт зачынальніка новай беларускай літаратуры Францішка Багушэвіча»Уладзімір Іванавіч Мелехаў. На помніку «Змагарам за родную мову» Барэльеф «Францішак Багушэвіч»Памяць пра Багушэвіча на Віленшчыне Страчаная сталіца. Беларускія шыльды на вуліцах Вільні«Krynica». Ideologia i przywódcy białoruskiego katolicyzmuФранцішак БагушэвічТворы на knihi.comТворы Францішка Багушэвіча на bellib.byСодаль Уладзімір. Францішак Багушэвіч на Лідчыне;Луцкевіч Антон. Жыцьцё і творчасьць Фр. Багушэвіча ў успамінах ягоных сучасьнікаў // Запісы Беларускага Навуковага таварыства. Вільня, 1938. Сшытак 1. С. 16-34.Большая российская1188761710000 0000 5537 633Xn9209310021619551927869394п

Беларусь Змест Назва Гісторыя Геаграфія Сімволіка Дзяржаўны лад Палітычныя партыі Міжнароднае становішча і знешняя палітыка Адміністрацыйны падзел Насельніцтва Эканоміка Культура і грамадства Сацыяльная сфера Узброеныя сілы Заўвагі Літаратура Спасылкі НавігацыяHGЯOiТоп-2011 г. (па версіі ej.by)Топ-2013 г. (па версіі ej.by)Топ-2016 г. (па версіі ej.by)Топ-2017 г. (па версіі ej.by)Нацыянальны статыстычны камітэт Рэспублікі БеларусьШчыльнасць насельніцтва па краінахhttp://naviny.by/rubrics/society/2011/09/16/ic_articles_116_175144/А. Калечыц, У. Ксяндзоў. Спробы засялення краю неандэртальскім чалавекам.І ў Менску былі мамантыА. Калечыц, У. Ксяндзоў. Старажытны каменны век (палеаліт). Першапачатковае засяленне тэрыторыіГ. Штыхаў. Балты і славяне ў VI—VIII стст.М. Клімаў. Полацкае княства ў IX—XI стст.Г. Штыхаў, В. Ляўко. Палітычная гісторыя Полацкай зямліГ. Штыхаў. Дзяржаўны лад у землях-княствахГ. Штыхаў. Дзяржаўны лад у землях-княствахБеларускія землі ў складзе Вялікага Княства ЛітоўскагаЛюблінская унія 1569 г."The Early Stages of Independence"Zapomniane prawdy25 гадоў таму было аб'яўлена, што Язэп Пілсудскі — беларус (фота)Наша вадаДакументы ЧАЭС: Забруджванне тэрыторыі Беларусі « ЧАЭС Зона адчужэнняСведения о политических партиях, зарегистрированных в Республике Беларусь // Министерство юстиции Республики БеларусьСтатыстычны бюлетэнь „Полаўзроставая структура насельніцтва Рэспублікі Беларусь на 1 студзеня 2012 года і сярэднегадовая колькасць насельніцтва за 2011 год“Индекс человеческого развития Беларуси — не было бы нижеБеларусь занимает первое место в СНГ по индексу развития с учетом гендерного факцёраНацыянальны статыстычны камітэт Рэспублікі БеларусьКанстытуцыя РБ. Артыкул 17Трансфармацыйныя задачы БеларусіВыйсце з крызісу — далейшае рэфармаванне Беларускі рубель — сусветны лідар па дэвальвацыяхПра змену коштаў у кастрычніку 2011 г.Бядней за беларусаў у СНД толькі таджыкіСярэдні заробак у верасні дасягнуў 2,26 мільёна рублёўЭканомікаГаласуем за ТОП-100 беларускай прозыСучасныя беларускія мастакіАрхитектура Беларуси BELARUS.BYА. Каханоўскі. Культура Беларусі ўсярэдзіне XVII—XVIII ст.Анталогія беларускай народнай песні, гуказапісы спеваўБеларускія Музычныя IнструментыБеларускі рок, які мы страцілі. Топ-10 гуртоў«Мясцовы час» — нязгаслая легенда беларускай рок-музыкіСЯРГЕЙ БУДКІН. МЫ НЯ ЗНАЕМ СВАЁЙ МУЗЫКІМ. А. Каладзінскі. НАРОДНЫ ТЭАТРМагнацкія культурныя цэнтрыПублічная дыскусія «Беларуская новая пьеса: без беларускай мовы ці беларуская?»Беларускія драматургі па-ранейшаму лепш ставяцца за мяжой, чым на радзіме«Працэс незалежнага кіно пайшоў, і дзяржаву турбуе яго непадкантрольнасць»Беларускія філосафы ў пошуках прасторыВсе идём в библиотекуАрхіваванаАб Нацыянальнай праграме даследавання і выкарыстання касмічнай прасторы ў мірных мэтах на 2008—2012 гадыУ космас — разам.У суседнім з Барысаўскім раёне пабудуюць Камандна-вымяральны пунктСвяты і абрады беларусаў«Мірныя бульбашы з малой краіны» — 5 непраўдзівых стэрэатыпаў пра БеларусьМ. Раманюк. Беларускае народнае адзеннеУ Беларусі скарачаецца колькасць злачынстваўЛукашэнка незадаволены мінскімі ўладамі Крадзяжы складаюць у Мінску каля 70% злачынстваў Узровень злачыннасці ў Мінскай вобласці — адзін з самых высокіх у краіне Генпракуратура аналізуе стан са злачыннасцю ў Беларусі па каэфіцыенце злачыннасці У Беларусі стабілізавалася крымінагеннае становішча, лічыць генпракурорЗамежнікі сталі здзяйсняць у Беларусі больш злачынстваўМУС Беларусі турбуе рост рэцыдыўнай злачыннасціЯ з ЖЭСа. Дазволіце вас абкрасці! Рэйтынг усіх службаў і падраздзяленняў ГУУС Мінгарвыканкама вырасАб КДБ РБГісторыя Аператыўна-аналітычнага цэнтра РБГісторыя ДКФРТаможняagentura.ruБеларусьBelarus.by — Афіцыйны сайт Рэспублікі БеларусьСайт урада БеларусіRadzima.org — Збор архітэктурных помнікаў, гісторыя Беларусі«Глобус Беларуси»Гербы и флаги БеларусиАсаблівасці каменнага веку на БеларусіА. Калечыц, У. Ксяндзоў. Старажытны каменны век (палеаліт). Першапачатковае засяленне тэрыторыіУ. Ксяндзоў. Сярэдні каменны век (мезаліт). Засяленне краю плямёнамі паляўнічых, рыбакоў і збіральнікаўА. Калечыц, М. Чарняўскі. Плямёны на тэрыторыі Беларусі ў новым каменным веку (неаліце)А. Калечыц, У. Ксяндзоў, М. Чарняўскі. Гаспадарчыя заняткі ў каменным векуЭ. Зайкоўскі. Духоўная культура ў каменным векуАсаблівасці бронзавага веку на БеларусіФарміраванне супольнасцей ранняга перыяду бронзавага векуФотографии БеларусиРоля беларускіх зямель ва ўтварэнні і ўмацаванні ВКЛВ. Фадзеева. З гісторыі развіцця беларускай народнай вышыўкіDMOZGran catalanaБольшая российскаяBritannica (анлайн)Швейцарскі гістарычны15325917611952699xDA123282154079143-90000 0001 2171 2080n9112870100577502ge128882171858027501086026362074122714179пппппп