Skip to content

Instantly share code, notes, and snippets.

View katiie's full-sized avatar

Fadamiro Catherine katiie

View GitHub Profile
@katiie
katiie / medium-snippet-1
Last active March 22, 2021 17:22
typescript-med
import * as routes from "./routes";
const app: express.Application = express();
@katiie
katiie / run_model_locally.py
Last active July 4, 2024 22:54
Running Model locally with any model available on HuggingFace
from transformers import pipeline
modelname = (
input("Enter model name: ") or "TinyLlama/TinyLlama-1.1B-Chat-v1.0")
print(f"Using model: {modelname}")
model_name = "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
pipe = pipeline("text-generation", model=model_name)