AutoDL icon indicating copy to clipboard operation
AutoDL copied to clipboard

Automated Deep Learning without ANY human intervention. 1'st Solution for AutoDL challenge@NeurIPS.

Results 25 AutoDL issues
Sort by recently updated
recently updated
newest added

Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.7.1 to 3.18.3. Release notes Sourced from protobuf's releases. Protocol Buffers v3.18.3 C++ Reduce memory consumption of MessageSet parsing This release addresses a Security Advisory for C++...

dependencies

在autodl/convertor/tabular_to_tfrecords.py 代码55行是先计算纬度再转化标签 但是我直接pip安装下来的autodl-gpu版本是先转化纬度再计算输出纬度 从而会转化为的0-1编码最大纬度为2 从而导致输出纬度计算错误 具体代码 output_dim = int(np.max(label)) + 1