An open API service indexing awesome lists of open source software.

https://github.com/sinhaparth5/climate_rnn_project

Recurrent Neural Network (RNN) model to predict Delhi's daily temperature based on historical weather data, and the model successfully achieved this goal with high accuracy.
https://github.com/sinhaparth5/climate_rnn_project

matrix rnn

Last synced: 6 months ago
JSON representation

Recurrent Neural Network (RNN) model to predict Delhi's daily temperature based on historical weather data, and the model successfully achieved this goal with high accuracy.

Awesome Lists containing this project

README

          

# Climate RNN Project

## Run the project
```bash
using Pkg
Pkg.activate(".")
Pkg.instantiate()

for pkg in ["CSV", "CairoMakie", "ColorSchemes", "DataFrames", "Downloads",
"JLD2", "ProgressMeter", "UnicodePlots"]
Pkg.add(pkg)
end

# Now set up the ClimateRNN package
cd("ClimateRNN")
Pkg.activate(".")
Pkg.instantiate()

# Go back to main project and develop the package
cd("..")
Pkg.activate(".")
Pkg.develop(path="ClimateRNN")
Pkg.resolve()
Pkg.instantiate()

include("notebooks/exploration.jl")
```