This project aims to establish a deep neural network (DNN) surrogate modeling benchmark for the topology optimization of multi-component heat conduction problem, providing a set of representative DNN surrogates as baselines as well as the original code files for easy start and comparison.
-
- python:
- cuda:
- pytorch:
-
- A single GPU with at least 4GB.
pip install -r requirements.txt
The training, test and visualization can be accessed by running main.py file.
-
The data is available at the server address: BaiduPan
Password:u8fv(refer to Readme for samples). Remember to modify variabledata_rootin the configuration fileconfig/config_complex_net.ymlto the right server address. -
Training
python main.py -m train
or
python main.py --mode=train
-
Test
python main.py -m test --test_check_num=21
or
python main.py --mode=test --test_check_num=21
where variable
test_check_numis the number of the saved model for test. -
Prediction visualization
python main.py -m plot -v 21
or
python main.py --mode=plot --test_check_num=21
where variable
test_check_numvis the number of the saved model for plotting.
config: the configuration filenotebook: the test file fornotebookoutputs: the output results bytestandplotmodule. The test results is saved atoutputs/*.csvand the plotting figures is saved atoutputs/predict_plot/.src: including surrogate model, training and testing files.test.py: testing files.train.py: training files.plot.py: prediction visualization files.data: data preprocessing and data loading files.models: DNN surrogate models.utils: useful tool function files.
One tiny example for training and testing can be accessed based on the following instruction.
- Some training and testing data are available at
samples/data. - Based on the original configuration file, run
python main.pydirectly for a quick experience of this tiny example.