-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With docs
- Loading branch information
Showing
15 changed files
with
58 additions
and
18 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Metadata-Version: 2.1 | ||
Name: distclassipy | ||
Version: 0.0.6 | ||
Version: 0.0.7 | ||
Summary: A python package for a distance-based classifier which can use several different distance metrics. | ||
Author-email: Siddharth Chaini <[email protected]> | ||
License: GNU GENERAL PUBLIC LICENSE | ||
|
@@ -700,3 +700,43 @@ Requires-Dist: scikit-learn>=1.4.0 | |
|
||
# DistClassiPy | ||
A python package for a distance-based classifier which can use several different distance metrics. | ||
|
||
## Installation | ||
To install DistClassiPy, run the following command: | ||
```bash | ||
pip install distclassipy | ||
``` | ||
|
||
## Usage | ||
Here's a quick example to get you started with DistClassiPy: | ||
```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 | ||
|
||
## Documentation | ||
|
||
For more detailed information about the package and its functionalities, please refer to the [official documentation](https://github.com/sidchaini/DistClassiPy). | ||
|
||
## Contributing | ||
Contributions are welcome! If you have suggestions for improvements or bug fixes, please feel free to open an [issue](https://github.com/sidchaini/DistClassiPy/issues) or submit a [pull request](https://github.com/sidchaini/DistClassiPy/pulls). | ||
|
||
## License | ||
DistClassiPy is released under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html). See the LICENSE file for more details. | ||
|
||
## Citation | ||
|
||
If you use DistClassiPy in your research or project, please consider citing the package. You can find citation information in the [CITATION.md](https://github.com/sidchaini/DistClassiPy/CITATION.md) file. | ||
|
||
|
||
## Contact | ||
For any queries, please reach out to Siddharth Chaini at [email protected]. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +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: af7b37c052b5b5b8f96e36de84367bad | ||
config: 623425d2921e87f0a88d4abca6ad56f1 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters