Posts

Showing posts from February 5, 2019

Covariance, how to deduce from linear regression

Image
up vote 0 down vote favorite 1 This is mainly concerning machine learning and linear regression, but I think my question still is mathrelated and for that reason I post my question here. I have a linear regression looking like this: $$t_i = w_0x_1 +w_1 + epsilon = -1.5x_i - 0.5 + epsilon$$ where $epsilon sim mathcal{N}(0,sigma)$ , $sigma = 0.3$ . My issue is from this point to deduce the distribution of the prior, that is $p(w)simmathcal{N}(w_mu,Sigma_w).$ I'm going to claim that the mean $w_mu=0$ since I want to induce so called "sceptical prior". My issue is that I dont know what to select my $Sigma_w$ as, the easiest would be to choose a diagonal matrix with $sigma=0.3$ but what arguments do I have for doing this claim? covariance ...

Графика

Image
У этого термина существуют и другие значения, см. Графика (значения). Ван Гог «Скорбь» («Печаль») Гра́фика (др.-греч. γρᾰφικός «письменный»; от γράφω «записывать, писать») — вид изобразительного искусства, использующий в качестве основных изобразительных средств линии, штрихи, пятна и точки. (Цвет также может применяться, но, в отличие от живописи, здесь он традиционно играет вспомогательную роль, в современной графике цвет может быть не менее важен, чем в живописи). При работе в графике обычно используют один или два цвета, кроме основного чёрного или красно-коричневого цвета сангины, можно использовать белый, в особенности на тонированной бумаге. Но при работе пастелью может использоваться вся цветовая палитра, как в живописи; согласно современной музейной классификации, работа пастелью на бумаге тоже относится к графике. Кроме контурной линии, в графическом искусстве широко используются штрих и пятно, также контрастирующие с белой (а в иных случаях также цветной, чёрной,...

Why is JavaScript “safe” to run in the browser?

Image
up vote 59 down vote favorite 17 JavaScript has certain limitations such as preventing reading and writing to disk and not allowing access to other browser windows or domains. But is that all that's needed to prevent malicious code from running? JavaScript is pretty powerful, and it seems odd that browsers will unquestioningly run all JavaScript code they are given. How is that safe? web-browser javascript share | improve this question edited 2 days ago Peter Mortensen 680 4 9 asked Nov 30 at 5:28 ...