📝 企業を調べる時のメモ書きです。
- https://www.wantedly.com/
- https://jobs.forkwell.com/
- https://jp.indeed.com/
- 日本だとあんまり使ってる企業がいないけど、グローバルよりで日本でもやってる面白いものがたまに見つかる
- などの各種求人サイトを見る
- Note: 📝
📝 企業を調べる時のメモ書きです。
| require 'savon' | |
| source_lang, target_lang, source = ARGV | |
| wsdl = 'http://langrid.org/service_manager/wsdl/KyotoUJServer' | |
| auth = %w(username password) # TODO: replace username and password with yours | |
| client = Savon.client(wsdl: wsdl, basic_auth: auth) | |
| response = client.call(:translate) do |
| %matplotlib inline | |
| import sys | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| import scipy.stats as st | |
| from matplotlib import animation as ani | |
| import sklearn.metrics as mt |
| #!/usr/bin/env bash | |
| curl https://s3.amazonaws.com/heroku-jvm-buildpack-vi/vim-7.3.tar.gz --output vim.tar.gz | |
| mkdir vim && tar xzvf vim.tar.gz -C vim | |
| export PATH=$PATH:/app/vim/bin |
| """ | |
| Implementation of pairwise ranking using scikit-learn LinearSVC | |
| Reference: "Large Margin Rank Boundaries for Ordinal Regression", R. Herbrich, | |
| T. Graepel, K. Obermayer. | |
| Authors: Fabian Pedregosa <fabian@fseoane.net> | |
| Alexandre Gramfort <alexandre.gramfort@inria.fr> | |
| """ |