赞
踩
有很多开源的生成AI图片的库可以使用,以下是其中一些常用的库以及简单的示例代码:
import dnnlib import dnnlib.tflib as tflib # 初始化TensorFlow tflib.init_tf() # 加载模型 url = 'https://nvlabs-fi-cdn.nvidia.com/stylegan2-ada/pretrained/ffhq.pkl' with dnnlib.util.open_url(url) as f: generator_network, discriminator_network, Gs_network = pickle.load(f) # 生成一张图片 rnd = np.random.RandomState(4) latents = rnd.randn(1, Gs_network.input_shape[1]) images = Gs_network.run(latents, None, truncation_psi=0.7, randomize_noise=True, output_transform=dict(func=tflib.convert_images_to_uint8, nchw_to_nhwc=True)) PIL.Image.fromarray(images[0], 'RGB').show()
DALL-E API:这是由OpenAI推出的一种人工智能图像生成工具,它可以基于自然语言描述生成图像。以下是使用DALL-E API生成一张图像的示例代码:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。