Skip to content
View Joshi-Atharva's full-sized avatar

Block or report Joshi-Atharva

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Pinned Loading

  1. ANN-from-scratch-using-NumPy ANN-from-scratch-using-NumPy Public

    An ANN Model for image classification task over the MNIST dataset from scratch using NumPy library.

    Python 1

  2. Denoising-Autoencoder Denoising-Autoencoder Public

    A learning project wherein I implemented a CNN based autoencoder for denoising images. Used the PyTorch framework.Trained separate models on BSD100 and FFHQ datasets with gaussian noise.

    Jupyter Notebook 1

  3. BigInt-implementation-in-C BigInt-implementation-in-C Public

    A C implementation of arbitrary-precision integers (BigInt) supporting 1024-bit unsigned integers with an additional boolean sign variable. The implementation uses base-32 representation for effici…

    C

  4. Expense-Tracking-system-using-BTrees Expense-Tracking-system-using-BTrees Public

    Modern database management system uses advanced datastructures like B+ Trees, which are closely related, and extension rather, to B-Trees. The motive of this project was to implement the CRUD opera…

    C

  5. Heap-Management-simulation-in-C Heap-Management-simulation-in-C Public

    Simulation of Heap management using First Fit strategy. Used Array of structures to simulate a heap storage class, storing pointers for linking free and allocated location (an implicit double linke…

    C

  6. Implementation-of-Symbol-Table-to-handle-nested-scopes Implementation-of-Symbol-Table-to-handle-nested-scopes Public

    A compiler records the variable names used in the source program along with its attributes and stores it in a data structure called a symbol table. I have simulated it in C using a hash table for a…

    C