FCOS icon indicating copy to clipboard operation
FCOS copied to clipboard

FCOS: Fully Convolutional One-Stage Object Detection (ICCV'19)

Results 112 FCOS issues
Sort by recently updated
recently updated
newest added

AFAIK, in the code, testing can be done only after completing all the training iterations. But is it possible to test with the test dataset while training? (Ex: 500 test...

2024-02-14 16:43:21,698 fcos_core.data.build WARNING: When using more than one image per GPU you may encounter an out-of-memory (OOM) error if your GPU does not have sufficient memory. If this happens,...

Thank you for the amazing work! In the last FCOS model update, you divided regression head predictions by the FPN level stride value. However, why not divide regression predictions by...

when i run fcos_demo.py, there is a error: from fcos_core import _C ImportError: cannot import name '_C'

(fcos) C:\Users\Okunade\Desktop\FCOS-MASTER\FCOS>python -m torch.distributed.launch \ --nproc_per_node=2 \ tools/train_net.py \ --config-file configs/fcos/fcos_imprv_R_50_FPN_1x.yaml \ DATALOADER.NUM_WORKERS 2 \ OUTPUT_DIR training_dir/fcos_imprv_R_50_FPN_1x NOTE: Redirects are currently not supported in Windows or MacOs. C:\Users\Okunade\AppData\Local\Programs\Python\Python39\lib\site-packages\torch\distributed\launch.py:178: FutureWarning: The...

when I use the gempy to load the data,the data files and code file in the one ,but all the time happen the following errors. code:geo_data = gp.create_data(extent = [0,1000,0,1000,0,1000],...

作者您好!在配置环境时发现INSTALL.md里cudatoolkit由9.0变为10.2,导致了pytorch和cudatoolkit版本不匹配,模型跑不通,后来升级了pytorch的版本编译不了;后发现GCC的版本多了

May I ask how and where to modify the path of the input model during the use of aaa files? Thank you!

In the paper, it said > we employ exp(x) to map any real number to (0, ∞) on the top of the regression branch. I wonder to know why to...