A pip-installable PyTorch model package for False Image Memorability prediction.
Project description
FalseResMem Model Package
A pip-installable Python package containing a custom PyTorch model (FalseResMem) for prediction of false alarms in visual memory recognition tasks.
Contact
Author: Anastasiia Mikhailova
Email: amikhailova@uchicago.edu
Installation
You can install the package from PyPI with pip:
pip install falseresmem
Usage
Here's a basic example of how to import and use the model after installation:
Low-level (raw tensors):
import torch
from falseresmem import load_model
model = load_model()
model.eval()
input_tensor = torch.randn(1, 3, 224, 224)
output = model(input_tensor)
print(output)
High-level (image file):
from falseresmem import predict_image
prob = predict_image("test.jpg").item()
print(f"False alarm probability: {prob:.3f}")
License
MIT
Changelog
v1.0.2 (2026‑03‑20)
- Fixed internal package name in resource loading: now uses
"falseresmem"instead of"FalseResMem"formodel.pt. - Updated README example to match:
from falseresmem import load_model.
v1.0.0 (2026‑03‑20)
- Now includes model weights for predictions, so the package works immediately after installation without requiring manual weight downloads.
v0.1.0 (2026‑03‑11)
- Initial release: package contains prediction code without bundled model weights.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file falseresmem-1.0.2.tar.gz.
File metadata
- Download URL: falseresmem-1.0.2.tar.gz
- Upload date:
- Size: 367.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41a02c90608b79351a7dd71a1a4ab555a36e7ebe54e50a0a4fc65038351b5aed
|
|
| MD5 |
c56e397d7b574cc95d0d5bc409f7bbce
|
|
| BLAKE2b-256 |
9d600cd8a1e2de5f3b4d0c5a45af5ed8bf8d6a4de3b178c2eeca299f6adeb7eb
|
File details
Details for the file falseresmem-1.0.2-py3-none-any.whl.
File metadata
- Download URL: falseresmem-1.0.2-py3-none-any.whl
- Upload date:
- Size: 367.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fdd949448cf5b9b7ef39d452512a872e203e471ba8c0af2cca0185b9860337f
|
|
| MD5 |
f717aae028695fac055bef39f86872dd
|
|
| BLAKE2b-256 |
769c0f7e438413a27180e8a6658e0d51818293836053ef81e6ee9a6040e910a6
|