Skip to content

Instantly share code, notes, and snippets.

View biranchi2018's full-sized avatar

Biranchi biranchi2018

  • Bangalore, India
View GitHub Profile
Tensorflow Object Detection API :
==================================
https://www.youtube.com/watch?v=COlbP62-B-U&index=1&list=PLQVvvaa0QuDcNK5GeCQnxYnSSaar2tpku
https://github.com/tensorflow/models/tree/master/research/object_detection
https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md
@biranchi2018
biranchi2018 / bigram_tokens.py
Last active August 21, 2019 07:01
NLP - Calculating Bigram Tokens
import nltk
nltk.download('punkt')
import itertools
text = "today is 'Nayan's birthday. she loves ice cream. she is also fond of cream cake. we will celebrate her birthday with ice cream cake"
sentences = nltk.sent_tokenize(text)
words = [nltk.word_tokenize(sent) for sent in sentences]
print(words)
@biranchi2018
biranchi2018 / download.py
Last active June 5, 2021 12:56
Download a file using Python
import requests
url = 'https://www.facebook.com/favicon.ico'
r = requests.get(url, allow_redirects=True)
with open('facebook.ico', 'wb') as f:
f.write(r.content)
@biranchi2018
biranchi2018 / async_await.py
Created June 5, 2021 13:03
Async await in Python
from asyncio import run
async def sum():
total = 0
for i in range(0,10):
print(f'i : {i}')
total += i
return total
@biranchi2018
biranchi2018 / post_request.py
Created November 30, 2023 03:35
POST Requests
POST Requests :
===================
import requests
url = 'https://clothing-model.default.kubeflow.mlbookcamp.com/v1/models/clothing-model:predict'
data = {
"instances": [
@biranchi2018
biranchi2018 / gradio_all.py
Created November 30, 2023 03:44
My Gradio Gists
Gradio :
=========
pip install gradio
=============================================================