Skip to main content
2 votes
1 answer
57 views

I'm building a way to organize Items based on different requests: $items = Item::query() ->where("type", $itemType) ->when($mode, function (Builder $query, $mode) { ...
ThePlayerRolo's user avatar
-3 votes
1 answer
84 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
  • 7
1 vote
1 answer
39 views

I have a status and user apps in my project and all the statuses are obviously created by particular users. I want to keep info about statuses creators (id) in my db, but I don't know how to add it ...
user737082's user avatar
1 vote
0 answers
101 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
0 answers
68 views

I am trying to use the 'pmdarima' module, but I am unable to do so. I have even started using older versions of Python, but then I get a new error saying this: ValueError: numpy.dtype size changed, ...
lmadisha's user avatar
0 votes
2 answers
38 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
35 views

I am building a Flutter app where I have to execute three separate TensorFlow Lite models on-device: An embedding model An action video detection model A DistilGPT2 RAG model Currently, I bundle all ...
Nidhi Singh's user avatar
0 votes
0 answers
52 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
0 answers
94 views

I'm working on a complex business scenario that requires me to craft detailed prompts for a model to process. The challenge I'm facing is that these prompts are extremely long, and due to certain ...
Byte's user avatar
  • 663
0 votes
1 answer
41 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
27 views

I have a Sequelize model that has a property that is also a model. In this case, Category has a property ParentCategory that is an optional model of Category. When I get the "non model" ...
CmdrShepardsPie's user avatar
0 votes
0 answers
58 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
115 views

I have some models in my app: [SDPlanBrief.self, SDAirport.self, SDChart.self, SDIndividualRunwayAirport.self, SDLocationBrief.self] SDLocationBrief has a @Relationship with SDChart When I went live ...
PW1990's user avatar
  • 489
0 votes
0 answers
20 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
0 votes
2 answers
59 views

I have a Table "TABLE1" with the below sample data: ROW_NO UNIQUEIDENTIFIER EFFECTIVEDATE ACTIVITYID AMT CALCAMT 1 AAA 5/10/2020 100 100 0 2 AAA 6/10/2020 100 20 0 3 AAA 8/17/2020 111 50 0 1 ...
Learncoholic's user avatar

15 30 50 per page
1
2 3 4 5
1423