From 1ea19901e82420ccbfb8bcfe41c9223992566826 Mon Sep 17 00:00:00 2001 From: noopur Date: Thu, 24 Oct 2024 07:58:27 +0000 Subject: [PATCH] Remove test file --- .../workflow_interface_101_mnist.yml | 3 +- openfl-tutorials/experimental/test.ipynb | 123 ------------------ 2 files changed, 1 insertion(+), 125 deletions(-) delete mode 100644 openfl-tutorials/experimental/test.ipynb diff --git a/.github/workflows/workflow_interface_101_mnist.yml b/.github/workflows/workflow_interface_101_mnist.yml index 8361ecb56c2..fde72b10d61 100644 --- a/.github/workflows/workflow_interface_101_mnist.yml +++ b/.github/workflows/workflow_interface_101_mnist.yml @@ -29,10 +29,9 @@ jobs: - name: Run Notebook run: | - jupyter nbconvert --execute --to notebook ./openfl-tutorials/experimental/test.ipynb jupyter nbconvert --execute --to notebook ./openfl-tutorials/experimental/Workflow_Interface_101_MNIST.ipynb echo "Notebook run completed" - tar -cvf notebook.tar ./openfl-tutorials/experimental/Workflow_Interface_101_MNIST.nbconvert.ipynb ./openfl-tutorials/experimental/test.nbconvert.ipynb + tar -cvf notebook.tar ./openfl-tutorials/experimental/Workflow_Interface_101_MNIST.nbconvert.ipynb - name: Upload Artifacts uses: actions/upload-artifact@v4 diff --git a/openfl-tutorials/experimental/test.ipynb b/openfl-tutorials/experimental/test.ipynb deleted file mode 100644 index a1a43e36b3e..00000000000 --- a/openfl-tutorials/experimental/test.ipynb +++ /dev/null @@ -1,123 +0,0 @@ -{ - "cells": [ - { - "attachments": {}, - "cell_type": "markdown", - "id": "14821d97", - "metadata": {}, - "source": [ - "# Workflow Interface 101: Quickstart\n", - "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/intel/openfl/blob/develop/openfl-tutorials/experimental/Workflow_Interface_101_MNIST.ipynb)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "bd059520", - "metadata": {}, - "source": [ - "Welcome to the first OpenFL Experimental Workflow Interface tutorial! This notebook introduces the API to get up and running with your first horizontal federated learning workflow. This work has the following goals:\n", - "\n", - "- Simplify the federated workflow representation\n", - "- Help users better understand the steps in federated learning (weight extraction, compression, etc.)\n", - "- Designed to maintain data privacy\n", - "- Aims for syntatic consistency with the Netflix MetaFlow project. Infrastructure reuse where possible." - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "39c3d86a", - "metadata": {}, - "source": [ - "# What is it?" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "a7989e72", - "metadata": {}, - "source": [ - "The workflow interface is a new way of composing federated learning expermients with OpenFL. It was borne through conversations with researchers and existing users who had novel use cases that didn't quite fit the standard horizontal federated learning paradigm. " - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "fc8e35da", - "metadata": {}, - "source": [ - "# Getting Started" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "id": "4dbb89b6", - "metadata": {}, - "source": [ - "First we start by installing the necessary dependencies for the workflow interface" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "f7f98600", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Inside notebook\n" - ] - } - ], - "source": [ - "print(\"Inside notebook..\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c993362f", - "metadata": {}, - "outputs": [], - "source": [ - "print(\"Inside notebook again..\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "af36c74f", - "metadata": {}, - "outputs": [], - "source": [ - "print(\"End of notebook for testing purpose..\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "env-workspace-builder-openfl", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -}