- https://www.biranchi.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from transformers import AutoTokenizer, AutoModelForCausalLM | |
| import torch | |
| tokenizer = AutoTokenizer.from_pretrained("distilgpt2") | |
| model = AutoModelForCausalLM.from_pretrained("distilgpt2", output_hidden_states=True) | |
| print(model) | |
| print(model.lm_head) | |
| print(model.transformer.wte) # Dimensions are: (Number of tokens in vocabulary, dimension of model) | |
| print(model.transformer.wte(torch.tensor(464))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%writefile remove_widgets.py | |
| # pip install nbformat | |
| import nbformat | |
| from nbformat import v4 | |
| import glob | |
| def remove_widgets_metadata(notebook_path): | |
| """Removes the 'metadata.widgets' entry from the notebook, preserving cell outputs.""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gradio : | |
| ========= | |
| pip install gradio | |
| ============================================================= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST Requests : | |
| =================== | |
| import requests | |
| url = 'https://clothing-model.default.kubeflow.mlbookcamp.com/v1/models/clothing-model:predict' | |
| data = { | |
| "instances": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from asyncio import run | |
| async def sum(): | |
| total = 0 | |
| for i in range(0,10): | |
| print(f'i : {i}') | |
| total += i | |
| return total |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Steps for Installing LabelImg : | |
| ================================= | |
| Step 1. | |
| git clone https://github.com/tzutalin/labelImg | |
| Step 2. | |
| sudo pip3 install pyqt5 lxml | |
| Step 3. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from imutils import face_utils | |
| import dlib | |
| import cv2 | |
| import time | |
| # initialize dlib's face detector (HOG-based) and then create | |
| # the facial landmark predictor | |
| cap = cv2.VideoCapture(0) |
NewerOlder