Topic de fiondehsuhao :

[STOP] On arrête TOUT et on CTRL+V !

Supprimé
  1. !/usr/bin/env python
  2. coding: utf-8

import os,sys
sys.path.insert(0,"..")
from glob import glob
import matplotlib.pyplot as plt
import numpy as np
import argparse
import skimage, skimage.io
import pprint

import torch
import torch.nn.functional as F
import torchvision, torchvision.transforms

import torchxrayvision as xrv

parser = argparse.ArgumentParser()
parser.add_argument('-f', type=str, default="", help=)
parser.add_argument('img_path', type=str)
parser.add_argument('-weights', type=str,default="densenet121-res224-all")
parser.add_argument('-feats', default=False, help=
, action='store_true')
parser.add_argument('-cuda', default=False, help=, action='store_true')
parser.add_argument('-resize', default=False, help=
, action='store_true')

cfg = parser.parse_args()

img = skimage.io.imread(cfg.img_path)
img = xrv.datasets.normalize(img, 255)

  1. Check that images are 2D arrays
    if len(img.shape) > 2:
    img = img[:, :, 0]
    if len(img.shape) < 2:
    print("error, dimension lower than 2 for image")
  1. Add color channel
    img = img[None, :, :]
  1. the models will resize the input to the correct size so this is optional.
    if cfg.resize:
    transform = torchvision.transforms.Compose([xrv.datasets.XRayCenterCrop(),
    xrv.datasets.XRayResizer(224)])
    else:
    transform = torchvision.transforms.Compose([xrv.datasets.XRayCenterCrop()])

img = transform(img)

model = xrv.models.get_model(cfg.weights)

output = {}
with torch.no_grad():
img = torch.from_numpy(img).unsqueeze(0)
if cfg.cuda:
img = img.cuda()
model = model.cuda()

if cfg.feats:
feats = model.features(img)
feats = F.relu(feats, inplace=True)
feats = F.adaptive_avg_pool2d(feats, (1, 1))
output["feats"] = list(feats.cpu().detach().numpy().reshape(-1))

preds = model(img).cpu()
output["preds"] = dict(zip(xrv.datasets.default_pathologies,preds[0].detach().numpy()))

if cfg.feats:
print(output)
else:
pprint.pprint(output)

on a pris l'apéro avec mes parents vendredi dernier, ma meuf qui parlait un peu de relation homme/femme avec ma sœur, et elle lui sort : "moi en 3 ans avec ton frère, j'ai jamais joui"

putain la haine, pourtant elle s'est jamais plainte, elle avait l'air d'aimer ça, c'est même elle dès fois qui fait le 1er pas pour qu'on baise.....

elle est frigide c'est possible?

Message édité le 22 février 2022 à 21:39:35 par courgette1418

Données du topic

Auteur
fiondehsuhao
Date de création
12 février 2022 à 17:35:57
Date de suppression
11 mars 2022 à 19:03:33
Supprimé par
Auteur
Nb. messages archivés
105
Nb. messages JVC
102
En ligne sur JvArchive 293