Skip to content
View remytuyeras's full-sized avatar
  • Cambridge (MA)

Block or report remytuyeras

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
remytuyeras/README.md

Welcome!

This GitHub page contains projects related to my research, as well as some older projects that I have archived for reference.

Website Twitter Follow Website

C Python R CSS3 HTML5 JavaScript PHP

Anurag's GitHub stats Top Langs

What I'm Currently Working On

GitHub Sponsors X (formerly Twitter) Follow

I am currently focused full-time on the development of PyACES, a fully homomorphic encryption (FHE) scheme. In the future, I plan to use this scheme for implementing secure machine learning models, particularly in natural language processing (NLP).

Alongside this, I am developing Intuitionistic Language Models (ILM), a toolkit for language models based on hierarchical tokenization. ILM offers a structured alternative to standard tokenization by organizing tokens into multiple levels.

As these projects evolve, I plan to join GitHub Sponsors to allow those who find value in this work to support its continued development. If you're interested in advancing research in homomorphic encryption, structured language models, or privacy-preserving machine learning, your future support, whether through sponsorships, contributions, or discussions, would be greatly appreciated! 🚀


PyPI - Version PyPI - Python Version GitHub code size in bytes GitHub repo size

CodeFactor Grade (with branch) CodeFactor Grade (with branch) PyPI - Downloads GitHub Repo stars

This repository contains the Python implementation of ACES, a fully homomorphic encryption scheme introduced in the research paper "Constructing a Fully Homomorphic Encryption Scheme with the Yoneda Lemma".

I am actively working on a developer guide for the new codebase (see the dev branch).

Looking ahead, I aim to introduce the following enhancements (subject to funding or sponsorship):

🚀 Planned enhancements

  • 📁 Develop a function for generating cryptographic data with an efficient locator-director database (RAM).

  • 💾 Enable local storage of cryptographic data (ROM) and implement secure key management.

  • 🔒 Implement file encryption (ROM).

  • 🧮 Support complex data types (Int8, Int16, Int32, String, Bool) and their arithmetic operations.

  • ⚡ Optimize for CPU & GPU performance:

    • ⚙️ Utilize C, C++, or ctypes for efficient polynomial and ciphertext operations.

    • 🎮 Implement GPU acceleration using CUDA.

GitHub code size in bytes GitHub repo size GitHub Repo stars

Intuitionistic Language Models (ILM) is a toolkit for structured language models using hierarchical tokenization. Instead of large predefined vocabularies, ILM organizes tokens into multiple levels, capturing both local and global patterns.

Inspired by biological encoding principles, ILM represents language with a structured set of 64 base tokens, akin to DNA's 64 codons. By reducing reliance on memorized mappings and emphasizing hierarchy, ILM provides a foundation for more interpretable and efficient language models.

Current focus

  • Develop a hierarchical tokenizer that structures words into multi-level representations.

  • Provide a lightweight and flexible alternative to existing tokenization libraries.

  • Explore applications in language model training and structured learning.

🚀 Future goals

  • Expand ILM into a complete language model toolkit with tools for training, evaluating, and deploying models.

  • Refine the hierarchical tokenization approach to improve efficiency and interpretability.

  • Investigate theoretical foundations and potential applications in structured NLP models.

Pinned Loading

  1. aces aces Public

    A python library for the fully homomorphic encryption scheme ACES

    Python 15 3

  2. ilm ilm Public

    Intuitionistic Language Models

    Python