We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addition of Check Module Structure and Error Handling in Logging in inti.py file in explainablei folder.
Handel errors and adding checks
""" This module initializes the explainable AI package. """
from .core import XAIWrapper import logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
all = ['XAIWrapper']
The text was updated successfully, but these errors were encountered:
👋 Thank you for raising an issue! We appreciate your effort in helping us improve. Our team will review it shortly. Stay tuned!
Sorry, something went wrong.
kindly add gssoc-ext label
@AHSANATIQ98 go ahead, have a look to exceptions.py, it was recently added and offers similar usecase
AHSANATIQ98
No branches or pull requests
Description
Addition of Check Module Structure and Error Handling in Logging in inti.py file in explainablei folder.
Problem it Solves
Handel errors and adding checks
Proposed Solution
explainableai/init.py
"""
This module initializes the explainable AI package.
"""
from .core import XAIWrapper
import logging
Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Define the public interface
all = ['XAIWrapper']
Alternatives Considered
Additional Context
The text was updated successfully, but these errors were encountered: