Skip to content

Instantly share code, notes, and snippets.

@uni-3
uni-3 / main.go
Created July 24, 2022 13:45
io.Writer.Writeに定義されている関数の方と名前を参照するスクリプト
package main
import (
"fmt"
"go/types"
"log"
"golang.org/x/tools/go/loader"
)
@uni-3
uni-3 / ising_cnn.ipynb
Created January 19, 2021 14:09
ising_cnn.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / 3_3_periodic_boundary_conditions.py
Created January 17, 2021 10:46
Periodic boundary conditions in 2D
import numpy as np
# Periodic boundary conditions 2D
a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print(a)
# 5: 2, 8, 4, 6
i, j = 1, 1
print(f"{a[i, j]}'s nearest neighbor" )
print(a[i-1, j], a[i+1, j], a[i, j-1], a[i, j+1])
@uni-3
uni-3 / mf_keras.ipynb
Last active August 2, 2020 04:55
matrix factorization with tensorflow
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / neumf.py
Created July 28, 2020 15:00
neural mf with tensorflow
from dataclasses import dataclass
import tensorflow as tf
# https://www.tensorflow.org/tutorials/quickstart/advanced
@dataclass
class NeuMF:
n_user: int
n_item: int
params: dict
@uni-3
uni-3 / Dockerfile.gcloud
Created July 27, 2020 08:02
docker file for gcloud and python3
FROM google/cloud-sdk:latest
ENV PYTHONUNBUFFERED=1
ENV PYTHONHASHSEED=14
WORKDIR /app/src
# python3
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev python3-venv python3-wheel \
@uni-3
uni-3 / ginza_mrph.ipynb
Created July 25, 2020 07:54
ginza_mrph.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / download_s3.py
Created July 6, 2020 12:40
download from s3
# codinf: utf-8
import boto3
from boto3.session import Session
BUCKET = 'bucket'
PATHS = ['data/test.csv']
session = Session(
aws_access_key_id='',
aws_secret_access_key='',
@uni-3
uni-3 / pytrend.ipynb
Last active May 31, 2020 22:58
pytrend.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / bayesian_ab.ipynb
Created May 17, 2020 18:31
bayesian_ab.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.