A quantum-inspired data compression and semantic search system
Project description
Parvus - Quantum-Inspired Data Compression
A sophisticated data compression and similarity search system that uses quantum-inspired techniques for efficient data storage and retrieval. The name "Parvus" comes from the Latin word for "small" or "reduced", reflecting the system's primary purpose of data reduction while maintaining semantic meaning.
Features
- Quantum-Inspired Compression: Utilizes advanced dimensionality reduction techniques
- Semantic Search: Performs similarity searches on compressed data
- GPU Acceleration: Supports GPU-accelerated processing for improved performance
- Interactive GUI: Streamlit-based UI for easy data manipulation
- Flexible Input: Supports both JSON and CSV file formats
Installation
From PyPI
# Basic installation
pip install parvus
# With GPU support
pip install parvus[gpu]
# For development
pip install parvus[dev]
From Source
- Clone the repository:
git clone https://github.com/yourusername/parvus.git
cd parvus
- Install dependencies:
pip install -r requirements.txt
For GPU acceleration (recommended):
- Install CUDA toolkit (if using NVIDIA GPU)
- Install GPU-enabled packages:
conda install -c pytorch faiss-gpu
Usage
Command Line Interface
# Launch the GUI
python -m parvus --gui
# Start the API server
python -m parvus --server
# Compress a file
python -m parvus -i data.json -o compressed_output/
# Load compressed data and query
python -m parvus -l compressed_output/ -q "your search query"
# Show help
python -m parvus --help
Starting the GUI
python -m parvus --gui
# or
python -m streamlit run gui.py
Using the Python API
from parvus import ParvusCompressor
# Initialize the system
compressor = ParvusCompressor()
# Load and compress data
embeddings = compressor.load_data_from_json('your_data.json')
compressor.compress(embeddings)
# Perform queries
results, distances = compressor.query("Your search query")
System Requirements
- Python 3.8+
- RAM: 16GB recommended
- GPU: NVIDIA GPU with CUDA support (optional)
- Storage: Depends on dataset size
Project Structure
parvus/
├── parvus.py # Core compression engine
├── gui.py # Streamlit-based interface
├── server.py # Server endpoints and API
├── requirements.txt # Project dependencies
├── README.md # Project documentation
├── CONTRIBUTING.md # Contribution guidelines
├── data/ # Sample and test data
│ ├── large_chat_history.json
│ ├── sample_data.csv
│ ├── sample_data.npy
│ └── test_data.json
├── models/ # Saved model states
│ ├── compressed_data.pkl
│ └── faiss_index.bin
├── tests/ # Test files and artifacts
│ ├── test_compressed.pkl
│ └── test_index.bin
└── archive/ # Archived/deprecated files
Essential Components
-
Core Files:
parvus.py: Main compression engine implementing quantum-inspired algorithmsgui.py: Interactive web interface built with Streamlitserver.py: Server endpoints and API for integrationrequirements.txt: Project dependencies
-
Data Directory:
- Contains sample data files
- Test datasets
- JSON and CSV examples
-
Models Directory:
- Saved compression states
- FAISS indices
- Serialized model data
-
Tests Directory:
- Test artifacts
- Compressed test data
- Test indices
Architecture
The system consists of three main components:
-
Core Compression Engine (
parvus.py)- Handles data compression and decompression
- Manages similarity search operations
- Provides GPU acceleration when available
-
Interactive Interface (
gui.py)- Web-based user interface
- File upload and management
- Query interface
- Results visualization
-
Server API (
server.py)- RESTful API endpoints
- Data management
- Remote compression operations
Performance
Performance metrics on a typical dataset:
- Compression Ratio: ~5x (varies by data)
- Query Time: <100ms (with GPU)
- Memory Usage: Proportional to dataset size
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
Support
For support, please open an issue in the GitHub repository or contact the maintainers.
Project details
Release history Release notifications | RSS feed
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 parvus-0.1.1.tar.gz.
File metadata
- Download URL: parvus-0.1.1.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f5e0a837d427916cb8c521f8bc7d1c5b61e029982491a116dd21f87812c2e20
|
|
| MD5 |
b42b39ebc9b1978f1d2537049f3abac4
|
|
| BLAKE2b-256 |
0a48d8b101ee84cfab715c66d39bde08b9d550d064498fa2bffd09816b7fc822
|
File details
Details for the file parvus-0.1.1-py3-none-any.whl.
File metadata
- Download URL: parvus-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
849f99d0bf9c476e6b20a4d67e7e859dd9a6c4f18fd091ab02ae77d7ae965de2
|
|
| MD5 |
b794f2022c18d28e724c0bace40ed4ec
|
|
| BLAKE2b-256 |
28b68803490d4c91065a0e4a0877b3f398d0481f713425308b01e47ea339b4cc
|