Skip to content

Instantly share code, notes, and snippets.

View LuisReyes98's full-sized avatar
👨‍💻
Learning about AI

Luis Rogelio Reyes Hernández LuisReyes98

👨‍💻
Learning about AI
View GitHub Profile

Tensorflow in WSL2 fixes

these notes are only about some fixes I need to do to properly use tensorflow in WSL2 and there was no information about them in the official tutorial

It needs conda to install all the dependencies

python3.9

This workspace was developed using conda and the WSL2 tutorial from tensorflow to use local GPU this tutorial is found at:

.scrollbar__seamless{
//Chrome and updated browsers Only
&::-webkit-scrollbar {
margin-top: 5px;
width: 5px;
}
&::-webkit-scrollbar-thumb {
background: rgba(126, 124, 124, 0.76);
border-radius: 10px;
@mixin keyframes($name) {
@-webkit-keyframes #{unquote($name)}{
@content;
}
@-moz-keyframes #{unquote($name)}{
@content;
}
@LuisReyes98
LuisReyes98 / popup_reader.lua
Created May 16, 2019 23:03
Lighttouch file reader for the popup model
-- Method to prepare a popup for the template standard
-- @params
-- popup_id : uuid : the id of the popup
function loadpopup(popup_id)
local popup = contentdb.read_document(popup_id)
local popup_button = contentdb.read_document(popup.popup_button)
popup.id = popup_id
popup.button = popup_button
return popup