The problem targeted at this Machine Learning exercise is to predict creditworthiness of a client at a German Bank, based on 20 quantitative and qualitative characteristics of a client. Based on historical records, clients fall into two categories: 'good', i.e. credit-worthy clients, who would most probably repay credit. 'bad', most probably would not repay. The…
Github требует уникальный SSH-ключ для каждого акаунта. Для того, чтобы с одной машины иметь доступ к двум аккаунтам с двумя уникальными SSH ключами необходимо cоздать файл /home/user/.ssh/config со следующим содержанием #user1 account Host sbushmanov.github.com HostName github.com User git IdentityFile ~/.ssh/USER1_key #user2 account Host bushmanov.github.com HostName github.com User git IdentityFile ~/.ssh/USER2_key где sbushmanov.github.com и bushmanov.github.com –…
Для удаленного создания Github репозитория из командной строки служит команда: curl -u 'bushmanov' https://api.github.com/user/repos -d '{"name":"R_Coursera"}' git remote add origin git@github.com:bushmanov/R_Coursera.git git push -u origin master где bushmanov, это имя пользователя Github (в данном случае моё), а R_Coursera – название репозитария, который необходимо создать. Результат выполнения можно проверить с помощью команды: $ curl -i https://api.github.com/users/bushmanov/repos…