Instructions to use ShaswatRobotics/world_model_test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use ShaswatRobotics/world_model_test 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("ShaswatRobotics/world_model_test") - Notebooks
- Google Colab
- Kaggle
Update delta-iris/src/models/utils.py
Browse files
delta-iris/src/models/utils.py
CHANGED
|
@@ -13,7 +13,7 @@ import torch.nn as nn
|
|
| 13 |
import torch.nn.functional as F
|
| 14 |
from torch.optim import AdamW
|
| 15 |
|
| 16 |
-
from .data import Episode
|
| 17 |
|
| 18 |
|
| 19 |
def configure_optimizer(model: nn.Module, learning_rate: float, weight_decay: float, *blacklist_module_names) -> AdamW:
|
|
|
|
| 13 |
import torch.nn.functional as F
|
| 14 |
from torch.optim import AdamW
|
| 15 |
|
| 16 |
+
from src.data import Episode
|
| 17 |
|
| 18 |
|
| 19 |
def configure_optimizer(model: nn.Module, learning_rate: float, weight_decay: float, *blacklist_module_names) -> AdamW:
|