Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use my own data slice image for classification detection #46

Open
LGC163 opened this issue Dec 18, 2024 · 4 comments
Open

Use my own data slice image for classification detection #46

LGC163 opened this issue Dec 18, 2024 · 4 comments

Comments

@LGC163
Copy link

LGC163 commented Dec 18, 2024

Hello, your work is very good, congratulations on your work on CHIEF, it is worth learning.

Yes, I have some private pathological section data images, and I want to test them with your CHIEF for classification and detection in the cancer cell detection section.

However, I have a small question:

  • I understand that the code of that part is to directly detect the generated image slice pt file for prediction, what I want to know is how to convert my own data set image to the corresponding pt file, and what kind of pt file to convert, did you give it in your work?

Thank you.

@LGC163 LGC163 closed this as completed Dec 18, 2024
@LGC163 LGC163 reopened this Dec 18, 2024
@Dadatata-JZ
Copy link
Collaborator

Hi @LGC163

Check this thread.

#37 (comment)

@LGC163
Copy link
Author

LGC163 commented Dec 22, 2024

Thank you very much for taking time out of your busy schedule to reply me. @Dadatata-JZ

So what you mean is that in the GET_CHIEF_patch_feature.py file, which I have read, there is indeed code about reading the data of.tif image type and output the tensor of the image. Here's my question:

  1. Does that mean that our image data must be of.TIF type?
  2. And how to save this as the corresponding pt file and save the name as the label in the corresponding csv data file?

I'd appreciate your advice.

import torch, torchvision
import torch.nn as nn
from torchvision import transforms
from PIL import Image
from models.ctran import ctranspath

mean = (0.485, 0.456, 0.406)
std = (0.229, 0.224, 0.225)
trnsfrms_val = transforms.Compose(
    [
        transforms.Resize(224),
        transforms.ToTensor(),
        transforms.Normalize(mean = mean, std = std)
    ]
)


model = ctranspath()
model.head = nn.Identity()
td = torch.load(r'./model_weight/CHIEF_CTransPath.pth')
model.load_state_dict(td['model'], strict=True)
model.eval()


image = Image.open("./exsample/exsample.tif")
image = trnsfrms_val(image).unsqueeze(dim=0)
with torch.no_grad():
    patch_feature_emb = model(image) # Extracted features (torch.Tensor) with shape [1,768]
    print(patch_feature_emb.size())

@Dadatata-JZ
Copy link
Collaborator

Hi @LGC163

(1) Nope. TIFF is just one of the supported formats—it’s not limited to CHIEF but applies to whole-slide images in general. The file types depend on what your scanning systems produce. Common formats include SVS, NDPI, and TIFF.

(2) You’ll need to run the standard pipeline, that is, tiling the WSIs and then extracting tile-level features using feature extractors like cTransPath, UNI, Phikon, Lunit, etc.

If you’re new to the field (computation pathology), it might help to check out some prior work that focuses on facilitating processing pipelines. Here is an example. There are tens more on git.

https://github.com/PathologyDataScience/histolab?tab=readme-ov-file#getting-started

Lmk? Cheers

@guofeng97
Copy link

Hi! @Dadatata-JZ
I have a problem running train_valid_test.py from Tumor_origin:
fileNotFoundError: [Errno 2] No such file or directory: '. /feature/tcga/TCGA-US-A774-01Z-00-DX1.522FF138-153F-488A-BBBC-5EA68EFD80C7.pt'

In '. /feature/tcga' directory there are no corresponding .pt files, are these .pt files generated after you performed patch level feature extraction in Get_CHIEF_patch_feature.py? Do I need to download the dataset first and then run the images through feature extraction to generate the .pt files?

Looking forward to your reply!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants