-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
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
[Proposal] Retrofitting the standard for an open AI audience #58
Comments
Status & Next Steps:
|
Prioritization: should come after #59 |
We have expert inputs from Lea Gimpel on how the DPG standard can be better retrofitted for Open AI digital solutions. Reproducibility: A nice way to think about transparent documentation of AI models is also Google’s idea of “model cards” (see here and here the corresponding article; in addition, Timnit Gebru also suggested “datasheets for datasets”, which could be an interesting tool for the discussion around open data as DPG) Accessibility: Interpretability: Independency: |
We will resolve this on #130 latest on the topic of AI as a part of the standard. |
The current standard attempts to address the needs for indicator 6 (Mechanism for Extracting Data) better for a software context than AI. There is still room for being more explicit. This issue seeks to outline key questions of concern regarding open ai models and data extraction mechanisms for non-personally identifiable information:
open AI model
, what qualifies to becomenon-personally identifiable information
?Model persistence or serialization can occur through:
Scikit learn
, save the model usingPickle
(standard Python objects) orJoblib
(efficiently serializing Python objects with NumPy arrays).Keras
andTensorflow
, save the model inHDF5
format with.h5
extension.PyTorch
, conventional approaches includePickle
, using either a.pt
or.pth
file extension etc.PS: While for software the current wording in indicator 6 suffices, for AI models including the following keywords would make it clearer:
model persistence/ serialization.
The text was updated successfully, but these errors were encountered: