Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
recursionpharma
/
OpenPhenom
like
10
Follow
Recursion Pharmaceuticals
26
Feature Extraction
Transformers
Safetensors
MAE
custom_code
Model card
Files
Files and versions
Community
18
Train
Use this model
49f08fd
OpenPhenom
/
normalizer.py
Laksh
add mae model (
#15
)
6877289
unverified
3 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
torch
class
Normalizer
(torch.nn.Module):
def
forward
(
self, pixels: torch.Tensor
) -> torch.Tensor:
pixels = pixels.
float
()
return
pixels /
255.0