Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
79 views

I have implemented a class User that represents a User (so far either a Student or a Teacher). What they have in common is that they both have IDs, and some information about the user (this is stored ...
Alex's user avatar
  • 9
-3 votes
0 answers
28 views

What are the best options for storing geospatial data, optimized for speed and small filesize? This is for polygon and point data output from groundwater models, especially MODFLOW and FEFLOW models. ...
JustinClarkHydrologist's user avatar
0 votes
0 answers
88 views

When fine tuning a model, using the HuggingFace inference hub, the error below was encountered: The tokenizer has new PAD/BOS/EOS tokens that differ from the model config and generation config. The ...
Kingsley Uchunor's user avatar
0 votes
2 answers
31 views

I use GAMS with gtree to get an output file of my model, however, one excel sheet is created while the other is not created. This is my output code; $libinclude xldump Water_balance_summary Output\...
Thomas's user avatar
  • 501
0 votes
0 answers
51 views

Models: Ngetest.phpp <?php defined('BASEPATH') or exit('No direct script access allowed'); class Ngetest extends CI_Model { public function showEcho() { return "naisu"; ...
Syraxes's user avatar
0 votes
1 answer
36 views

So i have this Model namely Questionnaire in models.py file of a Django project class Questionnaire(models.Model): title = models.CharField(max_length=200) description = models.TextField(blank=...
raza hussain's user avatar
0 votes
0 answers
54 views

I am trying to retrain MediaPipe Gusture Recognition model with new dataset. But I am not able to install MediaPipe Model Maker and tflite-support libraries in any of work environments like colab, my ...
DkR's user avatar
  • 11
0 votes
0 answers
18 views

I am currently working on a custom VGG model for Breast Cancer Classification using mammography images. It has excellent accuracy for training images but the validation accuracy is stuck at 0.5-0.6. ...
Garima Sethi's user avatar
1 vote
1 answer
164 views

First off, I just want to mention that I am a biology researcher not trained in differential equations or dynamical systems. I am doing this as an exercise to get a bit of intuitive understanding of ...
Ahmad Elsayed's user avatar
0 votes
1 answer
240 views

My Model model = Sequential() model.add(Bidirectional(LSTM(128, return_sequences=True), input_shape=(X.shape[1], X.shape[2]))) model.add(Dropout(0.2)) model.add(Bidirectional(LSTM(50))) model.add(...
user17319396's user avatar
0 votes
0 answers
86 views

I'm trying to fit a linear mixed-effects model with lme() from the nlme package to analyze repeated measures. The model runs fine on the full dataset, but after filtering by sex, I get the following ...
Javier Hernando's user avatar
0 votes
4 answers
234 views

I'm a junior developer and started my first job as a developer and have a question regarding DTO and Model. Consider this code snippet @Override public ResponseEntity<List<...
Haidepzai's user avatar
  • 1,124
1 vote
1 answer
101 views

i have this problem. I want to set the lang to a report through the context like this: from odoo import api, fields, models class IncLoadUnloadMovement(models.TransientModel): _name = 'inc.load....
tomasraigal's user avatar
0 votes
1 answer
53 views

I'm working on a task dependency prediction problem using Graph Neural Networks with PyTorch Geometric. The goal is to predict directed precedence links (A -> B) between tasks within specific sets (...
user180417's user avatar
0 votes
1 answer
125 views

I am using below code to get data from "Mistral-Nemo" model hosted as SaaS in Azure AI Foundry. It gives me below error: Error: Operation returned an invalid status 'Bad Request' Traceback (...
Bokambo's user avatar
  • 4,564
0 votes
0 answers
46 views

I'm currently learning Tensorflow. And the best way to do so is to get hands dirty right. As an exercise Im training a model with some pokemon data found on kaggle. After the model has been created ...
Ruben Mim's user avatar
  • 206
6 votes
3 answers
5k views

I am trying to train a T5 model based on spellcheck by providing it with a sample csv file in google colab. Initially I ran the code with my personal device (python locally installed) and it executed ...
Anurag Pandey's user avatar
1 vote
1 answer
99 views

The scene, the mesh is all showing up on the website. I've moved the glb literally next to the main.ts file so there's no directory issues. But nothing shows up. The filename is coffeeshop.glb. This ...
yoenuts's user avatar
  • 53
0 votes
0 answers
154 views

'm trying to deploy two Hugging Face LLM models using the vLLM library, but due to VRAM limitations, I want to assign each model to a different GPU on Kaggle. However, no matter what I try, vLLM keeps ...
Berat Koçak's user avatar
0 votes
0 answers
37 views

I have read around a bit and never asked a question on stackoverflow before. It seems there is a solution to my problem, but I don't understand the way it is written and computed. Fit mixture of two ...
Manuel Lenz's user avatar
0 votes
1 answer
73 views

I have pydantic model of table and another one for create like: class Users(SQLModel, table=True): id: UUID = Field(default_factory=uuid4, primary_key=True) user: str = Field(index=True) ...
yuoggy's user avatar
  • 147
0 votes
0 answers
11 views

Attack classification with FedBN algorithm, but normalization is causing difference in weight set. ValueError: You called `set_weights(weights)` on layer "model_1" with a weight list of ...
Ney Filho's user avatar
2 votes
5 answers
89 views

So, I added a new TimeField to my Django model. When I did python3 manage.py make migrations, it asked me to choose two options: set a default value now or add one another way. I chose to set one now....
Just Verhagen's user avatar
0 votes
0 answers
70 views

I'm trying to simulate a 2-stage rocket, and in RocketPy there is not a built-in method to do this yet. To simplify this issue: I am trying to start a second simulation at the ending point of the ...
AndyDufresne's user avatar
0 votes
0 answers
31 views

Windows 10 and Excel 365 patched up to date. Using powershell to run an Excel Object Model session, I open a workbook which contains a query which fetches data from a database to update cells in a ...
Jacques's user avatar
  • 33

1
2 3 4 5
427