[arXiv]
Authors: Gengmo Zhou, Zhifeng Gao, Zhewei Wei, Hang Zheng, Guolin Ke
We revisit the benchmark after simple traditional algorithms beat deep learning methods in conformation generation.
Data
[arXiv]
Authors: Gengmo Zhou, Zhifeng Gao, Zhewei Wei, Hang Zheng, Guolin Ke
We revisit the benchmark after simple traditional algorithms beat deep learning methods in conformation generation.
Data
Rem 選択中のセルの化学式の書式を整えるVBAマクロ | |
Sub 選択範囲の化学式の書式を整える() | |
Dim MyRange As Range | |
Dim i As Integer | |
Dim s2 As String, s3 As String | |
Dim PHflg As Boolean | |
For Each MyRange In Selection | |
For i = 2 To Len(MyRange.Text) | |
s2 = Mid(MyRange.Text, i - 1, 2) |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
From KERAS package | |
Fairly basic set of tools for real-time data augmentation on image data. | |
Can easily be extended to include new transformations, | |
new preprocessing methods, etc... | |
""" |