1 Star 0 Fork 0

沈欣炜/Renewables_Scenario_Gen_GAN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
util.py 699 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yize Chen 提交于 2018-04-10 11:21 . Add files via upload
#import cv2
import scipy.misc
#import ipdb
import numpy as np
from numpy import shape
#Some helper functions
def OneHot(X, n, negative_class=0.):
X = np.asarray(X).flatten()
if n is None:
n = np.max(X) + 1
Xoh = np.ones((len(X), n)) * negative_class
for i in range(len(X)):
m=X[i]
Xoh[i,m]=1
return Xoh
#For saving image-like scenarios map
def save_visualization(X, nh_nw, save_path='./vis/sample.jpg'):
h,w = X.shape[1], X.shape[2]
img = np.zeros((h * nh_nw[0], w * nh_nw[1], 3))
for n,x in enumerate(X):
j = n // nh_nw[1]
i = n % nh_nw[1]
img[j*h:j*h+h, i*w:i*w+w, :] = x
scipy.misc.imsave(save_path, img)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Dr-shen-xinwei/Renewables_Scenario_Gen_GAN.git
git@gitee.com:Dr-shen-xinwei/Renewables_Scenario_Gen_GAN.git
Dr-shen-xinwei
Renewables_Scenario_Gen_GAN
Renewables_Scenario_Gen_GAN
master

搜索帮助