2020-09-01から1ヶ月間の記事一覧

pytorchのモデル/オプティマイザのzero_grad()の違い

pytorhにoptimizerのzero_grad()とモデルのzero_grad()があることに気づいたので違いを調べた.optimizer がmodel.paremeters()を対象にしている場合,つまり全パラメタを対象にしている場合は両者は同じもの. Optimizer.zero_grad() と nn.Module.zero_gra…

gccは3つの主要なステップからなる

gccは3つの主要なステップからなる 1. Cのソースをアセンブリに変換 gccはC compilerを呼び出し,それが.cをターゲットマシンのアセンブリコードの.sに変換する C compilerは前処理,lexical 解析,parse,code生成などのフェーズを持つ 2. assembly codeを…

プログラミング言語間の翻訳,Tree-to-tree Neural Networks for Program Translation

Tree-to-tree Neural Networks for Program Translation paper https://arxiv.org/abs/1802.03691 Xinyun Chen, Chang Liu, Dawn Song NeulIPS 2018 github データセット project まとめ どんなもの? プログラミング言語間の翻訳にdeepを使用した初の研究.…

階層構造のためのLSTM,Ordered Neurons: Integrating Tree Structures into Recurrent Neural Networks

Ordered Neurons: Integrating Tree Structures into Recurrent Neural Networks paper https://arxiv.org/abs/1810.09536 Yikang Shen, Shawn Tan, Alessandro Sordoni, Aaron Courville github https://github.com/yikangshen/Ordered-Neurons データセッ…

2次以上の特長の相互作用が可能なattention, X-Linear Attention Networks for Image Captioning

X-Linear Attention Networks for Image Captioning paper https://arxiv.org/abs/2003.14080 Yingwei Pan, Ting Yao, Yehao Li, and Tao Mei github https://github.com/JDAI-CV/image-captioning データセット COCO project まとめ どんなもの? image cap…

図を記述するプログラム生成,Learning to Infer Graphics Programs from Hand-Drawn Images

Learning to Infer Graphics Programs from Hand-Drawn Images paper http://papers.nips.cc/paper/7845-learning-to-infer-graphics-programs-from-hand-drawn-images https://arxiv.org/abs/1707.09627 (長い版) github https://github.com/ellisk42/TikZ …

GUIコード生成のレビュー論文,Front End Development Automation Tool: Missing Features?

Front End Development Automation Tool: Missing Features? paper https://ieeexplore.ieee.org/document/9033956 Hasitha Hiran Walpola, Guhanathan Poravi github データセット project まとめ どんなもの? GUI画像からコード生成するモデルのサーベイ…

スケッチからスタイルを考慮したDSL生成,CSSSketch2Code: An Automatic Method to Generate Web Pages with CSS Style

CSSSketch2Code: An Automatic Method to Generate Web Pages with CSS Style paper https://dl.acm.org/doi/abs/10.1145/3292448.3292455 github データセット project まとめ どんなもの? webページのスケッチ(スクショではない)からDSLを生成するencoder…

ルールとdeepの融合でデザインファイルからコード生成,Visual Compiler: Towards Translating Digital UI Design Draft to Front-End Code Automatically

Visual Compiler: Towards Translating Digital UI Design Draft to Front-End Code Automatically paper https://link.springer.com/chapter/10.1007/978-3-030-50017-7_28 github データセット project まとめ どんなもの? PhotoshopやXDなどのデジタルデ…

pix2codeをattentionやON-LSTMで拡張,A novel syntax-aware automatic graphics code generation with attention-based deep neural

A novel syntax-aware automatic graphics code generation with attention-based deep neural network paper https://www.sciencedirect.com/science/article/pii/S1084804520301107 github project まとめ どんなもの? GUI画像からDSLを生成するタスクで…

UIデザインの自動補完,Auto Completion of User Interface Layout Design Using Transformer-Based Tree Decoders

Auto Completion of User Interface Layout Design Using Transformer-Based Tree Decoders paper https://arxiv.org/abs/2001.05308 Yang Li, Julien Amelot, Xin Zhou, Samy Bengio, Si Si ICLR 2020 reject github project まとめ どんなもの? UIデザイ…