Skip to content

Instantly share code, notes, and snippets.

View swghosh's full-sized avatar

Swarup Ghosh swghosh

View GitHub Profile
@djdongjin
djdongjin / gsoc.md
Last active September 4, 2020 16:49
GSoC 2020 Summary

Google Summer of Code with TensorFlow

Mentors:

  • Elizabeth Kemp
  • Jaeyoun Kim

This is a summary of my GSoC project: New Tools for TensorFlow Hub. In this project, I extended and created tools that build models from command line directly. At the end, I reproduced a RoBERTa model using TF2.

A detailed blog post about the project can be found at TBD.

@narate
narate / create-hotspot.md
Last active September 7, 2024 18:03
Create Wi-Fi Hotspot on Linux using nmcli

Create a Wi-Fi hotspot on Linux using nmcli

Original post : https://unix.stackexchange.com/a/310699

nmcli con add type wifi ifname wlan0 con-name Hostspot autoconnect yes ssid Hostspot
nmcli con modify Hostspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli con modify Hostspot wifi-sec.key-mgmt wpa-psk
nmcli con modify Hostspot wifi-sec.psk "veryveryhardpassword1234"
@joelouismarino
joelouismarino / googlenet.py
Last active October 9, 2023 07:09
GoogLeNet in Keras
from __future__ import print_function
import imageio
from PIL import Image
import numpy as np
import keras
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, AveragePooling2D, ZeroPadding2D, Dropout, Flatten, Concatenate, Reshape, Activation
from keras.models import Model
from keras.regularizers import l2
from keras.optimizers import SGD