Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

armisticeai

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

armisticeai

  • 0.0.5
  • PyPI
  • Socket score

Maintainers
1

ArmisticeAI Python Library

The ArmisticeAI Python library provides convenient access to the ArmisticeAI API from applications written in Python. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses.

Installation

Install the packages listed in requirements.txt:

$ pip install torch torchvision transformers accelerate evaluate datasets peft scikit-learn flwr huggingface-hub peft
$ pip install git+https://github.com/tanyav2/bitsandbytes.git@tanya/lora-fix#egg=bitsandbytes

Then run:

$ pip install --upgrade armisticeai

which installs the latest version of the package.

If you want to modify the package, you need to install from source. In order to do so, you will need to use maturin which builds the Rust components of this package:

$ pip install maturin patchelf
$ maturin develop --release

Usage

TODO

Set up Admin

from armisticeai import Admin

admin = Admin(access_code="test-code", task="image-classification")

project_id = admin.create_project()

training_config = admin.create_training_config()

Set up Clients

from armisticeai import Client

client = Client(project_id='')

training_config = client.get_training_config()

client.train()

Full training run

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc