Instructions to use 00BER/dc-weather-prediction with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use 00BER/dc-weather-prediction with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy) # See https://github.com/keras-team/tf-keras for more details. from huggingface_hub import from_pretrained_keras model = from_pretrained_keras("00BER/dc-weather-prediction") - Notebooks
- Google Colab
- Kaggle
dc-weather-prediction / web /frontend /src /app /containers /default-layout /default-layout.component.html
| <!--sidebar--> | |
| <c-sidebar | |
| #sidebar="cSidebar" | |
| class="d-print-none sidebar sidebar-fixed" | |
| id="sidebar" | |
| visible | |
| > | |
| <c-sidebar-brand | |
| [brandFull]="{ | |
| src: 'assets/img/logo.png', | |
| width: 200, | |
| height: 46, | |
| alt: 'CoreUI Logo' | |
| }" | |
| [brandNarrow]="{ | |
| src: 'assets/img/brand/coreui-signet-white.svg', | |
| width: 46, | |
| height: 46, | |
| alt: 'CoreUI Logo' | |
| }" | |
| routerLink="./" | |
| > | |
| </c-sidebar-brand> | |
| <perfect-scrollbar [config]="perfectScrollbarConfig"> | |
| <!-- [perfectScrollbar]="perfectScrollbarConfig"--> | |
| <c-sidebar-nav | |
| [navItems]="navItems" | |
| dropdownMode="close" | |
| > | |
| </c-sidebar-nav> | |
| </perfect-scrollbar> | |
| <c-sidebar-toggler | |
| *ngIf="!sidebar.narrow" | |
| toggle="unfoldable" | |
| cSidebarToggle="sidebar" | |
| ></c-sidebar-toggler> | |
| </c-sidebar> | |
| <!--main--> | |
| <div class="wrapper d-flex flex-column min-vh-100 bg-light dark:bg-transparent"> | |
| <!--app-header--> | |
| <app-default-header class="mb-4 d-print-none header header-sticky" position="sticky" sidebarId="sidebar"></app-default-header> | |
| <!--app-body--> | |
| <div class="body flex-grow-1 px-3"> | |
| <c-container breakpoint="lg" class="h-auto"> | |
| <router-outlet></router-outlet> | |
| </c-container> | |
| </div> | |
| <!--app footer--> | |
| <app-default-footer></app-default-footer> | |
| </div> | |