Skip to content

Instantly share code, notes, and snippets.

View lewiuberg's full-sized avatar
💬
Constructive criticism is welcome 👍

Lewi Uberg lewiuberg

💬
Constructive criticism is welcome 👍
View GitHub Profile
@lewiuberg
lewiuberg / tutorial_3.ipynb
Last active September 2, 2020 07:52
nuc_machine_learning/Session 3/tutorial_3.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial_4.ipynb
Last active September 4, 2020 07:52
nuc_machine_learning/Session 4/tutorial_4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial 6.ipynb
Created September 14, 2020 13:13
nuc_machine_learning/Session 6/tutorial 6.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial_2.ipynb
Last active September 15, 2020 10:29
nuc_machine_learning/Session 2/tutorial_2.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial 7.ipynb
Last active September 17, 2020 09:16
nuc_machine_learning/Session 7/tutorial 7.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial 8.ipynb
Last active September 24, 2020 06:39
nuc_machine_learning/Session 8/tutorial 8.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / tutorial_5.ipynb
Last active September 24, 2020 06:41
nuc_machine_learning/Session 5/tutorial_5.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewiuberg
lewiuberg / snippets.md
Last active November 22, 2020 10:46
Code snippets I find usefull from time to time.
@lewiuberg
lewiuberg / functions.py
Last active December 28, 2020 09:48
Active Airport code 01
def unpack_list(lst: list) -> str:
"""
Divides a list or string of list items up, and separates them with commas.
Args:
lst (list/str): Data passed into the function.
Returns:
str: det input data seperated by commas.
"""