-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Continued outline for scenario 3 * Updates to scenarios 3 and 4 * Updates to scenarios 3 and 4 * Code for scenario 3 * Code for scenario 3 * Code for scenario 3 * Updated docs for scenario 3 * Updated docs for scenario 3 * Updated docs for scenario 3 * Updated docs for scenario 3 * Fixing Notebook that download the contents of an Object store bucket (source) then push those contents to another Object store bucket (target)
- Loading branch information
1 parent
ac08a09
commit 02293eb
Showing
6 changed files
with
497 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Open Innovation - Integrating a new piece of tooling into OpenShift AI Workspace | ||
exercise: 3 | ||
date: '2024-06-05' | ||
tags: ['openshift','ai','kubernetes'] | ||
draft: false | ||
authors: ['default'] | ||
summary: "Let's add some tooling in satndardised way available to all data science users" | ||
--- | ||
|
||
As a sales team you've got an upcoming demo with the Acme Financial Services data science team, who have been training models on their laptops. | ||
Their data scientists are given directives on what tools to use - but in reality, what each one uses has drifted away from what's been directed, resulting in inconsistencies in tooling used across users and more importantly between deveopment and production environments | ||
You are required to show a solution for this problem on OpenShift AI. | ||
|
||
## 4.1 - Test a new library inside a Jupyter Notebook | ||
|
||
For this task, your team are required to |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"model": "/mnt/models/", | ||
"prompt": [ | ||
"Give me the history of Arbour hill prison in Dublin" | ||
], | ||
"max_tokens": 1028, | ||
"temperature": 1, | ||
"top_p": 1, | ||
"n": 1, | ||
"stream": false, | ||
"logprobs": 0, | ||
"echo": false, | ||
"stop": [ | ||
"string" | ||
], | ||
"presence_penalty": 0, | ||
"frequency_penalty": 0, | ||
"best_of": 2, | ||
"user": "string", | ||
"top_k": -1, | ||
"ignore_eos": false, | ||
"use_beam_search": false, | ||
"stop_token_ids": [ | ||
0 | ||
], | ||
"skip_special_tokens": true, | ||
"spaces_between_special_tokens": true, | ||
"repetition_penalty": 1, | ||
"min_p": 0, | ||
"include_stop_str_in_output": false, | ||
"length_penalty": 1 | ||
} |
Oops, something went wrong.