Update README.md
Browse files
README.md
CHANGED
|
@@ -45,13 +45,12 @@ datasets:
|
|
| 45 |
|
| 46 |
|
| 47 |
## Introduction:
|
| 48 |
-
RadNet it is composed of 2 LSTM (Long-Short Term Memory) layers that helps the model to identify patterns from the dataset, that was trained on ([lucazsh/RadNet](https://huggingface.co/lucazsh/RadNet)), which will facilitate the prediction of the daily radiation amount as well as solar storms in LEO (Low Earth Orbit). This model was also featured by the
|
| 49 |
|
| 50 |
The radiation data was extracted from the NASA OSDR EDA API (https://visualization.osdr.nasa.gov/eda/), from the RR's missions (RR-1, RR-3, RR-4, RR-6, RR-8, RR-9, RR-12, RR-17, and RR-19).
|
| 51 |
|
| 52 |
-
## Installation
|
| 53 |
-
|
| 54 |
-
Make sure you have Python 3.10+ installed on your system. If not, you can download it from [python.org](https://www.python.org/).
|
| 55 |
|
| 56 |
Install dependencies:
|
| 57 |
```bash
|
|
@@ -60,7 +59,7 @@ pip install numpy json torch
|
|
| 60 |
|
| 61 |
## Code:
|
| 62 |
|
| 63 |
-
Below is
|
| 64 |
```
|
| 65 |
import json
|
| 66 |
import torch
|
|
|
|
| 45 |
|
| 46 |
|
| 47 |
## Introduction:
|
| 48 |
+
RadNet it is composed of 2 LSTM (Long-Short Term Memory) layers that helps the model to identify patterns from the dataset, that was trained on ([lucazsh/RadNet](https://huggingface.co/lucazsh/RadNet)), which will facilitate the prediction of the daily radiation amount as well as solar storms in LEO (Low Earth Orbit). This model was also featured by the __National Space Society (NSS)__ under the project __Aletheia__.
|
| 49 |
|
| 50 |
The radiation data was extracted from the NASA OSDR EDA API (https://visualization.osdr.nasa.gov/eda/), from the RR's missions (RR-1, RR-3, RR-4, RR-6, RR-8, RR-9, RR-12, RR-17, and RR-19).
|
| 51 |
|
| 52 |
+
## Installation
|
| 53 |
+
To install the dependencies, you need to make sure you have Python 3.10+ installed on your system. If not, you can download it from [python.org](https://www.python.org/).
|
|
|
|
| 54 |
|
| 55 |
Install dependencies:
|
| 56 |
```bash
|
|
|
|
| 59 |
|
| 60 |
## Code:
|
| 61 |
|
| 62 |
+
Below is the Python code that runs the RadNet model and displays the daily radiation dose and solar storm:
|
| 63 |
```
|
| 64 |
import json
|
| 65 |
import torch
|