下記を実現するための手順書。
- roswell(lisp実行環境構築ツール)を導入する
- slimv(VimにおけるSLIME)を導入する
- roswellとslimvでcommon lispをコーディング、実行するための設定をする
下記の順番に環境構築する。
| temp |
| from typing import Optional | |
| import torch | |
| import torch.nn.functional as F | |
| from torch import Tensor | |
| from torch.nn.modules.batchnorm import _BatchNorm | |
| # Masked Batch Normalization |
| # License: | |
| # I hereby state this snippet is below "threshold of originality" where applicable (public domain). | |
| # | |
| # Otherwise, since initially posted on Stackoverflow, use as: | |
| # CC-BY-SA 3.0 skyking, Glenn Maynard, Axel Huebl | |
| # http://stackoverflow.com/a/31047259/2719194 | |
| # http://stackoverflow.com/a/4858123/2719194 | |
| import builtins | |
| import types |
| #!/usr/bin/env python | |
| # -*- coding: UTF-8 -*- | |
| # Roughly based on: http://stackoverflow.com/questions/11443302/compiling-numpy-with-openblas-integration | |
| from __future__ import print_function | |
| import numpy as np | |
| from time import time |
| # License: | |
| # I hereby state this snippet is below "threshold of originality" where applicable (public domain). | |
| # | |
| # Otherwise, since initially posted on Stackoverflow, use as: | |
| # CC-BY-SA 3.0 skyking, Glenn Maynard, Axel Huebl | |
| # http://stackoverflow.com/a/31047259/2719194 | |
| # http://stackoverflow.com/a/4858123/2719194 | |
| import types |
この投稿では、iOSのファイルシステムについて理解し、データを永続化(iCloud含む)する方法を紹介する。尚、サンプルコードは動かない可能性もあるので参考程度にして下さい。
アプリがファイルシステムとやり取り出来る場所は、ほぼアプリのサンドボックス内のディレクトリに制限されている。新しいアプリがインストールされる際、インストーラーはサンドボックス内に複数のコンテナを作成し、図1に示す構成をとる。各コンテナには役割があり、Bundle Containerはアプリのバンドルを保持し、Data Containerはアプリとユーザ両方のデータを保持する。Data Containerは用途毎に、さらに複数のディレクトリに分けられる。アプリは、例えばiCloud Containerのように、実行時に追加のコンテナへのアクセスをリクエストすることもある。
図1. An iOS app operating within its own sandbox
| #!/usr/bin/python | |
| # -*- coding:utf-8 -*- | |
| """ | |
| Idea and code was taken from stackoverflow(). | |
| This sample illustrates how to | |
| + how to pass method of instance method | |
| to multiprocessing(idea and code was introduced | |
| at http://goo.gl/tRHN1D by torek). |