Update model.py
Browse files
model.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 4 |
-
|
| 5 |
# --- Liquid Network ---
|
| 6 |
class LiquidLayer(nn.Module):
|
| 7 |
def __init__(self, input_dim, output_dim):
|
|
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 4 |
+
from huggingface_hub import hf_hub_download
|
| 5 |
# --- Liquid Network ---
|
| 6 |
class LiquidLayer(nn.Module):
|
| 7 |
def __init__(self, input_dim, output_dim):
|