plotmachines icon indicating copy to clipboard operation
plotmachines copied to clipboard

Cleaned up version of the PlotMachines code

Results 6 plotmachines issues
Sort by recently updated
recently updated
newest added

Bumps [transformers](https://github.com/huggingface/transformers) from 2.0.0 to 4.30.0. Release notes Sourced from transformers's releases. v4.30.0: 100k, Agents improvements, Safetensors core dependency, Swiftformer, Autoformer, MobileViTv2, timm-as-a-backbone 100k Transformers has just reached 100k stars...

dependencies

Is there any way to make the training data you used to train your model available here?

I wrote the following code for generating the `.pkl` files based on my understanding. The generated files can be read successfully. ```python import torch from transformers.models.gpt2.modeling_gpt2 import * from transformers...

Would like to run train.py using the example provided in README.md: `python train.py --data_dir datadir --output_dir savedir --experiment_name pmfull --accum_iter 4 --n_batch 64 --p 90 --num_epochs 10 --use_model plotmachines --use_neighbor_feat...

1) function run_batch in train.py ``` def run_batch(model, args, device, compute_loss_fct): for arg in args: if arg is not None: arg = arg.to(device) output = model(*args, device=device) allloss = compute_loss_fct(output,...

I'm wondering if it is possible to release the processed data? I run into bugs while processing data according to the instruction. If it's not possible, could you provide an...