Rapid Consulting

We are AI-enabled technologists

Every step—from whiteboard to deployment—is handled with rigor, precision, and expertise.

We design and deliver systems that are technically excellent, robust, future-proof and practical to operate.

We translate complex opportunities into elegant, production-grade solutions.

We build with precision, scalability, and a clear understanding of the business context.

car
Built for impact

Confidence through thoughtful engineering, continuous innovation, and uncompromising craftsmanship.

cube
Beyond Code

Strategy, maintainbility & cost-effectiveness. Accurate analysis and balanced decisions.

glasses
Measurable advantage

Our work is defined by outcomes: faster operations, smarter decisions, and capabilities that compound over time.

Application Layer Expert Developers

Transforming Ideas into Intelligent Solutions

Software consultants specializing in ruby, javascript, php and python. 

Empowering our clients with AI/ML integration, custom model development, and intelligent automation for forward-thinking businesses.

hand of god

"We use AI but we are Human."

Real thinking.

Real people.

Crafted, not generated.

Invented, not imitated.

The future needs 
more humanity.

Not less.

AI can replicate patterns.

Humans create meaning.

.

Latest Articles

All Articles

Pytorch cuda tries to allocate memory but it is not available

If you see an error similar to this one:

RuntimeError: CUDA out of memory. Tried to allocate 11.88 MiB (GPU 4; 15.75 GiB total capacity; 10.50 GiB already allocated; 1.88 MiB free; 3.03 GiB cached)

then, try reducing the batch size.

    train_loader = DataLoader(
        train_dataset,
        shuffle=False,
        pin_memory=False,
        batch_size=2, # was: 16
        num_workers=12,
    )

Canon Digital Photo Professional - free download

One of the pieces of software that I enjoy using very much is the Canon Digital Photo Professional. I originally got it a loooong time ago, back when I was taking photography classes. It came with one of the Canon cameras that I've bought over the years. At the time I used it to browse and sort my pictures, sure - and only years later I realized just how valuable and useful this piece of software is.

A recommendation to rename "criticality" -> "priority"

Just throwing two cents here - if the pandemic taught us 10 things, one of those ten gotta be that small details in communication matter very much. With that, I recommend renaming the word "criticality" -> "priority". The reasoning is as follows. And be careful with the red color in the smart sheet too, please, for the same reason. 

An example of a bug report and the technical conversation around it to resolve it

I recently had to justify the amount of effort that software development takes. Someone unfamiliar with the process thought that software development is easy, or that it doesnt take much time. They thought, for example, that an advanced reporting app can get pdf export capability if they just said to the development team, "implement pdf export." Literally, they thought that writing a single line of text like that in a specification document would result in the organization gaining that functionality.