An open API service indexing awesome lists of open source software.

Projects in Awesome Lists by arrmansa

A curated list of projects in awesome lists by arrmansa .

https://github.com/arrmansa/Basic-UI-for-GPT-J-6B-with-low-vram

A repository to run gpt-j-6b on low vram machines (4.2 gb minimum vram for 2000 token context, 3.5 gb for 1000 token context). Model loading takes 12gb free ram.

gpt gpt-neo transformers

Last synced: 03 May 2025

https://github.com/arrmansa/basic-ui-for-gpt-j-6b-with-low-vram

A repository to run gpt-j-6b on low vram machines (4.2 gb minimum vram for 2000 token context, 3.5 gb for 1000 token context). Model loading takes 12gb free ram.

gpt gpt-neo transformers

Last synced: 22 Nov 2024

https://github.com/arrmansa/basic-ui-for-gpt-neo-with-low-vram

A basic ui for running gpt neo 2.7B on low vram (3 gb Vram minimum)

gpt gpt-3 gpt-neo transformers

Last synced: 22 Nov 2024

https://github.com/arrmansa/gpt-neo-limited-vram-cuda

A notebook that runs GPT-Neo with low vram (6 gb) and cuda acceleration by loading it into gpu memory in smaller parts.

gpt gpt-3 gpt-neo transformers

Last synced: 22 Nov 2024

https://github.com/arrmansa/saving-and-loading-large-models-pytorch

I am using this to load gpt-j-6b to prevent excessive ram usage

gpt-neo pytorch

Last synced: 22 Nov 2024

https://github.com/arrmansa/gpu-bandwidth-benchmark

A test to see the speed of transfer of tensors from cpu to gpu in pytorch with 2 cuda streams

Last synced: 22 Nov 2024

https://github.com/arrmansa/sofa-problem-using-simulated-annealing

Basic Proof of concept for using simulated annealing on the sofa problem to get a rough shape.

moving-sofa-problem python simulated-annealing-algorithm

Last synced: 16 Mar 2025

https://github.com/arrmansa/strongmock

StrongMock is a powerful mocking library for Python that leverages low-level ctypes functionality to provide extensive mocking capabilities. Some care may be needed while using this.

Last synced: 22 Nov 2024

https://github.com/arrmansa/auto-function-serving

A python package to offload a function call to an http server running on localhost automatically using a decorator. Compatible with multiprocessing, pickle, flask, fastapi, async etc..

fastapi flask http-server multiprocessing pypi-package python python-3 python3

Last synced: 04 Mar 2025

https://github.com/arrmansa/model-compression-by-partially-connected-layers

Decrease the model size by replacing fully connected layers with partially connected layers

Last synced: 16 Mar 2025

https://github.com/arrmansa/temporal-neuron-variance-pruning-demo

An implementation of Variance Pruning: Pruning Language Models via Temporal Neuron Variance by Berry Weinstein, Yonatan Belinkov

large-language-models machine-learning model-pruning pruning-while-training python pytorch pytorch-implementation

Last synced: 16 Mar 2025

https://github.com/arrmansa/fastapi-logging-tests

log unique request id, while replacing newlines for a good log format

fastapi logging python3

Last synced: 16 Mar 2025

https://github.com/arrmansa/my-originalish-recipies

A non-conventional rapid meringue recipe that results in a limited lifespan treat. (Warning - Uses magnesium)

baking cooking recipie recipies

Last synced: 16 Mar 2025

https://github.com/arrmansa/my-windows-laptop-setup-guide

My guide to setup windows in a way that is private, fast and updateless.

Last synced: 16 Mar 2025

https://github.com/arrmansa/leetcode-nice-solutions

Some solutions for leetcode problems that I found fun - either the algorithm or using numpy bruteforce where it shouldn't be

leetcode leetcode-python leetcode-python3 leetcode-solutions numpy python python3

Last synced: 16 Mar 2025

https://github.com/arrmansa/ping-capture-and-save

Interesting code for a stackoverflow question

Last synced: 16 Mar 2025

https://github.com/arrmansa/fast-word-equation-solver

https://codegolf.stackexchange.com/questions/34926/write-a-fast-word-equation-solver

Last synced: 16 Mar 2025

https://github.com/arrmansa/exponential-distribution-interval

using dice rolls, chunked dice rolls and the normal method

Last synced: 16 Mar 2025

https://github.com/arrmansa/square-sum-backtracking-with-numba

Tried out some stuff after looking at https://www.youtube.com/watch?v=G1m7goLCJDY and found that numba @jit does a decent speedup

Last synced: 16 Mar 2025

https://github.com/arrmansa/serve-function-with-python-httpserver

Uses HTTP Post requests and pickle object serialization to serve a function. Single thread Python HTTPServer with low overhead and simple code.

httpserver python3

Last synced: 16 Mar 2025

https://github.com/arrmansa/test-partially-connected-layer-pytorch

Running some tests on partially connected layers on pytorch

Last synced: 16 Mar 2025

https://github.com/arrmansa/sudoku-backtracking-with-numba

Uses numba to speed up sudoku backtracking by ~200x

backtracking numba sudoku sudoku-solver

Last synced: 16 Mar 2025

https://github.com/arrmansa/sampleproject-pypi

first test

Last synced: 16 Mar 2025

https://github.com/arrmansa/speedtest-using-ping

Inaccurate measure of (upload and download) speed using ping command on windows. Poorer accuracy at high speeds.

internet-speed internet-speed-checker internet-speed-test speedtest

Last synced: 16 Mar 2025

https://github.com/arrmansa/fast-gematria-calculator

tests on https://codegolf.stackexchange.com/questions/252679/fastest-gematria-calculator

Last synced: 16 Mar 2025

https://github.com/arrmansa/metaballs

Just some tests after watching https://www.youtube.com/watch?v=6oMZb3yP_H8 Cool stuff.

Last synced: 16 Mar 2025

https://github.com/arrmansa/unittest-module-mocking

Experiments with coverage and mocking modules

python python3 unit-testing

Last synced: 16 Mar 2025

https://github.com/arrmansa/calculating-pi-by-counting-collisions-with-numba

Based on a 3Blue1Brown video and G Galperin's work. 150x speedup with numba.

Last synced: 16 Mar 2025

https://github.com/arrmansa/chain-reaction-python

Some tests on the game of chain reaction

Last synced: 16 Mar 2025

https://github.com/arrmansa/codenames.game-response-decode

Decodes Network responses of https://codenames.game/ and reveals answers.

Last synced: 16 Mar 2025

https://github.com/arrmansa/modify-tuples-strings-inplace-python

Methods to modify python immutable python objects inplace using ctypes. Experimental. Warning - Do not use these in your code unless you are very, very sure what you are doing and have very good reasons.

ctypes python-string-maupulation python-string-operations python3 string string-manipulation tuple tuples tuples-in-python

Last synced: 16 Mar 2025

https://github.com/arrmansa/fast-fizzbuzz-python

FizzBuzz implementation in python that outputs to pv > /dev/null.

fizz-buzz fizzbuzz fizzbuzz-python

Last synced: 16 Mar 2025

https://github.com/arrmansa/smallest-area-of-a-convex-grid-polygon

https://codegolf.stackexchange.com/questions/253633/the-smallest-area-of-a-convex-grid-polygon

Last synced: 16 Mar 2025

https://github.com/arrmansa/phonic-frenzy-bot

Phonic Frenzy Bot

Last synced: 16 Mar 2025

https://github.com/arrmansa/python-multiprocessing-shared-ctype-value-benchmark

a benchmark to check the ipc speed compared to native speed when incrementing a counter

Last synced: 16 Mar 2025

https://github.com/arrmansa/test_website

just a test

Last synced: 16 Mar 2025

https://github.com/arrmansa/rust_test_1

just to check if it runs

Last synced: 16 Mar 2025