Skip to content

Instantly share code, notes, and snippets.

View mkyeong91's full-sized avatar

MK mkyeong91

View GitHub Profile
@wooihaw
wooihaw / install_tf_cuda.md
Created August 4, 2025 04:42
Guideline to Install Tensorflow with Cuda on Ubuntu 24.04

Install TensorFlow with CUDA on Ubuntu 24.04

This document provides a step-by-step guide to setting up a Python virtual environment and installing TensorFlow v2.18.1 with GPU support on a machine running Ubuntu 24.04 with a compatible NVIDIA GPU.

Using a virtual environment is highly recommended to isolate your project's dependencies and avoid conflicts with other Python projects on your system.

Prerequisites

To use TensorFlow with CUDA, you must have a compatible NVIDIA GPU and the correct software installed.

@saumya66
saumya66 / attributeparser.cpp
Created June 22, 2020 19:35
Attribute Parser | C++ | HackerRank Solution
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n, q,i;
cin>>n>>q;
string temp;
vector<string> hrml;
vector<string> quer;
cin.ignore();
@danijar
danijar / blog_tensorflow_sequence_labelling.py
Last active January 12, 2024 15:18
TensorFlow Sequence Labelling
# Example for my blog post at:
# http://danijar.com/introduction-to-recurrent-networks-in-tensorflow/
import functools
import sets
import tensorflow as tf
def lazy_property(function):
attribute = '_' + function.__name__
@thigm85
thigm85 / multi_class_neural_netwrok_diagram
Created June 11, 2013 20:04
Graphviz script to draw a multi-class neural network diagram. Copy this to a `file.txt` file and then run `dot -Tpng -O file.txt` from command-line to get a .png figure with the diagram.
digraph G {
rankdir=LR
splines=line
nodesep=.05;
node [label=""];
subgraph cluster_0 {
color=white;