From 7168b5015e442731f6a53aaf69159ce7b5bffc66 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 14:25:16 +0100 Subject: [PATCH 01/10] first push test scripts automatic slide from shared DB #49 --- .github/workflows/slides_reveal.yml | 44 +++++++++ slides/generate_slides.py | 66 ++++++++++++++ slides/output_ram.csv | 14 +++ .../template_bullets_vertical.md | 3 + .../template_iframe_background.md | 3 + slides/slide_templates/template_image.md | 4 + .../template_project_horizontal.md | 5 + slides/slide_templates/template_title.md | 5 + .../slide_templates/template_url_vertical.md | 1 + slides/slides.md | 91 +++++++++++++++++++ 10 files changed, 236 insertions(+) create mode 100644 .github/workflows/slides_reveal.yml create mode 100644 slides/generate_slides.py create mode 100644 slides/output_ram.csv create mode 100644 slides/slide_templates/template_bullets_vertical.md create mode 100644 slides/slide_templates/template_iframe_background.md create mode 100644 slides/slide_templates/template_image.md create mode 100644 slides/slide_templates/template_project_horizontal.md create mode 100644 slides/slide_templates/template_title.md create mode 100644 slides/slide_templates/template_url_vertical.md create mode 100644 slides/slides.md diff --git a/.github/workflows/slides_reveal.yml b/.github/workflows/slides_reveal.yml new file mode 100644 index 0000000..064ef0e --- /dev/null +++ b/.github/workflows/slides_reveal.yml @@ -0,0 +1,44 @@ +name: Generate Slides + +on: [push, workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout main repository + uses: actions/checkout@v3 + + - name: Checkout submodules + run: git submodule update --init --recursive + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.11 + + - name: Install Python dependencies + run: | + pip install pandas + pip install jinja2 + + - name: Generate slides using Python + run: python generate_slides.py + + - name: Install Pandoc + run: sudo apt-get install pandoc + + - name: Convert Markdown to HTML using reveal.js + run: | + pandoc slides.md -t revealjs -s -o slides.html -V revealjs-url=./reveal.js -V theme=black + + - name: Commit changes + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git add . + git commit -m "Generate slides" + git push + env: + github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/slides/generate_slides.py b/slides/generate_slides.py new file mode 100644 index 0000000..19b977f --- /dev/null +++ b/slides/generate_slides.py @@ -0,0 +1,66 @@ +''' +this script reads in the output_ram.csv file +and populates a markdown template writing to slides.md +which can be used to generate slides using reveal.js +''' +import pandas as pd +import os +from jinja2 import Environment, FileSystemLoader + +# Set up Jinja2 environment and load the templates +env = Environment(loader=FileSystemLoader('.')) +slide_project = env.get_template('slide_templates/template_project_horizontal.md') +slide_bullets = env.get_template('slide_templates/template_bullets_vertical.md') +slide_bullets2 = env.get_template('slide_templates/template_iframe_background.md') +slide_image = env.get_template('slide_templates/template_image.md') +slide_url = env.get_template('slide_templates/template_url_vertical.md') + +# Read the title slide from title_template.md +with open('slide_templates/template_title.md', 'r') as title_file: + markdown = title_file.read() + +# Read data from CSV to pandas +df = pd.read_csv('output_ram.csv') +#group by project +df = df.groupby('Project') + +# Add a slide for each project +for project in df['Project'].unique(): + # add project slide with description + description = df.get_group(project[0])['Project description'].values[0] + # make sure description is not nan + if description != description: + description = '' + slide_content = slide_project.render(Project=project[0], Project_content=description) + markdown += slide_content + + # check if value in Output type is RAM assessment: + if 'RAM assessment' in df.get_group(project[0])['Output type'].values: + # add slide template with image and use column "Output Media" as image_path + image_path = df.get_group(project[0])['Output Media'].values[0] + slide_content = slide_image.render(image_path=image_path) + markdown += slide_content + + # add vertical slides with output bullets + bullets = df.get_group(project[0])['Output description'] + #check if series contains NA + if not bullets.isnull().values.any(): + slide_content = slide_bullets.render(Bullets=bullets.tolist()) + markdown += slide_content + + # add vertical slides with url + url = df.get_group(project[0])['Landing page'] + if url.values[0] != '': + slide_content = slide_url.render(URL=url.values[0]) + markdown += slide_content + + # add combined slide + if (not bullets.isnull().values.any()) & (url.values[0] != ''): + slide_content = slide_bullets2.render(bullet=bullets.tolist()[0], URL=url.values[0]) + markdown += slide_content + +# Write the entire slide deck to a markdown file +with open('slides.md', 'w') as md_file: + md_file.write(markdown) + +print("Generated slides.md") diff --git a/slides/output_ram.csv b/slides/output_ram.csv new file mode 100644 index 0000000..a3b58fd --- /dev/null +++ b/slides/output_ram.csv @@ -0,0 +1,14 @@ +Project,Project description,Output type,Output description,Landing page,Output Media,Other Link,RAM,Active RAM engagement?,Date,Notes,Turing Programme / GC,Contact +AB Street,"An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking.",Stakeholder engagement,We worked with local councils to use the tool in public consultation and co-creation session.,https://a-b-street.github.io/docs/software/ltn/index.html,https://www.turing.ac.uk/blog/street-smart-putting-neighbourhood-design-hands-bristol-residents,,,Y,,,, +AI Standards Hub,,Stakeholder engagement,We facilitated external stakeholder workshops with organisations like Department for Transport,https://aistandardshub.org/,,,SL,Y,,,, +clim-recal,"The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders",, ,,,,"JD, SA",Y,,,, +Colouring Cities,,, ,https://colouringcities.org/,,https://github.com/orgs/colouring-cities/repositories,,Y,,,, +Data Safe Haven,"The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment.",,,,,,HS,Y,,,, +DfT Short Straits,"DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area",,We co-created resources for stakeholder engagement,,https://miro.com/app/board/uXjVMAOaBQA=/,,,Y,,,, +London Data Week,"London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI",,"with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute",https://www.londondataweek.org/,,,JD,N,,,, +Scivision,,,,https://sci.vision/,,https://github.com/alan-turing-institute/scivision,AC,Y,,,, +The Turing Way Practitioner’s Hub,,,,,,,CR,Y,,,, +PitchFest at AI UK,,,We contribute to Institute-wide flagship events,,,,,N,,,, +Other,,Conference Talks / Workshops,We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs,,https://miro.com/app/board/uXjVMQDvxC0=/,,"HS, CR, ALS",N,,,, +Other,,Scoping,We have been assessing RAM potential across Turing projects ,,,,,,,,, +The Trustworthy and Ethical Assurance platform,"The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system.",RAM assessment,,https://alan-turing-institute.github.io/AssurancePlatform/,https://user-images.githubusercontent.com/5104098/262439184-1c18c514-02c2-434e-abc1-dfcdff3769ba.png, ,"SA, KW",Y,28-9,https://hackmd.io/qbm6EGeNTmqL_t2HoYBJDA?both,, diff --git a/slides/slide_templates/template_bullets_vertical.md b/slides/slide_templates/template_bullets_vertical.md new file mode 100644 index 0000000..29e97d8 --- /dev/null +++ b/slides/slide_templates/template_bullets_vertical.md @@ -0,0 +1,3 @@ +
{% for bullet in Bullets %} +- {{ bullet }} +{% endfor %}
diff --git a/slides/slide_templates/template_iframe_background.md b/slides/slide_templates/template_iframe_background.md new file mode 100644 index 0000000..dc79862 --- /dev/null +++ b/slides/slide_templates/template_iframe_background.md @@ -0,0 +1,3 @@ +
+ {{ bullet }} +
diff --git a/slides/slide_templates/template_image.md b/slides/slide_templates/template_image.md new file mode 100644 index 0000000..2773372 --- /dev/null +++ b/slides/slide_templates/template_image.md @@ -0,0 +1,4 @@ +
+

RAM assessment

+ +
diff --git a/slides/slide_templates/template_project_horizontal.md b/slides/slide_templates/template_project_horizontal.md new file mode 100644 index 0000000..3478bcd --- /dev/null +++ b/slides/slide_templates/template_project_horizontal.md @@ -0,0 +1,5 @@ + +--- + +## {{Project}} +
{{Project_content}}
diff --git a/slides/slide_templates/template_title.md b/slides/slide_templates/template_title.md new file mode 100644 index 0000000..a815e3b --- /dev/null +++ b/slides/slide_templates/template_title.md @@ -0,0 +1,5 @@ + +# Ram outputs NEW + + + diff --git a/slides/slide_templates/template_url_vertical.md b/slides/slide_templates/template_url_vertical.md new file mode 100644 index 0000000..5b15f8a --- /dev/null +++ b/slides/slide_templates/template_url_vertical.md @@ -0,0 +1 @@ +
diff --git a/slides/slides.md b/slides/slides.md new file mode 100644 index 0000000..b42582a --- /dev/null +++ b/slides/slides.md @@ -0,0 +1,91 @@ + +# Ram outputs NEW + + + + +--- + +## AB Street +
An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking.
+- We worked with local councils to use the tool in public consultation and co-creation session. +
+ We worked with local councils to use the tool in public consultation and co-creation session. +
+--- + +## AI Standards Hub +
+- We facilitated external stakeholder workshops with organisations like Department for Transport +
+ We facilitated external stakeholder workshops with organisations like Department for Transport +
+--- + +## Colouring Cities +
+- +
+ +
+--- + +## Data Safe Haven +
The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment.
+--- + +## DfT Short Straits +
DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area
+- We co-created resources for stakeholder engagement +
+ We co-created resources for stakeholder engagement +
+--- + +## London Data Week +
London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI
+- with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+ with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+--- + +## Other +
+- We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs + +- We have been assessing RAM potential across Turing projects +
+ We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs +
+--- + +## PitchFest at AI UK +
+- We contribute to Institute-wide flagship events +
+ We contribute to Institute-wide flagship events +
+--- + +## Scivision +
+--- + +## The Trustworthy and Ethical Assurance platform +
The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system.
+

RAM assessment

+ +
+--- + +## The Turing Way Practitioner’s Hub +
+--- + +## clim-recal +
The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders
+- +
+ +
\ No newline at end of file From 690b7ee6491601b55e1c9c90cabcb74f48dc6c8b Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 17:29:15 +0100 Subject: [PATCH 02/10] Added reveal.js as a submodule --- .gitmodules | 3 +++ slides/reveal.js | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 slides/reveal.js diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8d60864 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "slides/reveal.js"] + path = slides/reveal.js + url = https://github.com/hakimel/reveal.js.git diff --git a/slides/reveal.js b/slides/reveal.js new file mode 160000 index 0000000..fc16cc8 --- /dev/null +++ b/slides/reveal.js @@ -0,0 +1 @@ +Subproject commit fc16cc8b11488f3c25c3a71a2083750459e3512d From a57c69f99e7c174c610b67fc8ce691c1f700c5f8 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 17:29:56 +0100 Subject: [PATCH 03/10] fix reveal workflow --- .github/workflows/slides_reveal.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/slides_reveal.yml b/.github/workflows/slides_reveal.yml index 064ef0e..e1e1065 100644 --- a/.github/workflows/slides_reveal.yml +++ b/.github/workflows/slides_reveal.yml @@ -24,7 +24,7 @@ jobs: pip install jinja2 - name: Generate slides using Python - run: python generate_slides.py + run: python slides/generate_slides.py - name: Install Pandoc run: sudo apt-get install pandoc From cbec134a32bc59739588df933b73fef779faca14 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 17:44:04 +0100 Subject: [PATCH 04/10] fix paths --- slides/generate_slides.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/slides/generate_slides.py b/slides/generate_slides.py index 19b977f..b2ce521 100644 --- a/slides/generate_slides.py +++ b/slides/generate_slides.py @@ -8,7 +8,8 @@ from jinja2 import Environment, FileSystemLoader # Set up Jinja2 environment and load the templates -env = Environment(loader=FileSystemLoader('.')) +script_dir = os.path.dirname(os.path.abspath(__file__)) +env = Environment(loader=FileSystemLoader(script_dir)) slide_project = env.get_template('slide_templates/template_project_horizontal.md') slide_bullets = env.get_template('slide_templates/template_bullets_vertical.md') slide_bullets2 = env.get_template('slide_templates/template_iframe_background.md') @@ -16,11 +17,11 @@ slide_url = env.get_template('slide_templates/template_url_vertical.md') # Read the title slide from title_template.md -with open('slide_templates/template_title.md', 'r') as title_file: +with open(os.path.join(script_dir, 'slide_templates/template_title.md'), 'r') as title_file: markdown = title_file.read() # Read data from CSV to pandas -df = pd.read_csv('output_ram.csv') +df = pd.read_csv(os.path.join(script_dir,'output_ram.csv')) #group by project df = df.groupby('Project') From abadc21bea8e41cce8b79309b0d2f4d61f46f4f8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 16:44:46 +0000 Subject: [PATCH 05/10] Generate slides --- slides.html | 261 ++++++++++++++++++++++++++++++++++++++++++++++++++++ slides.md | 91 ++++++++++++++++++ 2 files changed, 352 insertions(+) create mode 100644 slides.html create mode 100644 slides.md diff --git a/slides.html b/slides.html new file mode 100644 index 0000000..7134c67 --- /dev/null +++ b/slides.html @@ -0,0 +1,261 @@ + + + + + + slides + + + + + + + + + + + + +
+
+ + +
+

Ram outputs NEW

+ +
+
+ +

AB Street

+
+An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking. +
+
+
    +
  • We worked with local councils to use the tool in public consultation and co-creation session.
  • +
+
+
+ +
+
+We worked with local councils to use the tool in public consultation and co-creation session. +
+
+
+ +

AI Standards Hub

+
+
+
+
    +
  • We facilitated external stakeholder workshops with organisations like Department for Transport
  • +
+
+
+ +
+
+We facilitated external stakeholder workshops with organisations like Department for Transport +
+
+
+ +

Colouring Cities

+
+
+
+
    +
  • +
+
+
+ +
+
+
+
+
+ +

Data Safe Haven

+
+The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment. +
+
+ +
+
+
+ +

DfT Short Straits

+
+DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area +
+
+
    +
  • We co-created resources for stakeholder engagement
  • +
+
+
+ +
+
+We co-created resources for stakeholder engagement +
+
+
+ +

London Data Week

+
+London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI +
+
+
    +
  • with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute
  • +
+
+
+ +
+
+with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+
+
+ +

Other

+
+
+
+
    +
  • We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs

  • +
  • We have been assessing RAM potential across Turing projects

  • +
+
+
+ +
+
+We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs +
+
+
+ +

PitchFest at AI UK

+
+
+
+
    +
  • We contribute to Institute-wide flagship events
  • +
+
+
+ +
+
+We contribute to Institute-wide flagship events +
+
+
+ +

Scivision

+
+
+
+ +
+
+
+ +

The Trustworthy and Ethical Assurance platform

+
+The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system. +
+
+

+RAM assessment +

+ +
+
+ +
+
+
+ +

The Turing Way Practitioner’s Hub

+
+
+
+ +
+
+
+ +

clim-recal

+
+The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders +
+
+
    +
  • +
+
+
+ +
+
+
+
+
+
+ + + + + + diff --git a/slides.md b/slides.md new file mode 100644 index 0000000..b42582a --- /dev/null +++ b/slides.md @@ -0,0 +1,91 @@ + +# Ram outputs NEW + + + + +--- + +## AB Street +
An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking.
+- We worked with local councils to use the tool in public consultation and co-creation session. +
+ We worked with local councils to use the tool in public consultation and co-creation session. +
+--- + +## AI Standards Hub +
+- We facilitated external stakeholder workshops with organisations like Department for Transport +
+ We facilitated external stakeholder workshops with organisations like Department for Transport +
+--- + +## Colouring Cities +
+- +
+ +
+--- + +## Data Safe Haven +
The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment.
+--- + +## DfT Short Straits +
DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area
+- We co-created resources for stakeholder engagement +
+ We co-created resources for stakeholder engagement +
+--- + +## London Data Week +
London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI
+- with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+ with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+--- + +## Other +
+- We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs + +- We have been assessing RAM potential across Turing projects +
+ We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs +
+--- + +## PitchFest at AI UK +
+- We contribute to Institute-wide flagship events +
+ We contribute to Institute-wide flagship events +
+--- + +## Scivision +
+--- + +## The Trustworthy and Ethical Assurance platform +
The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system.
+

RAM assessment

+ +
+--- + +## The Turing Way Practitioner’s Hub +
+--- + +## clim-recal +
The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders
+- +
+ +
\ No newline at end of file From 0be75b2040d45231a001bdd3abc657284249b4d4 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 17:50:30 +0100 Subject: [PATCH 06/10] fix write to slide folder --- .github/workflows/slides_reveal.yml | 2 +- slides/generate_slides.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/slides_reveal.yml b/.github/workflows/slides_reveal.yml index e1e1065..4b526ca 100644 --- a/.github/workflows/slides_reveal.yml +++ b/.github/workflows/slides_reveal.yml @@ -31,7 +31,7 @@ jobs: - name: Convert Markdown to HTML using reveal.js run: | - pandoc slides.md -t revealjs -s -o slides.html -V revealjs-url=./reveal.js -V theme=black + pandoc slides/slides.md -t revealjs -s -o slides/slides.html -V revealjs-url=./reveal.js -V theme=black - name: Commit changes run: | diff --git a/slides/generate_slides.py b/slides/generate_slides.py index b2ce521..9c76ab0 100644 --- a/slides/generate_slides.py +++ b/slides/generate_slides.py @@ -61,7 +61,7 @@ markdown += slide_content # Write the entire slide deck to a markdown file -with open('slides.md', 'w') as md_file: +with open(os.path.join(script_dir,'slides.md'), 'w') as md_file: md_file.write(markdown) print("Generated slides.md") From 122d88e1fefdedf9a6bc28c036581456b956f98e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 16:51:08 +0000 Subject: [PATCH 07/10] Generate slides --- slides/slides.html | 261 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 261 insertions(+) create mode 100644 slides/slides.html diff --git a/slides/slides.html b/slides/slides.html new file mode 100644 index 0000000..7134c67 --- /dev/null +++ b/slides/slides.html @@ -0,0 +1,261 @@ + + + + + + slides + + + + + + + + + + + + +
+
+ + +
+

Ram outputs NEW

+ +
+
+ +

AB Street

+
+An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking. +
+
+
    +
  • We worked with local councils to use the tool in public consultation and co-creation session.
  • +
+
+
+ +
+
+We worked with local councils to use the tool in public consultation and co-creation session. +
+
+
+ +

AI Standards Hub

+
+
+
+
    +
  • We facilitated external stakeholder workshops with organisations like Department for Transport
  • +
+
+
+ +
+
+We facilitated external stakeholder workshops with organisations like Department for Transport +
+
+
+ +

Colouring Cities

+
+
+
+
    +
  • +
+
+
+ +
+
+
+
+
+ +

Data Safe Haven

+
+The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment. +
+
+ +
+
+
+ +

DfT Short Straits

+
+DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area +
+
+
    +
  • We co-created resources for stakeholder engagement
  • +
+
+
+ +
+
+We co-created resources for stakeholder engagement +
+
+
+ +

London Data Week

+
+London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI +
+
+
    +
  • with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute
  • +
+
+
+ +
+
+with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute +
+
+
+ +

Other

+
+
+
+
    +
  • We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs

  • +
  • We have been assessing RAM potential across Turing projects

  • +
+
+
+ +
+
+We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs +
+
+
+ +

PitchFest at AI UK

+
+
+
+
    +
  • We contribute to Institute-wide flagship events
  • +
+
+
+ +
+
+We contribute to Institute-wide flagship events +
+
+
+ +

Scivision

+
+
+
+ +
+
+
+ +

The Trustworthy and Ethical Assurance platform

+
+The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system. +
+
+

+RAM assessment +

+ +
+
+ +
+
+
+ +

The Turing Way Practitioner’s Hub

+
+
+
+ +
+
+
+ +

clim-recal

+
+The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders +
+
+
    +
  • +
+
+
+ +
+
+
+
+
+
+ + + + + + From 599bb0fbb9bc72f74b6c742881e43af3caf23662 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 17:54:46 +0100 Subject: [PATCH 08/10] Updated reveal.js to version 4.5.0 --- slides/reveal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/reveal.js b/slides/reveal.js index fc16cc8..0301ce5 160000 --- a/slides/reveal.js +++ b/slides/reveal.js @@ -1 +1 @@ -Subproject commit fc16cc8b11488f3c25c3a71a2083750459e3512d +Subproject commit 0301ce58ab185f7191696e16b1b6389f58df2892 From 482735ef71f3ea139d9d3bf3f40e8340c1d1d3e6 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 18:05:20 +0100 Subject: [PATCH 09/10] update reveal.js version --- slides/reveal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/reveal.js b/slides/reveal.js index 0301ce5..94d98ff 160000 --- a/slides/reveal.js +++ b/slides/reveal.js @@ -1 +1 @@ -Subproject commit 0301ce58ab185f7191696e16b1b6389f58df2892 +Subproject commit 94d98ff7d89e35c7d5b289ba387cdb0d42b30793 From 190ecc843e0e495fbe57e618d99886575aaf02b6 Mon Sep 17 00:00:00 2001 From: Sophie Arana Date: Mon, 11 Sep 2023 18:10:19 +0100 Subject: [PATCH 10/10] Removed slides from source dir --- slides.html | 261 ---------------------------------------------------- slides.md | 91 ------------------ 2 files changed, 352 deletions(-) delete mode 100644 slides.html delete mode 100644 slides.md diff --git a/slides.html b/slides.html deleted file mode 100644 index 7134c67..0000000 --- a/slides.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - slides - - - - - - - - - - - - -
-
- - -
-

Ram outputs NEW

- -
-
- -

AB Street

-
-An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking. -
-
-
    -
  • We worked with local councils to use the tool in public consultation and co-creation session.
  • -
-
-
- -
-
-We worked with local councils to use the tool in public consultation and co-creation session. -
-
-
- -

AI Standards Hub

-
-
-
-
    -
  • We facilitated external stakeholder workshops with organisations like Department for Transport
  • -
-
-
- -
-
-We facilitated external stakeholder workshops with organisations like Department for Transport -
-
-
- -

Colouring Cities

-
-
-
-
    -
  • -
-
-
- -
-
-
-
-
- -

Data Safe Haven

-
-The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment. -
-
- -
-
-
- -

DfT Short Straits

-
-DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area -
-
-
    -
  • We co-created resources for stakeholder engagement
  • -
-
-
- -
-
-We co-created resources for stakeholder engagement -
-
-
- -

London Data Week

-
-London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI -
-
-
    -
  • with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute
  • -
-
-
- -
-
-with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute -
-
-
- -

Other

-
-
-
-
    -
  • We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs

  • -
  • We have been assessing RAM potential across Turing projects

  • -
-
-
- -
-
-We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs -
-
-
- -

PitchFest at AI UK

-
-
-
-
    -
  • We contribute to Institute-wide flagship events
  • -
-
-
- -
-
-We contribute to Institute-wide flagship events -
-
-
- -

Scivision

-
-
-
- -
-
-
- -

The Trustworthy and Ethical Assurance platform

-
-The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system. -
-
-

-RAM assessment -

- -
-
- -
-
-
- -

The Turing Way Practitioner’s Hub

-
-
-
- -
-
-
- -

clim-recal

-
-The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders -
-
-
    -
  • -
-
-
- -
-
-
-
-
-
- - - - - - diff --git a/slides.md b/slides.md deleted file mode 100644 index b42582a..0000000 --- a/slides.md +++ /dev/null @@ -1,91 +0,0 @@ - -# Ram outputs NEW - - - - ---- - -## AB Street -
An open source urban modelling platform that invites users to add different street interventions to view the impact on traffic in the surrounding neighbourhood and city at large. A/B street can help residents and planners have a shared canvas for discussing potential street-level changes, such as planting street trees or installing a model filter to encourage cycling and walking.
-- We worked with local councils to use the tool in public consultation and co-creation session. -
- We worked with local councils to use the tool in public consultation and co-creation session. -
---- - -## AI Standards Hub -
-- We facilitated external stakeholder workshops with organisations like Department for Transport -
- We facilitated external stakeholder workshops with organisations like Department for Transport -
---- - -## Colouring Cities -
-- -
- -
---- - -## Data Safe Haven -
The Turing Data Safe Haven is an open-source framework for creating secure environments to analyse sensitive data. It provides a set of scripts and templates that will allow you to deploy, administer and use your own secure environment.
---- - -## DfT Short Straits -
DfT Short Straits is a collaboration between TRIC, DCE, and UA with Department for Transport for creating a Digital Twin of the Short Straits around Port of Dover, including road, port, and maritime systems in the area
-- We co-created resources for stakeholder engagement -
- We co-created resources for stakeholder engagement -
---- - -## London Data Week -
London Data Week is a free, public festival of events across the city, run by different organisations with different communities, to bring Londoners into the conversations about data and AI
-- with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute -
- with Turing and LOTI we convened the London data community, in partnership with organisations like Open Data Institute, Royal Statistical Society, GLA, Better Images of AI, and the Francis Crick Institute -
---- - -## Other -
-- We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs - -- We have been assessing RAM potential across Turing projects -
- We organize collaborationwWorkshops: Pathways to Sustainability for Research Projects and Outputs -
---- - -## PitchFest at AI UK -
-- We contribute to Institute-wide flagship events -
- We contribute to Institute-wide flagship events -
---- - -## Scivision -
---- - -## The Trustworthy and Ethical Assurance platform -
The platform brings together elements of Ethics and Assurance methodology like SAFED principles and argument patterns in a usable and accessible manner, and helps project teams to provide trustworthy and justifiable assurance about the processes they undertook when designing, developing, and deploying their technology or system.
-

RAM assessment

- -
---- - -## The Turing Way Practitioner’s Hub -
---- - -## clim-recal -
The aim of clim-recal is to provide non-climate scientists with an extensive guide to the application, disadvantages/advantages and use of bias adjustment methods, provide researchers with a collated set of resources for how to technically apply the methods, with a framework for open additions, and create accessible information on methods for non quantitative researchers and lay-audience stakeholders
-- -
- -
\ No newline at end of file