Update README.md
Browse files
README.md
CHANGED
|
@@ -12,9 +12,9 @@ tags:
|
|
| 12 |
- partial-differential-equations
|
| 13 |
- surrogate-model
|
| 14 |
datasets:
|
| 15 |
-
-
|
| 16 |
metrics:
|
| 17 |
-
-
|
| 18 |
model-index:
|
| 19 |
- name: Fourier Neural Operator (FNO)
|
| 20 |
results:
|
|
@@ -22,65 +22,50 @@ model-index:
|
|
| 22 |
name: Solving Partial Differential Equations
|
| 23 |
type: text-generation # Or a more specific task type if available in Hugging Face tasks
|
| 24 |
dataset:
|
| 25 |
-
name:
|
| 26 |
type: custom
|
| 27 |
metrics:
|
| 28 |
-
- type:
|
| 29 |
value: 0.0 # Replace with actual metric value from training
|
| 30 |
|
| 31 |
-
model_name: "
|
| 32 |
-
model_author: "Neural Operator Community/Your Name"
|
| 33 |
-
model_summary: "A Fourier Neural Operator (FNO) checkpoint trained
|
| 34 |
-
model_architecture: "Fourier Neural Operator (FNO)"
|
| 35 |
-
model_type: "Neural Network for Operator Learning"
|
| 36 |
-
|
| 37 |
# Training Details
|
| 38 |
training_procedure:
|
| 39 |
code_repository: "[email protected]:neuraloperator/NNs-to-NOs.git"
|
| 40 |
training_script: "python train_single_res.py fno.yaml"
|
| 41 |
epochs: 10
|
| 42 |
-
software_framework: "PyTorch"
|
| 43 |
-
hardware_setup: "Not specified
|
| 44 |
-
training_duration: "Not specified
|
| 45 |
hyperparameters:
|
| 46 |
-
#
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
validation_strategy: "Not explicitly stated, assume standard validation split in fno.yaml or script." # Add details if known
|
| 56 |
|
| 57 |
# Intended Use
|
| 58 |
intended_uses:
|
| 59 |
-
- "Surrogate modeling for
|
| 60 |
-
- "Accelerating scientific simulations"
|
| 61 |
-
- "Research in neural operators
|
| 62 |
|
| 63 |
# Limitations and Biases
|
| 64 |
limitations:
|
| 65 |
-
- "Performance may
|
| 66 |
-
- "Generalizability is
|
| 67 |
-
- "
|
| 68 |
biases:
|
| 69 |
-
- "Potential biases inherent in the
|
| 70 |
|
| 71 |
# Ethical Considerations
|
| 72 |
ethical_considerations:
|
| 73 |
-
- "Ensure responsible deployment in
|
| 74 |
-
- "Transparency in
|
| 75 |
-
|
| 76 |
-
# Citation (if applicable)
|
| 77 |
-
citation: |
|
| 78 |
-
@article{your_article_citation,
|
| 79 |
-
title={Your Article Title},
|
| 80 |
-
author={Author One and Author Two},
|
| 81 |
-
journal={Journal Name},
|
| 82 |
-
year={Year},
|
| 83 |
-
volume={Volume},
|
| 84 |
-
number={Number},
|
| 85 |
-
pages={Pages}
|
| 86 |
-
}
|
|
|
|
| 12 |
- partial-differential-equations
|
| 13 |
- surrogate-model
|
| 14 |
datasets:
|
| 15 |
+
- ajsbsd/navier-stokes-2d-dataset # Replaced with specific dataset name
|
| 16 |
metrics:
|
| 17 |
+
- l2_error # Example metric
|
| 18 |
model-index:
|
| 19 |
- name: Fourier Neural Operator (FNO)
|
| 20 |
results:
|
|
|
|
| 22 |
name: Solving Partial Differential Equations
|
| 23 |
type: text-generation # Or a more specific task type if available in Hugging Face tasks
|
| 24 |
dataset:
|
| 25 |
+
name: Navier-Stokes 2D Dataset
|
| 26 |
type: custom
|
| 27 |
metrics:
|
| 28 |
+
- type: l2_error
|
| 29 |
value: 0.0 # Replace with actual metric value from training
|
| 30 |
|
| 31 |
+
model_name: "fno_navier_stokes_2d" # More specific name
|
| 32 |
+
model_author: "Neural Operator Community/Your Name"
|
| 33 |
+
model_summary: "A Fourier Neural Operator (FNO) checkpoint trained on the Navier-Stokes 2D dataset for solving partial differential equations."
|
|
|
|
|
|
|
|
|
|
| 34 |
# Training Details
|
| 35 |
training_procedure:
|
| 36 |
code_repository: "[email protected]:neuraloperator/NNs-to-NOs.git"
|
| 37 |
training_script: "python train_single_res.py fno.yaml"
|
| 38 |
epochs: 10
|
| 39 |
+
software_framework: "PyTorch"
|
| 40 |
+
hardware_setup: "Not specified, assumed standard GPU setup (e.g., NVIDIA V100 or A100)"
|
| 41 |
+
training_duration: "Not specified"
|
| 42 |
hyperparameters:
|
| 43 |
+
# Example hyperparameters from fno.yaml (please fill with actual values)
|
| 44 |
+
learning_rate: 0.001
|
| 45 |
+
optimizer: "Adam"
|
| 46 |
+
batch_size: 32
|
| 47 |
+
resolution: [64, 64]
|
| 48 |
+
modes: 12
|
| 49 |
+
width: 20
|
| 50 |
+
data_preprocessing: "Refer to the `NNs-to-NOs` repository and `fno.yaml` for data loading and preprocessing details specific to the Navier-Stokes 2D dataset."
|
| 51 |
+
validation_strategy: "Standard validation split as defined in `fno.yaml` or the `train_single_res.py` script."
|
|
|
|
| 52 |
|
| 53 |
# Intended Use
|
| 54 |
intended_uses:
|
| 55 |
+
- "Surrogate modeling for Navier-Stokes 2D equations."
|
| 56 |
+
- "Accelerating scientific simulations of fluid dynamics."
|
| 57 |
+
- "Research and development in neural operators for PDEs."
|
| 58 |
|
| 59 |
# Limitations and Biases
|
| 60 |
limitations:
|
| 61 |
+
- "Performance may degrade on out-of-distribution flow regimes or boundary conditions not present in the training data."
|
| 62 |
+
- "Generalizability is directly tied to the diversity and fidelity of the `ajsbsd/navier-stokes-2d-dataset`."
|
| 63 |
+
- "Scalability to higher-dimensional or more complex fluid dynamics problems needs further evaluation."
|
| 64 |
biases:
|
| 65 |
+
- "Potential biases inherent in the `ajsbsd/navier-stokes-2d-dataset`, such as specific Reynolds numbers or initial conditions."
|
| 66 |
|
| 67 |
# Ethical Considerations
|
| 68 |
ethical_considerations:
|
| 69 |
+
- "Ensure responsible deployment, especially in applications where simulation accuracy is critical (e.g., engineering design)."
|
| 70 |
+
- "Transparency in the model's limitations and the dataset's characteristics is paramount."
|
| 71 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|