Metadata-Version: 2.1
Name: X-AI
Version: 0.0.2
Summary: A Package for AI projects
Home-page: https://github.com/sujith2303/X_AI
Author: SUJITH ANUMALA
Author-email: sujithanumala23@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/sujith2303/X_AI/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

This is simple package for your easy AI projects.

[ImageClassification]

Classification is as simple as...

from X_AI.Vision.ImageClassification import Classify
classify = Classify.ImageClassification(path)  #path to imagefolder
classify._Train()

That's it your model is trained

To plot your results:-

classify.plot_results()

To predict on New images:

classify._predict()

To save your model/weights:

classify.save_model(path) 	#path to store the model
classify.save_weights(path) 	# path to store weights






