Skip to content

Commit

Permalink
add exercise 2
Browse files Browse the repository at this point in the history
  • Loading branch information
qualiaMachine authored Apr 18, 2024
1 parent 6515420 commit ddbdce0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions episodes/5-releasing-a-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,35 @@ Data scarcity
* **Resource efficiency**: Instead of training a model from the ground up, practitioners can use existing models as a starting point, saving time, computational resources, and energy.

:::::::::::::::::::::::::

:::::::::::::::::::::::::::::::::::::: challenge

### What pieces must be well-documented to ensure reproducible and responsible model sharing?
Discuss in small groups and report out: *Why do you believe it is or isn’t important to share ML models? How has model-sharing contributed to your experiences or projects?*

::::::::::::::::::::::::::::::::::::::::::::::::::

:::::::::::::: solution

### Solution

* Environment setup
* Training data
* How the data was collected
* Who owns the data: data license and usage terms
* Basic descriptive statistics: number of samples, features, classes, etc.
* Note any class imbalance or general bias issues
* Description of data distribution to help prevent out-of-distribution failures.
* Preprocessing steps.
* Data splitting
* Standardization method
* Feature selection
* Outlier detection and other filters
* Model architecture, hyperparameters and, training procedure (e.g., dropout or early stopping)
* Model weights
* Evaluation metrics. Results and performance. The more tasks/datasets you can evaluate on, the better.
* Ethical considerations: Include investigations of bias/fairness when applicable (i.e., if your model involves human data or affects decision-making involving humans)
* Contact info
* Acknowledgments
* Examples and demos (highly recommended)
:::::::::::::::::::::::::

0 comments on commit ddbdce0

Please sign in to comment.