2020-02-04 09:00 分まとめ(58件)

カテゴリー サイト名 記事タイトル リンクURL 頻出ワード・要約等 登録日
IT バズ部 カスタマージャーニーに違和感を感じる人必見!Carlijn Postmaが提唱するオーディエンスジャーニーとは? https://bazubu.com/customer-journey-37287.html carlijn 2020-02-03 23:00:16
IT ITmedia 総合記事一覧 [ITmedia News] DropboxのヒューストンCEO、Facebookの取締役に https://www.itmedia.co.jp/news/articles/2002/04/news055.html dropbox 2020-02-04 08:47:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 楽天の「送料無料」は大丈夫なのか ロジックが微妙 https://www.itmedia.co.jp/business/articles/2002/04/news040.html itmedia 2020-02-04 08:08:00
TECH Techable(テッカブル) 【Review】カードサイズなのにパワフルな「Smart Coby」は万能モバイルバッテリー https://techable.jp/archives/116258 macbook 2020-02-03 23:00:07
python Pythonタグが付けられた新着投稿 - Qiita 気象データをもとに「天気図っぽい前線」を機械学習で描いてみる(3) https://qiita.com/m-taque/items/4d5bb45e6b5dc42dc833 前線要素の抽出速報天気図の前線要素速報天気図の前線要素は、寒冷前線青色、温暖前線赤色、閉塞前線ピンク、停滞前線青と赤となっています。結果的はこの記号の位置も学習してしまいましたつまるところ、速報天気図から、寒冷前線要素を「青」、温暖前線と閉塞前線を「赤」、それ以外は「白」という値に変換した画像を作り、教師画像とします。 2020-02-04 08:24:44
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) maven使用してVScodeでデバッグ実行時、コマンドラインの引数を渡して実行したい https://teratail.com/questions/239305?rss=all 前提・実現したいことVSCodeの画面上の「RunnbspTestDebugnbspTest」のDebugnbspTest押下でデバッグ実行時、コマンドラインで実行しているのと同じ内容を引数でプログラムに渡して実行したい。プログラムの実行内容としては以下になります。 2020-02-04 08:33:38
Ruby Rubyタグが付けられた新着投稿 - Qiita 文字列のハッシュロケットを直せと言われて「?」ってなった https://qiita.com/drcard/items/641faf11d6da7bd89eac 2020-02-04 08:58:44
AWS AWSタグが付けられた新着投稿 - Qiita AWS Route53でサブドメインを取得し、SESで使用する https://qiita.com/gdtypk/items/a02b3a35da6bffa34c24 参考記事Routeでサブドメインの取得Routeレコードセットの作成名前適当な値を入力タイプAを選択値とを入力し、レコードセットの保存を選択SES設定IdentityManagementgtDomainsを選択VerifyaNewDomainを選択GenerateDKIMSettingsにチェックを入れる。Domain先ほど作成したサブドメインの値を入力VerifyThisDomainを選択UseRouteを選択CreateRecordSetsを選択しばらく待ってからIdentityManagementgtDomainsを選択サブドメインを選択VerificationStatus、DKIMStatus、EnabledforSendingがYesやverifiedになっていることを確認ステータスが正常なことを確認後SendTestEmailを選択値をそれぞれ入力し、SendTestEmailを選択メールが届くこと。 2020-02-04 08:47:11
Azure Azureタグが付けられた新着投稿 - Qiita Create and Manage Dataset with Azure Machine Learning https://qiita.com/faisal_putra/items/2584a716909e41a11329 OverviewIn recent years MLOps has grown in popularity as many people move ML code to production As one of the cloud providers Microsoft leads the way by providing Azure Machine Learning Service to enable MLOps at ease By using Azure ML Service we can do several things including the following tasks create and manage datasets train machine learning models deploy and serve models as web serviceIn this post we will focus on how to create and manage datasets with Azure ML Service Since I mainly use python to write code I will discuss more on the use of python SDK Create WorkspaceTo use Azure ML Service we need to create a Workspace Workspace is a top level resource of Azure ML that provides centralized place to work with all the artifacts that are used in machine learning projects such as dataset trained model experiment etc To create a workspace we can use the Azure Portal For more details you can follow the link below After the Workspace is created we manage the object with Python SDK You will need authentication to get the Workspace object If you are using Jupyter notebook you can use I n t e r activeLoginAuthentication by default using the following code The sample below will prompt us with Azure authentication from azureml core import Workspacews Workspace get name lt my workspace name gt subscription id lt azure subscription id gt resource group lt my resource group gt To automate things we can t rely on prompt authentication We may use S e r v i cePrincipalAuthentication instead First we have to create an Azure AD app and grant it access to manage our resource group For more details you can read the article below From this point we will have these items TENANT IDSERVICE PRINCIPAL ID CLIENT ID SERVICE PRINCIPAL SECRET CLIENT SECRET Then we can smoothly access the Workspace without the need to do login interactively from azureml core import Workspacefrom azureml core authentication import S e r v i c e P rincipalAuthenticationsvc pr S e r v i cePrincipalAuthentication tenant id lt TENANT ID gt service principal id lt CLIENT ID gt service principal password lt CLIENT SECRET gt ws Workspace get name lt my workspace name gt subscription id lt azure subscription id gt resource group lt my resource group gt auth svc pr By this point we can safely assume that we can access the Workspace in our application or automated task scripts without the need to login manually Create Azure Blob StorageTo work with data in Azure ML we need to connect Datastore to the Workspace Although these list by no means exhaustive Azure ML Workspace support these Datastore Azure Blob StorageAzure File StorageAzure SQL DatabaseAzure Data Lake StorageAs for now we will be using Azure Blob Storage as our Datastore To create Azure Blob Storage we can use Azure Portal For more details you can read the article below Register Blob Storage Container to WorkspaceAfter the Container is created we need to attach it as Datastore for our Workspace To do so we can use the following code to register our container as Datastore named lt my datastore gt from azureml core import Datastoredatastore Datastore register azure blob container workspace ws datastore name lt my datastore gt container name lt container name gt account name lt AZURE STORAGE ACCOUNT gt account key lt AZURE STORAGE ACCOUNT KEY gt As we can see we need a storage account and storage account key We can get this information from the Azure Portal After we register the Datastore to the Workspace we can access it later with the following code from azureml core import Datastoredatastore Datastore get ws datastore name lt datastore name gt Upload CSV File to Blob Storage ContainerFor later use let s upload a CSV file to the Container from Azure Portal Note that we still can use this storage as the backend of our web application and other tasks This means we can easily integrate our application data and Azure ML Service Read Dataset from DatastoreNext we can read our CSV file easily with the Dataset class in the following code from azureml core import Datasetdataset Dataset Tabular from delimited files path datastore lt csv filename gt separator By this point we will have metadata for our CSV file and ready to be registered to our Workspace To ensure we are using the right csv file we can convert the dataset to dataframe and print its contents For example we can use the following code to do so from azureml core import Datasetdf dataset to pandas dataframe print df head Register Dataset to WorkspaceAfter reading the Dataset from the Datastore we can then register it to our Workspace for later use By registering the Dataset to the Workspace Azure ML will manage the version of the Dataset automatically Furthermore in the training phase we also can securely use the dataset without the need to authenticate We can use the following code to do this df dataset register workspace ws name lt dataset name gt Use Dataset in TrainingOnce we finish registering our dataset we then can access the Dataset from training script train pyfrom azureml core import Dataset Runrun Run get context ws run experiment workspacedataset Dataset get by name workspace ws name lt dataset name gt df dataset to pandas dataframe Here we can use df to train our modelYou have to note that the above script can be conducted inside the training environment managed by Azure ML Service If you just want to casually access Dataset from your local computer you need to authenticate with interactive login When you call dataset to pandas dataframe you will be prompted with login ConclusionBy reading this post you are expected to understand the following concepts What Azure ML Workspace is and how to create and manage them using Azure PortalHow to access the Workspace from code using Azure ML Python SDKHow to register Azure Blob Storage as Datastore to Workspace using Azure ML Python SDKHow to use file from Datastore and convert them to Dataset using Azure ML Python SDKHow to register the Dataset to the Workspace using Azure ML Python SDKFinally how to user Dataset in training script using Azure ML Python SDK 2020-02-04 08:59:55
技術ブログ Developers.IO Alteryx Connectにhttpsでアクセスしたい!AWS Certificate Managerで無償のSSL証明書を取得してALB経由でConnectへアクセスしてみた https://dev.classmethod.jp/business/business-analytics/build-alteryx-connect-behind-alb-with-ssl/ alteryx 2020-02-03 23:30:08
海外TECH Engadget The Pentagon wants to catch rogue drones in nets https://www.engadget.com/2020/02/03/pentagon-drone-catching-nets/ The Pentagon already has permission to shoot drones out of the sky if they re deemed a threat but it s not stopping there The Department of Defense DoD has signed a contract with Fortem Technologies for what the company calls Drone Hunter an AI 2020-02-03 23:35:00
海外科学 NYT > Science China, Desperate to Stop Coronavirus, Turns Neighbor Against Neighbor https://www.nytimes.com/2020/02/03/business/china-coronavirus-wuhan-surveillance.html?emc=rss&partner=rss citizens 2020-02-03 23:17:10
金融 金融総合:経済レポート一覧 AI(機械学習)で地方銀行を収益モデル別に分類するとどうなるか~決算データによる地銀のクラスタリング http://www3.keizaireport.com/report.php/RID/404178/?rss 地方銀行 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 情報セキュリティ・シンポジウム(第21回)の模様:暗号資産のセキュリティ http://www3.keizaireport.com/report.php/RID/404180/?rss 情報セキュリティ 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 Daily Market Report(1月31日)~新型ウイルスの感染拡大が報じられる中、ドル円は108円台半ばまで下落 http://www3.keizaireport.com/report.php/RID/404181/?rss daily 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 FX Monthly(2020年2月)-「ドル円:長引くドル高と円高の均衡」 http://www3.keizaireport.com/report.php/RID/404182/?rss monthly 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 EU離脱が英国に及ぼす影響~外貨繰りリスクおよび経済の将来性:Newsletter No.3 http://www3.keizaireport.com/report.php/RID/404186/?rss letter 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 新型肺炎がキャッシュレス化の議論にも影響か :木内登英のGlobal Economy & Policy Insight http://www3.keizaireport.com/report.php/RID/404187/?rss economy 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 EUソルベンシーIIにおけるLTG措置等の適用状況とその影響(3)~EIOPAの2019年報告書の概要報告:保険・年金フォーカス http://www3.keizaireport.com/report.php/RID/404188/?rss eiopa 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 グローバル経済・マーケット見通し:各国経済の6ヶ月見通しと向こう1年間の市場予想 http://www3.keizaireport.com/report.php/RID/404194/?rss 市場予想 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 内外経済ウォッチ 日本~マイナス金利と“時間割増率”~ http://www3.keizaireport.com/report.php/RID/404196/?rss 第一生命経済研究所 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 内外経済ウォッチ 米国~利上げのハードル高く、様子見長期化へ~ http://www3.keizaireport.com/report.php/RID/404197/?rss 第一生命経済研究所 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 ミャンマーにおける金融市場の現状と中小企業金融の課題 http://www3.keizaireport.com/report.php/RID/404213/?rss 中小企業 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 ニューノーマルが迫る米金融政策の枠組み修正~2019年の議論の整理と暫定的な展望:みずほリポート http://www3.keizaireport.com/report.php/RID/404215/?rss 金融政策 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 信金中金月報 2020年2月号~信用金庫職員の事業性評価能力は向上しているか? / 中小企業の「継続力」を考える(3) / 中小企業の働き方改革を通じた生産性向上に必要なこととは... http://www3.keizaireport.com/report.php/RID/404217/?rss 中小企業 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 中銀デジタル通貨が銀行等民間事業者に与える影響・機会 http://www3.keizaireport.com/report.php/RID/404222/?rss 民間事業者 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 金融業界のパブリッククラウド利用~コンプライアンスの基準とガバナンスのポイント:マルチクラウド活用におけるガバナンスの要点 http://www3.keizaireport.com/report.php/RID/404233/?rss 野村総合研究所 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 感染拡大の見極め続く(マーケットウィークリー)~潜伏期間の長さ、不顕性感染がリスクオフ長期化に繋がるおそれ:Market Watching http://www3.keizaireport.com/report.php/RID/404240/?rss market 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 先週のマーケットの振り返り(2020/1/27-1/31) http://www3.keizaireport.com/report.php/RID/404244/?rss 三井住友 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 足元のリスクオフに対する心構え:市川レポート http://www3.keizaireport.com/report.php/RID/404245/?rss 三井住友 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 ちょコツとマーケット(先進国国債利回り・為替)2020年2月3日 http://www3.keizaireport.com/report.php/RID/404247/?rss 三井住友 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 アジア主要通貨・株価の動き(1月31日まで) http://www3.keizaireport.com/report.php/RID/404249/?rss 国際金融情報センター 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 【注目検索キーワード】マクロ経済スライド http://search.keizaireport.com/search.php/-/keyword=マクロ経済スライド/?rss 検索キーワード 2020-02-04 00:00:00
金融 金融総合:経済レポート一覧 【お薦め書籍】日本型プラットフォームビジネス-GAFAと戦わずして、勝者を目指す https://www.amazon.co.jp/exec/obidos/ASIN/4532323096/keizaireport-22/ 隙間 2020-02-04 00:00:00
金融 日本銀行:RSS マネタリーベース(1月) http://www.boj.or.jp/statistics/boj/other/mb/mb.htm マネタリーベース 2020-02-04 08:50:00
海外ニュース Reuters: ワールド China to allow in U.S. health experts as virus shows no sign of slowing http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/iEeut1hdHzk/idAFKBN1ZW009 BEIJING SHANGHAI Reuters China has agreed to allow U S health experts into the country as part of a World Health Organization WHO effort to help fight the fast spreading coronavirus as the number of cases and deaths continued to mount 2020-02-03 23:27:50
海外ニュース Reuters: ワールド U.S. announces more coronavirus cases, details quarantine plans for returning travellers http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/pUqMkhcvt2E/idAFKBN1ZX2FA CHICAGO Reuters The U S Centers for Disease Control and Prevention CDC on Monday announced a second case of transmission of the new coronavirus within the United States and provided more detailed plans on how it will handle travellers returning from China as the country works to limit the outbreak 2020-02-03 23:27:50
海外ニュース Reuters: ワールド China's Hubei province reports 64 new coronavirus deaths on Feb 3 - state TV http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/uSU_BFeZ-pI/idAFKBN1ZX2RA chinese 2020-02-03 23:16:44
海外ニュース Reuters: ワールド Democrats condemn Trump at trial as threat to American democracy http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/GGLOdsfP-fk/idAFKBN1ZX1E2 WASHINGTON Reuters Even with acquittal seemingly assured the Democrats prosecuting President Donald Trump in his impeachment trial made a forceful appeal for conviction on Monday calling him a man with no moral compass who must be removed to protect American democracy 2020-02-03 23:08:39
海外ニュース Reuters: ワールド Factbox:'Midnight in Washington' - quotes from Trump's impeachment trial http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/zpBV7Bl84X0/idAFKBN1ZX2T6 WASHINGTON Reuters Even with acquittal seemingly assured the Democrats prosecuting U S President Donald Trump in his impeachment trial unleashed a blistering attack on him on Monday with a forceful appeal for conviction calling him a man with no ethical compass who must be removed from office to protect American democracy 2020-02-03 23:08:39
ニュース @日本経済新聞 電子版 @nikkei ... https://twitter.com/nikkei/statuses/1224482257789947905 nikkei 2020-02-04 00:58:14
ニュース @日本経済新聞 電子版 @nikkei ... https://twitter.com/nikkei/statuses/1224476799725395970 google 2020-02-04 00:36:33
ニュース @日本経済新聞 電子版 @nikkei ... https://twitter.com/nikkei/statuses/1224474963220082688 nikkei 2020-02-04 00:29:15
ニュース @日本経済新聞 電子版 @nikkei 三井物産、市場の希望「まずは還元」 ... https://twitter.com/nikkei/statuses/1224474648596729856 nikkei 2020-02-04 00:28:00
ニュース @日本経済新聞 電子版 @nikkei ... https://twitter.com/nikkei/statuses/1224470129989378048 nikkei 2020-02-04 00:10:03
ニュース @日本経済新聞 電子版 @nikkei シカゴ日経平均先物が反発、150円高の2万2860円 ... https://twitter.com/nikkei/statuses/1224469434053668865 nikkei 2020-02-04 00:07:17
ニュース @日本経済新聞 電子版 @nikkei ... https://twitter.com/nikkei/statuses/1224468132502409216 nikkei 2020-02-04 00:02:06
ニュース BBC News - Home George Steiner: Holocaust survivor and literary critic dies aged 90 https://www.bbc.co.uk/news/world-europe-51366053 holocaust 2020-02-03 23:54:24
ニュース BBC News - Home Man City need Champions League win to have successful season - Wright https://www.bbc.co.uk/sport/football/51365812 wright 2020-02-03 23:08:45
ビジネス ダイヤモンド・オンライン - 新着記事 アルファベット、売上高予想下回る 部門別業績を初公表 - WSJ発 https://diamond.jp/articles/-/227806 部門別 2020-02-04 08:21:00
TECH ロイター: テクノロジー 米アルファベットの第4四半期、売上高が予想下回る 株価下落 http://feeds.reuters.com/~r/reuters/JPTechnologyNews/~3/HBYBIEIoCfI/alphabet-results-idJPKBN1ZX2T2 持ち株会社 2020-02-04 08:06:39
TECH ロイター: テクノロジー パナソニック、テスラ向け事業が四半期で初の黒字 テスラ株急騰 http://feeds.reuters.com/~r/reuters/JPTechnologyNews/~3/QdBgcTaue-E/panasonic-income-idJPKBN1ZX0Q0 電気自動車 2020-02-04 08:05:50
北海道 北海道新聞 クルーズ船、肺炎の検疫作業続く 乗客ら3500人船内待機 https://www.hokkaido-np.co.jp/article/389734/ 厚生労働省 2020-02-04 08:27:51
北海道 北海道新聞 バスケ八村、24試合ぶり復帰へ NBAウィザーズ監督が明らかに https://www.hokkaido-np.co.jp/article/389737/ 試合 2020-02-04 08:22:00
仮想通貨 BITPRESS(ビットプレス) DG Lab&オライリー・ジャパン、5/15-17に東京でエンジニア対象の「Blockchain Core Camp2020」開催 https://bitpress.jp/count2/3_15_11555 blockchain 2020-02-04 08:46:12
仮想通貨 BITPRESS(ビットプレス) 日本ブロックチェーン協会(JBA)、2/14に広島で「ブロックチェーンナイト」開催 https://bitpress.jp/count2/3_15_11554 日本 2020-02-04 08:43:18
Azure Azure の更新情報 Azure Service Fabric 7.0 Second Refresh Release https://azure.microsoft.com/ja-jp/updates/azure-service-fabric-7-0-second-refresh-release/ azure 2020-02-03 23:00:34
マーケティング WEB担当者Forum スマホの利用年数が長くなると、ウイルス対策ソフトを利用しなくなることが判明【ドコモ・モバ研調べ】 http://feedproxy.google.com/~r/web-tan/~3/lUF5MrjZSV4/35222 利用年数が長くなると、ウイルス対策ソフトを利用しなくなるまず「何年前からスマホを利用しているか」スマホの利用年数を聞くとともに、「何らかのセキュリティ対策を行っているか」を聞いた。行っているスマホのセキュリティ対策SNSを利用している人ほど画面ロックやOS最新化を実施次に「SNSの利用頻度」スマホの利用年数を聞くとともに、「何らかのセキュリティ対策を行っているか」を聞いた。 2020-02-04 08:30:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)