Generic LLMs can be downloaded from the open-source platform at Hugging Face Models. Taking the QwQ-32B LLM as an example, you can directly access the following link:https://huggingface.co/Qwen/QwQ-32B/tree/main.
If you're in Mainland China and find Hugging Face downloads slow, please refer to the "downloaded model by Python" file. Note that you need to first install the required module via pip install huggingface_hub.

The data can be downloaded from the official website at GitHub - ansys/pyaedt: AEDT Python Client Packag. Note that this data is updated regularly, so ensure your Python environment settings stay consistent with it.

To analyze the data files of each new release, we developed a data statistical code. This code is designed to load and preprocess the code data, remove unnecessary elements such as comments and extra spaces, and collect information including the number of records, file paths, creation and modification times, code line counts, and encoding formats. The statistical code helps us systematically evaluate and understand the changes and features of each new version of the software. For detailed code, refer to Data statistics.
We've trained data using 6 generic models. You can find the source code in the repository by looking for files starting with "model training for [Name]". Due to the long training time, we only show the training results in pictures instead of videos. For detailed code, refer to
We employed two methods for model validation. The first method involves directly writing text in Python to generate python code for invoking PyAEDT. For detailed code,refer to verification model method-1
The second method utilizes a graphical user interface (GUI) to input files, thereby generating the python code by verification model method-2
Users can iterate through numerous parameters (geometric, materials, meshing, boundary conditions, etc.) to explore hotspots, reducing design time consumption and enhancing efficiency.

In order to better understand the execution flow and structure of our complex code, we use Code2Flow(a Python tool, a tool that automatically generates flowcharts and call graphs from Python code. All the code utilized in this project has been visualized using Code2flow, making it easier for others to grasp the execution flow and dependencies within the codebase. Code2flow automatically generates flowcharts and call graphs to provide a clear visual representation of the code structure.
pip install pyaedt==0.14.0
📋 A template README.md for code accompanying a Machine Learning paper
This repository is the official implementation of My Paper Title.
📋 Optional: include a graphic explaining your approach/main result, bibtex entry, link to demos, blog posts and tutorials
To install requirements:
pip install -r requirements.txt
📋 Describe how to set up the environment, e.g. pip/conda/docker commands, download datasets, etc...
To train the model(s) in the paper, run this command:
python train.py --input-data <path_to_data> --alpha 10 --beta 20
📋 Describe how to train the models, with example commands on how to train the models in your paper, including the full training procedure and appropriate hyperparameters.
To evaluate my model on ImageNet, run:
python eval.py --model-file mymodel.pth --benchmark imagenet
📋 Describe how to evaluate the trained models on benchmarks reported in the paper, give commands that produce the results (section below).
You can download pretrained models here:
- My awesome model trained on ImageNet using parameters x,y,z.
📋 Give a link to where/how the pretrained models can be downloaded and how they were trained (if applicable). Alternatively you can have an additional column in your results table with a link to the models.
Our model achieves the following performance on :
| Model name | Top 1 Accuracy | Top 5 Accuracy |
|---|---|---|
| My awesome model | 85% | 95% |
📋 Include a table of results from your paper, and link back to the leaderboard for clarity and context. If your main result is a figure, include that figure and link to the command or notebook to reproduce it.
📋 Pick a licence and describe how to contribute to your code repository.




