I have successfully installed pytorch from source using command git clone --recursive https://github.com/pytorch/pytorch.git on my Windows 11 with CPU. But I cannot run the pretrained DL model. It gives error on line: from caffe2.python import workspace. Even though I have workspace on pytorch/caffe2/python/workspace. Please guide if there is anything else I need to do?
ModuleNotFoundError: No module named 'caffe2'
1.7k Views Asked by Igniter At
1
There are 1 best solutions below
Related Questions in PYTORCH
- Influence of Unused FFN on Model Accuracy in PyTorch
- Conda CMAKE CXX Compiler error while compiling Pytorch
- Which library can replace causal_conv1d in machine learning programming?
- yolo v5 export to torchscript: how to generate constants.pkl
- Pytorch distribute process across nodes and gpu
- My ICNN doesn't seem to work for any n_hidden
- a problem for save and load a pytorch model
- The meaning of an out_channel in nn.Conv2d pytorch
- config QConfig in pytorch QAT
- Can't load the saved model in PyTorch
- How can I convert a flax.linen.Module to a torch.nn.Module?
- Snuffle in PyTorch Dataloader
- Cuda out of Memory but I have no free space
- Can not load scripted model using torch::jit::load
- Should I train my model with a set of pictures as one input data or I need to crop to small one using Pytorch
Related Questions in COMPUTER-VISION
- Trained ML model with the camera module is not giving predictions
- what's the difference between "nn layout" and "nt layout"
- Sketch Guided Text to Image Generation
- Pneumonia detection, using transfer learning
- Search for an icon on an image OpenCV
- DJI Tello won't follow me
- Unable to open shape_predictor_68_face_landmarks.dat
- Line Segmentation Problem: How to detect lines and draw bounding box of that line on handwritten letters Using CV2
- The regression problem of predicting multiple outputs from two-dimensional inputs
- Detecting Circles and Ellipses from Point Arrays in Java
- How to generate a VPI warpmap for polynomial distortion correction?
- Finding 3D camera location from a known 2D symbol inside an image
- How can I overlay a 3D model onto a detected object in real-time using computer vision?
- CUDA driver initialization failed, you might not have a CUDA gpu
- Implementing Image Processing for Dimension Measurement in Arduino-based Packaging System
Related Questions in PRE-TRAINED-MODEL
- Using an upstream-downstream ML model, with the upstream being Wav2Vec 2.0 transformer and the downstream CNN. The model's accuracy is plateaued, why?
- Should I use the default model in the deepface package or fine-tune it to fit with my data for face recognition?
- Can not load pre-trained model
- Running a pretrained model on real-time applications
- Using pretrained model with sample features
- 'CTCTrainer' object has no attribute 'use_amp'
- Pre-trained Model Not Loading
- Opencv with pre-trained model
- I was using colab: I want to run a .py file having argparse function to train a model
- Layer mismatch using tensorflow: Model expected 107 layers, found 0 saved layers when trying to deploy to Google Cloud
- I'm beginner.I wonder how to evaluate my own pretrain model on GLUE benchmark?
- Does this elasticsearch setup even use ML node?
- Continual training of a pre-trained LLM via LoRa with xTuring
- How to apply a trained machine learning model of images to a video?
- Pretrained Neural Network almost stops improving after a few epochs of training
Related Questions in CAFFE2
- Can not load scripted model using torch::jit::load
- I would like to inquire about packaging an EXE file with PyTorch
- Pytorch cpu-only build from source failing with caffe2 on
- Compute cumsum in pycaffe
- How to ensure that a tensor is in dense representation in caffe2
- Enabling CAFFE2 while building pytorch from source on Windows command prompt
- ModuleNotFoundError: No module named 'caffe2'
- PyTorch to ONNX export, ATen operators not supported, onnxruntime hangs out
- caffe2 inference a onnx model , happend IndexError: Input 475 is undefined
- Enable multi-threading on Caffe2
- Issue when converting ONNX model to Caffe2
- PyTorch dll issues for Caffe2
- Why use Caffe2 or Core-ML instead of LibTorch(.pt file) on iOS?
- Running Detectron2 inference in Caffe2
- Operator translate error occurs when I try to convert onnx file to caffe2
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Please enable BUILD_CAFFE2 while building PyTorch from source if not already done.