Tal
Tal
"So how can I run 5 iterations with a partial of them applying 'use_direct_solutions=true'?" edit the file `https://github.com/Codium-ai/AlphaCodium/blob/main/alpha_codium/gen/dataset_solver.py#L75` ``` if iteration
what ?
i don't object to this, but it should be a parameter controlled from the configuration file
@Majdoddin i initially set `frequency_penalty` only to stages where I saw this infinite response problem. if you saw it also in other stages, maybe its best to add it to...
### Similar Issues ___ 1. **[Could this loss function be used for mutil classification?](https://github.com/Alibaba-MIIL/ASL/issues/51)** (score=0.91) 2. **[Question about semi-supervised, multi-labeled classification](https://github.com/Alibaba-MIIL/ASL/issues/66)** (score=0.86) 3. **[ In my dataset, the loss of...
Similar Issues: 1. [[FEATURE] DINOv2 pretrained vit weights](https://github.com/huggingface/pytorch-image-models/issues/1779) 2. [Are there weights for ViT-B that was only trained on ImageNet1k?](https://github.com/huggingface/pytorch-image-models/issues/1462) 3. [[FEATURE] Model requests on dino_vit](https://github.com/huggingface/pytorch-image-models/issues/1656) 4. [ImageNet 1K pretrained...
` def get_y_fun(input): im_name = os.path.basename(input) # 'staffordshire_bull_terrier_54.jpg' class_name = im_name[:im_name.rfind('_')] return class_name pets = DataBlock(blocks=(ImageBlock, CategoryBlock), get_items=get_image_files, splitter=RandomSplitter(), get_y=get_y_fun) dbunch = pets.databunch(untar_data(URLs.PETS) / "images", item_tfms=Resize(args.input_size), batch_tfms=aug_transforms(), num_workers=args.num_workers) ` btw,...
I did some testing. this happens in windows, but not in linux. its a dataloader issue, nowhere in the datalodaer the targets are casted directly to int64
@sgugger, thanks or the feedback. > Are you sure you are using PyTorch 1.3? The type-promotion should get rid of those errors. On Linux, I can do `x==y` with a...