A Style-Based Generator Architecture for Generative Adversarial Networks を読んだ
https://qiita.com/d-ogawa/items/d645509e3ccedc989680
非常に勉強になる記事でした。まとめられた方に非常に感謝です。
A Style-Based Generator Architecture for Generative Adversarial Networks を読んだ
https://qiita.com/d-ogawa/items/d645509e3ccedc989680
非常に勉強になる記事でした。まとめられた方に非常に感謝です。
ちなみにこれ、Particle ではなく、大量に出現(配置)する系の実装全てで参考になります。
Xcode11 リリースSwift 5.1 対応。iOS 13, tvOS 13, watchOS 6, macOS Catalina 10.15 SDK。
新しいインターフェース設計のための、SwiftUI framework, design tools
NVIDIA DLSS: Control and Beyond
https://www.nvidia.com/en-us/geforce/news/dlss-control-and-beyond/
NVIDIA Turing Architecture Deep Dive Whitepaper
https://www.nvidia.com/content/dam/en-zz/Solutions/design-visualization/technologies/turing-architecture/NVIDIA-Turing-Architecture-Whitepaper.pdf
cuDNN
https://docs.nvidia.com/deeplearning/sdk/cudnn-developer-guide/index.html
読んでおく
自分で試してみたい。
HokeyApp が Microsoft に買収されたニュースは知っていましたが、2018年末に Visual Studio App Center へと移管されてサービスが終了していたのですね。知らなかった。
「HokeyApp に最新上がりましたー」とか会話していた時期が懐かしい。
2019年7月28日-8月1日
アメリカ ロサンゼルス
2019年5月19日
Electronic Theater
Computer Animation Festival
2019年4月25日
Posters
2019年4月9日
Real-time Live!
2019年2月12日
Courses
2019年1月13日
Technical Papers
2019年12月17日-20日
オーストラリア ブリスベン
2019年8月12日
Posters
Real-time Live!
2019年7月15日
Computer Animation Festival
2019年6月25日
Courses
2019年5月20日
Technical Papers
Behind the Scenes with Stadia’s Style Transfer ML
https://stadia.dev/blog/behind-the-scenes-with-stadias-style-transfer-ml/
GDC 2019 での Google Stadia の発表会で、サービスの概要などと合わせて研究中の Style Transfer 技術のデモが公開されました。Stadia インスタンス上でリアルタイムにレンダリング結果のスタイル変換などが行われているようです。
import json
f = open('json_file.json', 'r')
json_dict = json.load(f)
print('json_dict:{}'.format(type(json_dict)))
counter = {}
for idx1 in range(len(json_dict)):
session = []
speaker = json_dict[idx1]["speakers"]
title = json_dict[idx1]["title"]
print(title)
for idx2 in range(len(speaker)):
company = speaker[idx2]["company"]
name = speaker[idx2]["name"]
print("{}, {}".format(company, name))
#if company not in session:
# session.append(company)
if company not in counter.keys():
counter[company] = 0
counter[company] += 1
print("------")
counter = sorted(counter.items(), reverse=True, key=lambda x:x[1])
for index in range(len(counter)):
v = counter[index]
print("{}, {}".format(v[0].replace(",", ""), v[1]))
Beautiful WordPress Themes
https://colorlib.com/wp/beautiful-wordpress-themes/
Gridlove と Interactive が魅力的