Skip to content

Commit

Permalink
deploy: 35c8126
Browse files Browse the repository at this point in the history
  • Loading branch information
sidchaini committed Feb 8, 2024
0 parents commit bff7837
Show file tree
Hide file tree
Showing 29 changed files with 3,625 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: c63f8469dddd2cae4394ccabc6f02df8
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added .doctrees/classifier.doctree
Binary file not shown.
Binary file added .doctrees/distances.doctree
Binary file not shown.
Binary file added .doctrees/environment.pickle
Binary file not shown.
Binary file added .doctrees/index.doctree
Binary file not shown.
Empty file added .nojekyll
Empty file.
7 changes: 7 additions & 0 deletions _sources/classifier.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
DistanceMetricClassifier module
===============================

.. automodule:: distclassipy.classifier
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions _sources/distances.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Distance module
===============

.. automodule:: distclassipy.distances
:members:
:undoc-members:
:show-inheritance:
63 changes: 63 additions & 0 deletions _sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
.. DistClassiPy documentation master file, created by
sphinx-quickstart on Wed Feb 7 16:42:22 2024.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to DistClassiPy's documentation!
========================================

DistClassiPy is a Python package for a distance-based classifier which can use several different distance metrics.

Installation
------------

To install DistClassiPy, run the following command:

.. code-block:: bash
pip install distclassipy
Usage
-----

Here's a quick example to get you started with DistClassiPy:

.. code-block:: python
import distclassipy as dcpy
clf = dcpy.DistanceMetricClassifier()
# Add your data and labels
clf.fit(data, labels)
# Predict new instances
predictions = clf.predict(new_data)
Features
--------

- Multiple distance metrics support
- Easy integration with existing data processing pipelines
- Efficient and scalable for large datasets

Contact
-------

For any queries, please reach out to Siddharth Chaini at sidchaini@gmail.com.



Indices and tables
------------------

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

API Documentation
-----------------

.. toctree::
:maxdepth: 2
:caption: API Reference

classifier
distances
Loading

0 comments on commit bff7837

Please sign in to comment.