Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Google Colabを触ってみた/Google Colab hands on
Search
haru2036
March 24, 2020
Programming
0
1.1k
Google Colabを触ってみた/Google Colab hands on
haru2036
March 24, 2020
Tweet
Share
More Decks by haru2036
See All by haru2036
チームメンバー爆増!その時に準備したこととその後の成長
haru2036
0
21
VRChatでLT会やりたかった話
haru2036
0
200
神(運営)にお願いして世界の崩壊を免れた話 / How to report a bug in VRChat
haru2036
1
1.3k
締め切りカウントダウンポスターを作った話 / Deadline timer in VRChat
haru2036
0
1.3k
ケチケチGKE 入門編
haru2036
1
1.3k
LTワールドのつくりかた
haru2036
0
2.4k
光るスカート作った
haru2036
0
140
Other Decks in Programming
See All in Programming
LT 2025-06-30: プロダクトエンジニアの役割
yamamotok
0
730
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
11
3k
Quand Symfony, ApiPlatform, OpenAI et LangChain s'allient pour exploiter vos PDF : de la théorie à la production…
ahmedbhs123
0
150
技術同人誌をMCP Serverにしてみた
74th
1
630
プロダクト志向ってなんなんだろうね
righttouch
PRO
0
180
#kanrk08 / 公開版 PicoRubyとマイコンでの自作トレーニング計測装置を用いたワークアウトの理想と現実
bash0c7
1
710
来たるべき 8.0 に備えて React 19 新機能と React Router 固有機能の取捨選択とすり合わせを考える
oukayuka
2
920
Is Xcode slowly dying out in 2025?
uetyo
1
260
PipeCDのプラグイン化で目指すところ
warashi
1
270
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
290
Azure AI Foundryではじめてのマルチエージェントワークフロー
seosoft
0
160
A2A プロトコルを試してみる
azukiazusa1
2
1.3k
Featured
See All Featured
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.9k
A Tale of Four Properties
chriscoyier
160
23k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
Scaling GitHub
holman
459
140k
Why You Should Never Use an ORM
jnunemaker
PRO
58
9.4k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Transcript
Google Colab 触ってみた はる VRC-LT #7
自己紹介 • はる(バーチャル一般美少女) • VRChatでは主にこのイベントやったりだべってる人
今回のあらすじ • 機械学習とか統計とかあんまりわからん人が • Google Colabを • 雑に触ってみた
Google Colab is 何 • Jupyter的なやつをGoogleのインフラで使える • GPUやらTPUも触れる • 実験用途向けに無償で使える(!)
きょうの目標 • とりあえず手元にあるデータ使ってなにかしたい ◦ 800日ちょっとくらいの睡眠ログ ◦ 時系列データだし予測でもしてみるか…… • fbprophetをお手軽に試してみる
はじめの一歩 • Colabを開いてファイル > ノートブックを新規作成 • これだけでnumpyとかpandas,TensorFlowとか使える • GPU, TPUの有効化もほぼワンタッチ
(編集 > ノートブックの設定)
データのインポート • Google Driveがそのままマウントできる • そのまま開いて読み込み from google.colab import drive
drive.mount('/content/gdrive') with open("/content/gdrive/My Drive/Colab Notebooks/sleeps.json") as f: sleeps = json.loads(f.read()) ...
雑に実行 • そのまま雑にやったら動いた ◦ (元データがおかしい気もするけど……) • 動かしただけ ◦ 精度やらなんやらとか以前に使い方わかってない
まとめ&雑感 • おためししてみる分にはとても便利 ◦ ローカルマシンでの環境構築不要 ◦ 高性能なGPUが使える ◦ 無償 ◦
Google Driveとの通信も早い • 諸々の制限はある ◦ インスタンスの最長実行時間は12時間 ◦ セッション切れてから90分でも強制終了される ◦ 実験用途向けだし……
おしまい Google Colabは無料